Searched defs:y_plane (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
H A Dbrightness_detection_test.cc99 uint8_t* y_plane = video_frame_.buffer(kYPlane); local
103 yTmp = y_plane[yIdx] >> 1;
104 y_plane[yIdx] = static_cast<uint8_t>(yTmp);
/external/chromium_org/media/cast/test/utility/
H A Dvideo_utility.cc45 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
52 *y_plane = static_cast<uint8>(start_value + i + j);
53 ++y_plane;
80 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
84 base::RandBytes(y_plane, height * stride_y);
95 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
104 memcpy(y_plane, raw_data, width * height);
/external/chromium_org/third_party/webrtc/video_engine/include/
H A Dvie_capture.h72 y_plane = NULL;
82 unsigned char* y_plane; member in struct:webrtc::ViEVideoFrameI420
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
H A Dspu_common.h75 uint8_t* y_plane; member in struct:yuv2rgb_parms_t
90 uint8_t* y_plane; member in struct:scale_parms_t
H A Dyuv2rgb_converter.c50 unsigned char y_plane[2][(MAX_HDTV_WIDTH + 128) * 4] __attribute__((aligned(128))); variable
176 unsigned char* ram_addr_y = parms_converter.y_plane;
201 spu_mfcdma32(y_plane[buf_idx], (unsigned int) ram_addr_y, size_4lines_y, RETR_BUF+buf_idx, MFC_GET_CMD);
218 spu_mfcdma32(y_plane[buf_idx], (unsigned int) ram_addr_y+size_4lines_y, size_4lines_y, RETR_BUF+buf_idx, MFC_GET_CMD);
232 yuv_to_rgb_w16_line(y_plane[buf_idx], v_plane[buf_idx], u_plane[buf_idx], bgra, width);
235 yuv_to_rgb_w16_line(y_plane[buf_idx] + size_2lines_y,
259 yuv_to_rgb_w16_line(y_plane[buf_idx], v_plane[buf_idx], u_plane[buf_idx], bgra, width);
262 yuv_to_rgb_w16_line(y_plane[buf_idx] + size_2lines_y,
290 unsigned char* ram_addr_y = parms_converter.y_plane;
314 spu_mfcdma32(y_plane[buf_id
[all...]
H A Dbilin_scaler.c50 unsigned char y_plane[2][(MAX_HDTV_WIDTH+128)*4] __attribute__((aligned(128))); variable
149 unsigned char* src_addr_y = parms.y_plane;
214 mfc_get( y_plane[curr_src_idx], (unsigned int) src_addr_y, src_dbl_linestride_y, RETR_BUF, 0, 0 );
215 mfc_get( y_plane[curr_src_idx]+src_dbl_linestride_y,
250 mfc_get( y_plane[next_src_idx],
255 mfc_get( y_plane[next_src_idx]+src_dbl_linestride_y,
282 bilinear_scale_line_w16( y_plane[curr_src_idx],
289 bilinear_scale_line_w16( y_plane[curr_src_idx]+src_dbl_linestride_y,
366 bilinear_scale_line_w16( y_plane[curr_src_idx],
373 bilinear_scale_line_w16( y_plane[curr_src_id
[all...]
/external/chromium_org/media/base/
H A Dvideo_frame_unittest.cc29 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
32 memset(y_plane, color, frame->stride(VideoFrame::kYPlane));
33 y_plane += frame->stride(VideoFrame::kYPlane);
182 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
184 EXPECT_EQ(0, memcmp(kExpectedYRow, y_plane, arraysize(kExpectedYRow)));
185 y_plane += frame->stride(VideoFrame::kYPlane);
H A Dvideo_util.cc77 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
81 memset(y_plane, y, y_row_bytes);
82 y_plane += frame->stride(VideoFrame::kYPlane);
H A Dyuv_convert_unittest.cc189 uint8* y_plane() { return yuv_bytes_.get(); } function in class:media::YUVScaleTest
207 media::ScaleYUVToRGB32(y_plane(), // Y
222 media::ConvertYUVToRGB32(y_plane(), // Y
238 media::ScaleYUVToRGB32(y_plane(), // Y
260 media::ScaleYUVToRGB32(y_plane(), // Y
277 media::ScaleYUVToRGB32(y_plane(), // Y
294 media::ScaleYUVToRGB32(y_plane(), // Y
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dfakevideorenderer.h119 const uint8* y_plane = frame->GetYPlane(); local
120 const uint8* y_pos = y_plane;
/external/chromium_org/third_party/webrtc/tools/converter/
H A Dconverter.cc109 bool Converter::AddYUVToFile(uint8* y_plane, int y_plane_size, argument
113 bool success = AddYUVPlaneToFile(y_plane, y_plane_size, output_file) &&
/external/chromium_org/third_party/webrtc/tools/frame_analyzer/
H A Dvideo_quality_analysis.cc33 int y_plane = width * height; // I420 Y plane. local
37 return y_plane + u_plane + v_plane;
/external/chromium_org/third_party/webrtc/modules/video_capture/test/
H A Dvideo_capture_unittest.cc519 unsigned char* y_plane = test_frame_.buffer(webrtc::kYPlane); local
525 memcpy(current_pointer, y_plane, y_width);
528 y_plane += y_width;

Completed in 285 milliseconds