HomeSort by relevance Sort by last modified time
    Searched defs:v_plane (Results 1 - 8 of 8) 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/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 1071 milliseconds