HomeSort by relevance Sort by last modified time
    Searched defs:y_plane (Results 1 - 16 of 16) 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);
  /hardware/qcom/msm8x74/kernel-headers/media/
msm_media_info.h 225 unsigned int y_plane, uv_plane, y_stride, local
238 y_plane = y_stride * y_sclines;
240 size = y_plane + uv_plane;
245 y_plane = y_stride * y_sclines;
247 size = y_plane + uv_plane;
262 unsigned int y_plane, uv_plane, y_stride, local
273 y_plane = y_stride * y_sclines;
275 offset = y_plane + uv_plane;
  /hardware/qcom/msm8x74/original-kernel-headers/media/
msm_media_info.h 225 unsigned int y_plane, uv_plane, y_stride, local
238 y_plane = y_stride * y_sclines;
240 size = y_plane + uv_plane;
245 y_plane = y_stride * y_sclines;
247 size = y_plane + uv_plane;
262 unsigned int y_plane, uv_plane, y_stride, local
273 y_plane = y_stride * y_sclines;
275 offset = y_plane + uv_plane;
  /hardware/qcom/msm8x84/kernel-headers/media/
msm_media_info.h 225 unsigned int y_plane, uv_plane, y_stride, local
238 y_plane = y_stride * y_sclines;
240 size = y_plane + uv_plane + extra_size;
245 y_plane = y_stride * y_sclines;
247 size = y_plane + uv_plane;
262 unsigned int y_plane, uv_plane, y_stride, local
273 y_plane = y_stride * y_sclines;
275 offset = y_plane + uv_plane;
  /hardware/qcom/msm8x84/original-kernel-headers/media/
msm_media_info.h 225 unsigned int y_plane, uv_plane, y_stride, local
238 y_plane = y_stride * y_sclines;
240 size = y_plane + uv_plane + extra_size;
245 y_plane = y_stride * y_sclines;
247 size = y_plane + uv_plane;
262 unsigned int y_plane, uv_plane, y_stride, local
273 y_plane = y_stride * y_sclines;
275 offset = y_plane + uv_plane;
  /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/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
spu_common.h 75 uint8_t* y_plane; member in struct:yuv2rgb_parms_t
90 uint8_t* y_plane; member in struct:scale_parms_t
yuv2rgb_converter.c 50 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_idx], (unsigned int) ram_addr_y, size_4lines_y, RETR_BUF + buf_idx, MFC_GET_CMD)
    [all...]
bilin_scaler.c 50 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_idx]+src_dbl_linestride_y
    [all...]
  /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 1073 milliseconds