Home
last modified time | relevance | path

Searched refs:oheight (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_resize.h28 int ouv_stride, int oheight, int owidth);
33 int ouv_stride, int oheight, int owidth);
38 int ouv_stride, int oheight, int owidth);
48 uint8_t *ov, int ouv_stride, int oheight,
54 uint8_t *ov, int ouv_stride, int oheight,
60 uint8_t *ov, int ouv_stride, int oheight,
Dvp9_resize.c750 int ouv_stride, int oheight, int owidth) { in vp9_resize_frame420() argument
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()
762 int ouv_stride, int oheight, int owidth) { in vp9_resize_frame422() argument
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()
774 int ouv_stride, int oheight, int owidth) { in vp9_resize_frame444() argument
775 vp9_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride); in vp9_resize_frame444()
[all …]
/external/webrtc/talk/session/media/
Dyuvscaler_unittest.cc248 #define TEST_M(name, iwidth, iheight, owidth, oheight, mse) \ argument
251 EXPECT_TRUE(TestScale(iwidth, iheight, owidth, oheight, \
257 EXPECT_TRUE(TestScale(iwidth, iheight, owidth, oheight, \
263 EXPECT_TRUE(TestScale(iwidth, iheight, owidth, oheight, \
269 EXPECT_TRUE(TestScale(iwidth, iheight, owidth, oheight, \
275 EXPECT_TRUE(TestScale(iwidth, iheight, owidth, oheight, \
281 EXPECT_TRUE(TestScale(iwidth, iheight, owidth, oheight, \
287 EXPECT_TRUE(TestScale(iwidth, iheight, owidth, oheight, \
293 EXPECT_TRUE(TestScale(iwidth, iheight, owidth, oheight, \
299 EXPECT_TRUE(TestScale(iwidth, iheight, owidth, oheight, \
[all …]
/external/libaom/libaom/av1/common/
Dresize.h33 int ouv_stride, int oheight, int owidth);
38 int ouv_stride, int oheight, int owidth);
43 int ouv_stride, int oheight, int owidth);
52 uint8_t *ov, int ouv_stride, int oheight,
58 uint8_t *ov, int ouv_stride, int oheight,
64 uint8_t *ov, int ouv_stride, int oheight,
Dresize.c1113 int ouv_stride, int oheight, int owidth) { in av1_resize_frame420() argument
1114 av1_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride); in av1_resize_frame420()
1115 av1_resize_plane(u, height / 2, width / 2, uv_stride, ou, oheight / 2, in av1_resize_frame420()
1117 av1_resize_plane(v, height / 2, width / 2, uv_stride, ov, oheight / 2, in av1_resize_frame420()
1125 int ouv_stride, int oheight, int owidth) { in av1_resize_frame422() argument
1126 av1_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride); in av1_resize_frame422()
1127 av1_resize_plane(u, height, width / 2, uv_stride, ou, oheight, owidth / 2, in av1_resize_frame422()
1129 av1_resize_plane(v, height, width / 2, uv_stride, ov, oheight, owidth / 2, in av1_resize_frame422()
1137 int ouv_stride, int oheight, int owidth) { in av1_resize_frame444() argument
1138 av1_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride); in av1_resize_frame444()
[all …]
/external/libaom/libaom/av1/encoder/
Dencoder.c3868 static int dimensions_are_ok(int owidth, int oheight, size_params_type *rsz) { in dimensions_are_ok() argument
3870 (void)oheight; in dimensions_are_ok()
3876 int oheight, size_params_type *rsz) { in validate_size_scales() argument
3877 if (dimensions_are_ok(owidth, oheight, rsz)) { // Nothing to do. in validate_size_scales()
3884 DIVIDE_AND_ROUND(oheight * SCALE_NUMERATOR, rsz->resize_height)); in validate_size_scales()
3890 if (!dimensions_are_ok(owidth, oheight, rsz)) { in validate_size_scales()
3898 rsz->resize_height = oheight; in validate_size_scales()
3901 if (!dimensions_are_ok(owidth, oheight, rsz)) { in validate_size_scales()
3905 rsz->resize_height = oheight; in validate_size_scales()
3918 rsz->resize_height = oheight; in validate_size_scales()
[all …]