Searched defs:yuv_frame (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dtools_common.c81 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame) { argument
86 const int bytespp = (yuv_frame->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1;
90 const int w = vpx_img_plane_width(yuv_frame, plane);
91 const int h = vpx_img_plane_height(yuv_frame, plane);
100 ptr = yuv_frame->planes[
101 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_V : VPX_PLANE_U];
104 ptr = yuv_frame->planes[
105 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_U : VPX_PLANE_V];
108 ptr = yuv_frame->planes[plane];
126 ptr += yuv_frame
[all...]
/external/libvpx/libvpx/
H A Dtools_common.c81 int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame) { argument
89 const int w = (plane ? (1 + yuv_frame->d_w) / 2 : yuv_frame->d_w);
90 const int h = (plane ? (1 + yuv_frame->d_h) / 2 : yuv_frame->d_h);
99 ptr = yuv_frame->planes[
100 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_V : VPX_PLANE_U];
103 ptr = yuv_frame->planes[
104 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_U : VPX_PLANE_V];
107 ptr = yuv_frame
[all...]

Completed in 192 milliseconds