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

/external/chromium_org/media/cast/test/
H A Dvideo_utility.cc35 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
41 y_plane[i] = static_cast<uint8>(start_value + i);
61 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
69 memcpy(y_plane, raw_data, width * height);
/external/chromium_org/media/base/
H A Dvideo_frame_unittest.cc28 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
31 memset(y_plane, color, frame->stride(VideoFrame::kYPlane));
32 y_plane += frame->stride(VideoFrame::kYPlane);
186 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
188 EXPECT_EQ(0, memcmp(kExpectedYRow, y_plane, arraysize(kExpectedYRow)));
189 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.cc176 uint8* y_plane() { return yuv_bytes_.get(); } function in class:media::YUVScaleTest
193 media::ScaleYUVToRGB32(y_plane(), // Y
208 media::ConvertYUVToRGB32(y_plane(), // Y
224 media::ScaleYUVToRGB32(y_plane(), // Y
246 media::ScaleYUVToRGB32(y_plane(), // Y
263 media::ScaleYUVToRGB32(y_plane(), // Y
280 media::ScaleYUVToRGB32(y_plane(), // Y
/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/third_party/libjingle/source/talk/media/base/
H A Dfakevideorenderer.h102 const uint8* y_plane = frame->GetYPlane(); local
103 const uint8* y_pos = y_plane;
/external/chromium_org/remoting/base/
H A Dutil.cc49 uint8* y_plane,
64 y_plane + y_offset, y_stride,
48 ConvertRGB32ToYUVWithRect(const uint8* rgb_plane, uint8* y_plane, uint8* u_plane, uint8* v_plane, int x, int y, int width, int height, int rgb_stride, int y_stride, int uv_stride) argument

Completed in 1285 milliseconds