Home
last modified time | relevance | path

Searched refs:height (Results 1 – 25 of 5429) sorted by relevance

12345678910>>...218

/external/libaom/libaom/third_party/libyuv/source/
Dconvert_argb.cc30 int width, int height) { in ARGBCopy() argument
32 width <= 0 || height == 0) { in ARGBCopy()
36 if (height < 0) { in ARGBCopy()
37 height = -height; in ARGBCopy()
38 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBCopy()
43 width * 4, height); in ARGBCopy()
53 int width, int height) { in I444ToARGB() argument
62 width <= 0 || height == 0) { in I444ToARGB()
66 if (height < 0) { in I444ToARGB()
67 height = -height; in I444ToARGB()
[all …]
Dplanar_functions.cc30 int width, int height) { in CopyPlane() argument
36 width *= height; in CopyPlane()
37 height = 1; in CopyPlane()
71 for (y = 0; y < height; ++y) { in CopyPlane()
81 int width, int height) { in CopyPlane_16() argument
87 width *= height; in CopyPlane_16()
88 height = 1; in CopyPlane_16()
113 for (y = 0; y < height; ++y) { in CopyPlane_16()
128 int width, int height) { in I422Copy() argument
132 width <= 0 || height == 0) { in I422Copy()
[all …]
Dconvert_from.cc70 int width, int height) { in I420ToI422() argument
72 const int dst_uv_height = Abs(height); in I420ToI422()
79 width, height, in I420ToI422()
92 int width, int height) { in I420ToI444() argument
94 const int dst_uv_height = Abs(height); in I420ToI444()
101 width, height, in I420ToI444()
114 int width, int height) { in I420ToI411() argument
116 const int dst_uv_height = Abs(height); in I420ToI411()
123 width, height, in I420ToI411()
131 int width, int height) { in I400Copy() argument
[all …]
Dconvert_from_argb.cc29 int width, int height) { in ARGBToI444() argument
35 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
38 if (height < 0) { in ARGBToI444()
39 height = -height; in ARGBToI444()
40 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
48 width *= height; in ARGBToI444()
49 height = 1; in ARGBToI444()
93 for (y = 0; y < height; ++y) { in ARGBToI444()
110 int width, int height) { in ARGBToI422() argument
116 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422()
[all …]
Drotate.cc27 int width, int height) { in TransposePlane() argument
28 int i = height; in TransposePlane()
79 int width, int height) { in RotatePlane90() argument
83 src += src_stride * (height - 1); in RotatePlane90()
85 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane90()
91 int width, int height) { in RotatePlane270() argument
97 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane270()
103 int width, int height) { in RotatePlane180() argument
106 const uint8* src_bot = src + src_stride * (height - 1); in RotatePlane180()
107 uint8* dst_bot = dst + dst_stride * (height - 1); in RotatePlane180()
[all …]
Dconvert.cc69 int width, int height) { in I420Copy() argument
71 int halfheight = (height + 1) >> 1; in I420Copy()
74 width <= 0 || height == 0) { in I420Copy()
78 if (height < 0) { in I420Copy()
79 height = -height; in I420Copy()
80 halfheight = (height + 1) >> 1; in I420Copy()
81 src_y = src_y + (height - 1) * src_stride_y; in I420Copy()
90 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy()
107 int width, int height) { in I422ToI420() argument
115 width, height, in I422ToI420()
[all …]
/external/libyuv/files/source/
Dplanar_functions.cc34 int height) { in CopyPlane() argument
38 if (height < 0) { in CopyPlane()
39 height = -height; in CopyPlane()
40 dst_y = dst_y + (height - 1) * dst_stride_y; in CopyPlane()
45 width *= height; in CopyPlane()
46 height = 1; in CopyPlane()
80 for (y = 0; y < height; ++y) { in CopyPlane()
95 int height) { in CopyPlane_16() argument
100 width *= height; in CopyPlane_16()
101 height = 1; in CopyPlane_16()
[all …]
Dconvert_argb.cc34 int height) { in ARGBCopy() argument
35 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBCopy()
39 if (height < 0) { in ARGBCopy()
40 height = -height; in ARGBCopy()
41 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBCopy()
46 height); in ARGBCopy()
61 int height) { in I420ToARGBMatrix() argument
67 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix()
71 if (height < 0) { in I420ToARGBMatrix()
72 height = -height; in I420ToARGBMatrix()
[all …]
Dconvert_from.cc84 int height) { in I420ToI422() argument
86 const int dst_uv_height = Abs(height); in I420ToI422()
89 dst_v, dst_stride_v, width, height, dst_uv_width, in I420ToI422()
109 int height) { in I420ToI444() argument
111 const int dst_uv_height = Abs(height); in I420ToI444()
114 dst_v, dst_stride_v, width, height, dst_uv_width, in I420ToI444()
125 int height) { in I400Copy() argument
126 if (!src_y || !dst_y || width <= 0 || height == 0) { in I400Copy()
130 if (height < 0) { in I400Copy()
131 height = -height; in I400Copy()
[all …]
Dconvert_from_argb.cc34 int height) { in ARGBToI444() argument
40 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
43 if (height < 0) { in ARGBToI444()
44 height = -height; in ARGBToI444()
45 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
51 width *= height; in ARGBToI444()
52 height = 1; in ARGBToI444()
120 for (y = 0; y < height; ++y) { in ARGBToI444()
142 int height) { in ARGBToI422() argument
148 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422()
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_argb.cc34 int height) { in ARGBCopy() argument
35 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBCopy()
39 if (height < 0) { in ARGBCopy()
40 height = -height; in ARGBCopy()
41 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBCopy()
46 height); in ARGBCopy()
61 int height) { in I420ToARGBMatrix() argument
67 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix()
71 if (height < 0) { in I420ToARGBMatrix()
72 height = -height; in I420ToARGBMatrix()
[all …]
Dplanar_functions.cc34 int height) { in CopyPlane() argument
38 if (height < 0) { in CopyPlane()
39 height = -height; in CopyPlane()
40 dst_y = dst_y + (height - 1) * dst_stride_y; in CopyPlane()
45 width *= height; in CopyPlane()
46 height = 1; in CopyPlane()
76 for (y = 0; y < height; ++y) { in CopyPlane()
91 int height) { in CopyPlane_16() argument
96 width *= height; in CopyPlane_16()
97 height = 1; in CopyPlane_16()
[all …]
Dconvert_from.cc83 int height) { in I420ToI010() argument
85 int halfheight = (height + 1) >> 1; in I420ToI010()
86 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I420ToI010()
90 if (height < 0) { in I420ToI010()
91 height = -height; in I420ToI010()
92 halfheight = (height + 1) >> 1; in I420ToI010()
93 src_y = src_y + (height - 1) * src_stride_y; in I420ToI010()
103 height); in I420ToI010()
128 int height) { in I420ToI422() argument
130 const int dst_uv_height = Abs(height); in I420ToI422()
[all …]
Dconvert_from_argb.cc34 int height) { in ARGBToI444() argument
40 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
43 if (height < 0) { in ARGBToI444()
44 height = -height; in ARGBToI444()
45 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
51 width *= height; in ARGBToI444()
52 height = 1; in ARGBToI444()
112 for (y = 0; y < height; ++y) { in ARGBToI444()
134 int height) { in ARGBToI422() argument
141 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422()
[all …]
Drotate.cc30 int height) { in TransposePlane() argument
31 int i = height; in TransposePlane()
98 int height) { in RotatePlane90() argument
102 src += src_stride * (height - 1); in RotatePlane90()
104 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane90()
113 int height) { in RotatePlane270() argument
119 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane270()
128 int height) { in RotatePlane180() argument
131 const uint8_t* src_bot = src + src_stride * (height - 1); in RotatePlane180()
132 uint8_t* dst_bot = dst + dst_stride * (height - 1); in RotatePlane180()
[all …]
Dconvert.cc82 int height) { in I420Copy() argument
84 int halfheight = (height + 1) >> 1; in I420Copy()
85 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I420Copy()
89 if (height < 0) { in I420Copy()
90 height = -height; in I420Copy()
91 halfheight = (height + 1) >> 1; in I420Copy()
92 src_y = src_y + (height - 1) * src_stride_y; in I420Copy()
101 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy()
124 int height) { in I010Copy() argument
126 int halfheight = (height + 1) >> 1; in I010Copy()
[all …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_format_zs.h37 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
41 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
45 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
49 …, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height);
53 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
57 …nsigned dst_stride, const uint32_t *src_row, unsigned src_stride, unsigned width, unsigned height);
61 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
65 …, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height);
69 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
73 …nsigned dst_stride, const uint32_t *src_row, unsigned src_stride, unsigned width, unsigned height);
[all …]
Du_format_yuv.h127 unsigned width, unsigned height);
132 unsigned width, unsigned height);
137 unsigned width, unsigned height);
142 unsigned width, unsigned height);
151 unsigned width, unsigned height);
156 unsigned width, unsigned height);
161 unsigned width, unsigned height);
166 unsigned width, unsigned height);
176 unsigned width, unsigned height);
180 unsigned width, unsigned height);
[all …]
/external/webrtc/talk/media/base/
Dvideoadapter_unittest.cc98 const int in_height = abs(captured_frame->height); in OnFrameCaptured()
104 in_height == adapted_format.height); in OnFrameCaptured()
119 stats.adapted_height = adapted_format_.height; in GetStats()
147 int height) { in VerifyAdaptedResolution() argument
149 EXPECT_EQ(height, stats.adapted_height); in VerifyAdaptedResolution()
180 VerifyAdaptedResolution(stats, capture_format_.width, capture_format_.height); in TEST_F()
195 VerifyAdaptedResolution(stats, capture_format_.width, capture_format_.height); in TEST_F()
212 VerifyAdaptedResolution(stats, capture_format_.width, capture_format_.height); in TEST_F()
229 VerifyAdaptedResolution(stats, capture_format_.width, capture_format_.height); in TEST_F()
247 VerifyAdaptedResolution(stats, capture_format_.width, capture_format_.height); in TEST_F()
[all …]
/external/webrtc/talk/media/webrtc/
Dsimulcast.cc41 int height; member
85 void MaybeExchangeWidthHeight(int* width, int* height) { in MaybeExchangeWidthHeight() argument
88 if (*width < *height) { in MaybeExchangeWidthHeight()
90 *width = *height; in MaybeExchangeWidthHeight()
91 *height = temp; in MaybeExchangeWidthHeight()
95 int FindSimulcastFormatIndex(int width, int height) { in FindSimulcastFormatIndex() argument
96 MaybeExchangeWidthHeight(&width, &height); in FindSimulcastFormatIndex()
100 height >= kSimulcastFormats[i].height) { in FindSimulcastFormatIndex()
107 int FindSimulcastFormatIndex(int width, int height, size_t max_layers) { in FindSimulcastFormatIndex() argument
108 MaybeExchangeWidthHeight(&width, &height); in FindSimulcastFormatIndex()
[all …]
/external/libvpx/libvpx/test/
Dtemporal_filter_test.cc53 for (int height = 0; height < h; ++height) { in reference_filter() local
55 int diff = a.TopLeftPixel()[height * a.stride() + width] - in reference_filter()
56 b.TopLeftPixel()[height * b.stride() + width]; in reference_filter()
57 diff_sq.TopLeftPixel()[height * diff_sq.stride() + width] = diff * diff; in reference_filter()
63 for (int height = 0; height < h; ++height) { in reference_filter() local
68 if (height == 0 || height == (h - 1)) { in reference_filter()
84 const int y = height + idy; in reference_filter()
105 count->TopLeftPixel()[height * count->stride() + width] += sum; in reference_filter()
106 accumulator->TopLeftPixel()[height * accumulator->stride() + width] += in reference_filter()
107 sum * b.TopLeftPixel()[height * b.stride() + width]; in reference_filter()
[all …]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dplanar_functions.h50 int height);
58 int height);
67 int height);
76 int height);
83 int height,
95 int height);
106 int height);
119 int height);
132 int height);
141 int height);
[all …]
Dconvert_argb.h38 int height);
51 int height);
64 int height);
77 int height);
90 int height);
103 int height);
116 int height);
129 int height);
142 int height);
155 int height);
[all …]
/external/libyuv/files/include/libyuv/
Dplanar_functions.h32 int height);
40 int height);
47 int height,
59 int height);
70 int height);
79 int height);
99 int height);
117 int height);
130 int height);
143 int height);
[all …]
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Dplanar_functions.h30 int width, int height);
35 int width, int height);
40 int width, int height,
47 int width, int height);
60 int width, int height);
71 int width, int height);
79 int width, int height);
87 int width, int height);
93 int width, int height);
99 int width, int height);
[all …]

12345678910>>...218