Lines Matching refs:sws
86 struct SwsContext *sws = NULL;
215 sws = sws_getContext(w, h, inFormat, w, h,
217 if (!sws) {
222 res = sws_scale(sws, (const uint8_t *const *)rgbIn, rgbStride, 0, h, dst, dstStride);
228 sws_freeContext(sws);
231 sws = sws_getContext(w, h, dstFormat, w, h,
233 if(!sws) {
238 res = sws_scale(sws, (const uint8_t *const *)dst, dstStride, 0, h, rgbOut, rgbStride);
244 sws_freeContext(sws);
245 sws = NULL;
286 sws_freeContext(sws);