Searched refs:vp9_resize_plane (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_resize.c | 423 void vp9_resize_plane(const uint8_t *const input, int height, int width, in vp9_resize_plane() function 751 vp9_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride); in vp9_resize_frame420() 752 vp9_resize_plane(u, height / 2, width / 2, uv_stride, ou, oheight / 2, in vp9_resize_frame420() 754 vp9_resize_plane(v, height / 2, width / 2, uv_stride, ov, oheight / 2, in vp9_resize_frame420() 763 vp9_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride); in vp9_resize_frame422() 764 vp9_resize_plane(u, height, width / 2, uv_stride, ou, oheight, owidth / 2, in vp9_resize_frame422() 766 vp9_resize_plane(v, height, width / 2, uv_stride, ov, oheight, owidth / 2, in vp9_resize_frame422() 775 vp9_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride); in vp9_resize_frame444() 776 vp9_resize_plane(u, height, width, uv_stride, ou, oheight, owidth, in vp9_resize_frame444() 778 vp9_resize_plane(v, height, width, uv_stride, ov, oheight, owidth, in vp9_resize_frame444()
|
D | vp9_resize.h | 21 void vp9_resize_plane(const uint8_t *const input, int height, int width,
|
D | vp9_encoder.c | 2829 vp9_resize_plane(srcs[i], src_heights[i], src_widths[i], src_strides[i], 2833 vp9_resize_plane(srcs[i], src_heights[i], src_widths[i], src_strides[i],
|