Lines Matching defs:rgbStride
72 int rgbStride[4];
143 res = av_image_fill_linesizes(rgbStride, inFormat, w);
149 rgbStride[p] = FFALIGN(rgbStride[p], 16);
150 if (rgbStride[p]) {
151 rgbIn[p] = av_mallocz(rgbStride[p] * h + 16);
152 rgbOut[p] = av_mallocz(rgbStride[p] * h + 16);
154 if (rgbStride[p] && (!rgbIn[p] || !rgbOut[p])) {
164 if (!rgbStride[p])
174 ptr += rgbStride[p];
181 if (!rgbStride[p])
185 in = (uint32_t*)(rgbIn[p] + y * rgbStride[p]);
222 res = sws_scale(sws, (const uint8_t *const *)rgbIn, rgbStride, 0, h, dst, dstStride);
238 res = sws_scale(sws, (const uint8_t *const *)dst, dstStride, 0, h, rgbOut, rgbStride);
253 if (!rgbStride[p])
257 in = (uint32_t*)(rgbIn[p] + y * rgbStride[p]);
258 out = (uint32_t*)(rgbOut[p] + y * rgbStride[p]);