HomeSort by relevance Sort by last modified time
    Searched defs:v_plane (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/media/cast/test/utility/
video_utility.cc 47 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/media/base/
video_frame_unittest.cc 36 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);
video_util.cc 87 uint8* v_plane = frame->data(VideoFrame::kVPlane); local
93 memset(v_plane, v, v_row_bytes);
95 v_plane += frame->stride(VideoFrame::kVPlane);
yuv_convert_unittest.cc 191 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
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
fakevideorenderer.h 135 const uint8* v_plane = frame->GetVPlane(); local
137 const uint8* v_pos = v_plane;
  /external/chromium_org/third_party/webrtc/video_engine/include/
vie_capture.h 74 v_plane = NULL;
84 unsigned char* v_plane; member in struct:webrtc::ViEVideoFrameI420
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
spu_common.h 76 uint8_t* v_plane; member in struct:yuv2rgb_parms_t
91 uint8_t* v_plane; member in struct:scale_parms_t
yuv2rgb_converter.c 51 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_idx], (unsigned int) ram_addr_v, size_2lines_vu, RETR_BUF + buf_idx, MFC_GET_CMD)
    [all...]
bilin_scaler.c 51 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_idx]+curr_lsoff_v
    [all...]
  /external/chromium_org/third_party/webrtc/tools/frame_analyzer/
video_quality_analysis.cc 35 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/
video_capture_unittest.cc 521 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 206 milliseconds