Home
last modified time | relevance | path

Searched refs:owidth (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);
49 int owidth, int bd);
55 int owidth, int bd);
61 int owidth, int bd);
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()
753 owidth / 2, ouv_stride); in vp9_resize_frame420()
755 owidth / 2, ouv_stride); 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);
53 int owidth, int bd);
59 int owidth, int bd);
65 int owidth, int bd);
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()
1116 owidth / 2, ouv_stride); in av1_resize_frame420()
1118 owidth / 2, ouv_stride); 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
3871 return dimension_is_ok(owidth, rsz->resize_width, rsz->superres_denom); in dimensions_are_ok()
3875 SUPERRES_MODE superres_mode, int owidth, in validate_size_scales() argument
3877 if (dimensions_are_ok(owidth, oheight, rsz)) { // Nothing to do. in validate_size_scales()
3883 AOMMAX(DIVIDE_AND_ROUND(owidth * SCALE_NUMERATOR, rsz->resize_width), in validate_size_scales()
3890 if (!dimensions_are_ok(owidth, oheight, rsz)) { in validate_size_scales()
3897 rsz->resize_width = owidth; in validate_size_scales()
3901 if (!dimensions_are_ok(owidth, oheight, rsz)) { in validate_size_scales()
3904 rsz->resize_width = owidth; in validate_size_scales()
3917 rsz->resize_width = owidth; in validate_size_scales()
[all …]