Lines Matching refs:out

23 gfx_conv_yuv420p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height)
25 // in and out buffers must be aligned to 16 bytes,
27 if ((off_t)out->data[0] % 16 != 0) {
28 gfx_conv_YCbCr420p_RGB32_c(in, out, width, height);
35 uint8 *rgbbase = (uint8 *)out->data[0];
40 int rgbBaseInc = out->linesize[0];
59 gfx_conv_yuv420p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height)
61 // in and out buffers must be aligned to 32 bytes,
63 if ((off_t)out->data[0] % 32 != 0) {
64 gfx_conv_YCbCr420p_RGB32_c(in, out, width, height);
71 uint8 *rgbbase = (uint8 *)out->data[0];
76 int rgbBaseInc = out->linesize[0];
95 gfx_conv_yuv420p_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height)
97 // in and out buffers must be aligned to 32 bytes,
99 if ((off_t)out->data[0] % 32 != 0) {
100 gfx_conv_YCbCr420p_RGB32_c(in, out, width, height);
107 uint8 *rgbbase = (uint8 *)out->data[0];
112 int rgbBaseInc = out->linesize[0];
131 gfx_conv_yuv422p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height)
133 // in and out buffers must be aligned to 32 bytes,
135 if ((off_t)out->data[0] % 32 != 0) {
136 gfx_conv_YCbCr422_RGB32_c(in, out, width, height);
143 uint8 *rgbbase = (uint8 *)out->data[0];
148 int rgbBaseInc = out->linesize[0];
161 gfx_conv_yuv422p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height)
163 // in and out buffers must be aligned to 32 bytes,
165 if ((off_t)out->data[0] % 32 != 0) {
166 gfx_conv_YCbCr422_RGB32_c(in, out, width, height);
173 uint8 *rgbbase = (uint8 *)out->data[0];
178 int rgbBaseInc = out->linesize[0];
191 gfx_conv_yuv422p_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height)
193 // in and out buffers must be aligned to 32 bytes,
195 if ((off_t)out->data[0] % 32 != 0) {
196 gfx_conv_YCbCr422_RGB32_c(in, out, width, height);
203 uint8 *rgbbase = (uint8 *)out->data[0];
208 int rgbBaseInc = out->linesize[0];
221 gfx_conv_yuv422_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height)
223 // in and out buffers must be aligned to 16 bytes,
225 if ((off_t)out->data[0] % 16 != 0) {
226 gfx_conv_YCbCr422_RGB32_c(in, out, width, height);
231 uint8 *rgbbase = (uint8 *)out->data[0];
236 rgbbase += out->linesize[0];
242 gfx_conv_yuv422_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height)
244 // in and out buffers must be aligned to 32 bytes,
246 if ((off_t)out->data[0] % 32 != 0) {
247 gfx_conv_YCbCr422_RGB32_c(in, out, width, height);
252 uint8 *rgbbase = (uint8 *)out->data[0];
257 rgbbase += out->linesize[0];
263 gfx_conv_yuv422_rgba32_ssse3(AVFrame *in, AVFrame *out, int width, int height)
265 // in and out buffers must be aligned to 32 bytes,
267 if ((off_t)out->data[0] % 32 != 0) {
268 gfx_conv_YCbCr422_RGB32_c(in, out, width, height);
273 uint8 *rgbbase = (uint8 *)out->data[0];
278 rgbbase += out->linesize[0];