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

  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
brightness_detection_test.cc 99 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/
video_utility.cc 45 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/media/base/
video_frame_unittest.cc 29 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);
video_util.cc 77 uint8* y_plane = frame->data(VideoFrame::kYPlane); local
81 memset(y_plane, y, y_row_bytes);
82 y_plane += frame->stride(VideoFrame::kYPlane);
yuv_convert_unittest.cc 189 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
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
fakevideorenderer.h 119 const uint8* y_plane = frame->GetYPlane(); local
120 const uint8* y_pos = y_plane;
  /external/chromium_org/third_party/webrtc/video_engine/include/
vie_capture.h 72 y_plane = NULL;
82 unsigned char* y_plane; member in struct:webrtc::ViEVideoFrameI420
  /external/chromium_org/third_party/webrtc/tools/frame_analyzer/
video_quality_analysis.cc 33 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/
video_capture_unittest.cc 519 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 186 milliseconds