Searched defs:v_plane (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/media/cast/test/utility/
H A Dvideo_utility.cc47 uint8* v_plane = frame->data(VideoFrame::kVPlane); local
68 *v_plane = static_cast<uint8>(start_value + i + j);
69 ++v_plane;
82 uint8* v_plane = frame->data(VideoFrame::kVPlane); local
86 base::RandBytes(v_plane, half_height * stride_v);
97 uint8* v_plane = frame->data(VideoFrame::kVPlane); local
106 memcpy(v_plane,
/external/chromium_org/third_party/webrtc/video_engine/include/
H A Dvie_capture.h74 v_plane = NULL;
84 unsigned char* v_plane; member in struct:webrtc::ViEVideoFrameI420
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
H A Dspu_common.h76 uint8_t* v_plane; member in struct:yuv2rgb_parms_t
91 uint8_t* v_plane; member in struct:scale_parms_t
H A Dyuv2rgb_converter.c51 unsigned char v_plane[2][(MAX_HDTV_WIDTH + 128) * 2] __attribute__((aligned(128))); variable
178 unsigned char* ram_addr_v = parms_converter.v_plane;
204 spu_mfcdma32(v_plane[buf_idx], (unsigned int) ram_addr_v, size_2lines_vu, RETR_BUF+buf_idx, MFC_GET_CMD);
221 spu_mfcdma32(v_plane[buf_idx], (unsigned int) ram_addr_v+size_2lines_vu, size_2lines_vu, 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);
236 v_plane[buf_idx] + stride_vu,
259 yuv_to_rgb_w16_line(y_plane[buf_idx], v_plane[buf_idx], u_plane[buf_idx], bgra, width);
263 v_plane[buf_idx] + stride_vu,
292 unsigned char* ram_addr_v = parms_converter.v_plane;
316 spu_mfcdma32(v_plane[buf_id
[all...]
H A Dbilin_scaler.c51 unsigned char v_plane[2][(MAX_HDTV_WIDTH+128)*2] __attribute__((aligned(128))); variable
150 unsigned char* src_addr_v = parms.v_plane;
220 mfc_get( v_plane[curr_src_idx], (unsigned int) src_addr_v, src_dbl_linestride_vu, RETR_BUF, 0, 0 );
264 mfc_get( v_plane[next_src_idx],
296 bilinear_scale_line_w8( v_plane[curr_src_idx]+curr_lsoff_v,
380 bilinear_scale_line_w8( v_plane[curr_src_idx]+curr_lsoff_v,
455 unsigned char* src_addr_v = parms.v_plane;
526 mfc_get( v_plane[curr_src_idx], (unsigned int) src_addr_v, src_dbl_linestride_vu, RETR_BUF, 0, 0 );
569 mfc_get( v_plane[next_src_idx],
601 bilinear_scale_line_w8( v_plane[curr_src_id
[all...]
/external/chromium_org/media/base/
H A Dvideo_frame_unittest.cc36 uint8* v_plane = frame->data(VideoFrame::kVPlane); local
39 memset(v_plane, 0x80, frame->stride(VideoFrame::kVPlane));
41 v_plane += frame->stride(VideoFrame::kVPlane);
189 uint8* v_plane = frame->data(VideoFrame::kVPlane); local
192 EXPECT_EQ(0, memcmp(kExpectedUVRow, v_plane, arraysize(kExpectedUVRow)));
194 v_plane += frame->stride(VideoFrame::kVPlane);
H A Dvideo_util.cc87 uint8* v_plane = frame->data(VideoFrame::kVPlane); local
93 memset(v_plane, v, v_row_bytes);
95 v_plane += frame->stride(VideoFrame::kVPlane);
H A Dyuv_convert_unittest.cc191 uint8* v_plane() { function in class:media::YUVScaleTest
209 v_plane(), // V
224 v_plane(), // V
240 v_plane(), // V
262 v_plane(), // V
279 v_plane(), // V
296 v_plane(), // V
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dfakevideorenderer.h135 const uint8* v_plane = frame->GetVPlane(); local
137 const uint8* v_pos = v_plane;
/external/chromium_org/third_party/webrtc/tools/converter/
H A Dconverter.cc111 uint8* v_plane, int v_plane_size,
115 AddYUVPlaneToFile(v_plane, v_plane_size, output_file);
109 AddYUVToFile(uint8* y_plane, int y_plane_size, uint8* u_plane, int u_plane_size, uint8* v_plane, int v_plane_size, FILE* output_file) argument
/external/chromium_org/third_party/webrtc/tools/frame_analyzer/
H A Dvideo_quality_analysis.cc35 int v_plane = half_width * half_height; // I420 V 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.cc521 unsigned char* v_plane = test_frame_.buffer(webrtc::kVPlane); local
541 memcpy(current_pointer, v_plane, uv_width);
544 v_plane += uv_width;

Completed in 4167 milliseconds