]> git.sesse.net Git - ffmpeg/blob - libswscale/utils.c
sws: Print an error in case of av_malloc() failure
[ffmpeg] / libswscale / utils.c
1 /*
2  * Copyright (C) 2001-2003 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #define _SVID_SOURCE //needed for MAP_ANONYMOUS
22 #define _DARWIN_C_SOURCE // needed for MAP_ANON
23 #include <inttypes.h>
24 #include <string.h>
25 #include <math.h>
26 #include <stdio.h>
27 #include "config.h"
28 #include <assert.h>
29 #if HAVE_SYS_MMAN_H
30 #include <sys/mman.h>
31 #if defined(MAP_ANON) && !defined(MAP_ANONYMOUS)
32 #define MAP_ANONYMOUS MAP_ANON
33 #endif
34 #endif
35 #if HAVE_VIRTUALALLOC
36 #define WIN32_LEAN_AND_MEAN
37 #include <windows.h>
38 #endif
39 #include "swscale.h"
40 #include "swscale_internal.h"
41 #include "rgb2rgb.h"
42 #include "libavutil/intreadwrite.h"
43 #include "libavutil/x86_cpu.h"
44 #include "libavutil/cpu.h"
45 #include "libavutil/avutil.h"
46 #include "libavutil/bswap.h"
47 #include "libavutil/mathematics.h"
48 #include "libavutil/opt.h"
49 #include "libavutil/pixdesc.h"
50 #include "libavutil/avassert.h"
51
52 unsigned swscale_version(void)
53 {
54     return LIBSWSCALE_VERSION_INT;
55 }
56
57 const char *swscale_configuration(void)
58 {
59     return FFMPEG_CONFIGURATION;
60 }
61
62 const char *swscale_license(void)
63 {
64 #define LICENSE_PREFIX "libswscale license: "
65     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
66 }
67
68 #define RET 0xC3 //near return opcode for x86
69
70 typedef struct FormatEntry {
71     int is_supported_in, is_supported_out;
72 } FormatEntry;
73
74 const static FormatEntry format_entries[PIX_FMT_NB] = {
75     [PIX_FMT_YUV420P]     = { 1 , 1 },
76     [PIX_FMT_YUYV422]     = { 1 , 1 },
77     [PIX_FMT_RGB24]       = { 1 , 1 },
78     [PIX_FMT_BGR24]       = { 1 , 1 },
79     [PIX_FMT_YUV422P]     = { 1 , 1 },
80     [PIX_FMT_YUV444P]     = { 1 , 1 },
81     [PIX_FMT_YUV410P]     = { 1 , 1 },
82     [PIX_FMT_YUV411P]     = { 1 , 1 },
83     [PIX_FMT_GRAY8]       = { 1 , 1 },
84     [PIX_FMT_MONOWHITE]   = { 1 , 1 },
85     [PIX_FMT_MONOBLACK]   = { 1 , 1 },
86     [PIX_FMT_PAL8]        = { 1 , 0 },
87     [PIX_FMT_YUVJ420P]    = { 1 , 1 },
88     [PIX_FMT_YUVJ422P]    = { 1 , 1 },
89     [PIX_FMT_YUVJ444P]    = { 1 , 1 },
90     [PIX_FMT_UYVY422]     = { 1 , 1 },
91     [PIX_FMT_UYYVYY411]   = { 0 , 0 },
92     [PIX_FMT_BGR8]        = { 1 , 1 },
93     [PIX_FMT_BGR4]        = { 0 , 1 },
94     [PIX_FMT_BGR4_BYTE]   = { 1 , 1 },
95     [PIX_FMT_RGB8]        = { 1 , 1 },
96     [PIX_FMT_RGB4]        = { 0 , 1 },
97     [PIX_FMT_RGB4_BYTE]   = { 1 , 1 },
98     [PIX_FMT_NV12]        = { 1 , 1 },
99     [PIX_FMT_NV21]        = { 1 , 1 },
100     [PIX_FMT_ARGB]        = { 1 , 1 },
101     [PIX_FMT_RGBA]        = { 1 , 1 },
102     [PIX_FMT_ABGR]        = { 1 , 1 },
103     [PIX_FMT_BGRA]        = { 1 , 1 },
104     [PIX_FMT_0RGB]        = { 1 , 1 },
105     [PIX_FMT_RGB0]        = { 1 , 1 },
106     [PIX_FMT_0BGR]        = { 1 , 1 },
107     [PIX_FMT_BGR0]        = { 1 , 1 },
108     [PIX_FMT_GRAY16BE]    = { 1 , 1 },
109     [PIX_FMT_GRAY16LE]    = { 1 , 1 },
110     [PIX_FMT_YUV440P]     = { 1 , 1 },
111     [PIX_FMT_YUVJ440P]    = { 1 , 1 },
112     [PIX_FMT_YUVA420P]    = { 1 , 1 },
113     [PIX_FMT_RGB48BE]     = { 1 , 1 },
114     [PIX_FMT_RGB48LE]     = { 1 , 1 },
115     [PIX_FMT_RGBA64BE]    = { 0 , 0 },
116     [PIX_FMT_RGBA64LE]    = { 0 , 0 },
117     [PIX_FMT_RGB565BE]    = { 1 , 1 },
118     [PIX_FMT_RGB565LE]    = { 1 , 1 },
119     [PIX_FMT_RGB555BE]    = { 1 , 1 },
120     [PIX_FMT_RGB555LE]    = { 1 , 1 },
121     [PIX_FMT_BGR565BE]    = { 1 , 1 },
122     [PIX_FMT_BGR565LE]    = { 1 , 1 },
123     [PIX_FMT_BGR555BE]    = { 1 , 1 },
124     [PIX_FMT_BGR555LE]    = { 1 , 1 },
125     [PIX_FMT_YUV420P16LE] = { 1 , 1 },
126     [PIX_FMT_YUV420P16BE] = { 1 , 1 },
127     [PIX_FMT_YUV422P16LE] = { 1 , 1 },
128     [PIX_FMT_YUV422P16BE] = { 1 , 1 },
129     [PIX_FMT_YUV444P16LE] = { 1 , 1 },
130     [PIX_FMT_YUV444P16BE] = { 1 , 1 },
131     [PIX_FMT_RGB444LE]    = { 0 , 1 },
132     [PIX_FMT_RGB444BE]    = { 0 , 1 },
133     [PIX_FMT_BGR444LE]    = { 0 , 1 },
134     [PIX_FMT_BGR444BE]    = { 0 , 1 },
135     [PIX_FMT_Y400A]       = { 1 , 0 },
136     [PIX_FMT_BGR48BE]     = { 1 , 1 },
137     [PIX_FMT_BGR48LE]     = { 1 , 1 },
138     [PIX_FMT_BGRA64BE]    = { 0 , 0 },
139     [PIX_FMT_BGRA64LE]    = { 0 , 0 },
140     [PIX_FMT_YUV420P9BE]  = { 1 , 1 },
141     [PIX_FMT_YUV420P9LE]  = { 1 , 1 },
142     [PIX_FMT_YUV420P10BE] = { 1 , 1 },
143     [PIX_FMT_YUV420P10LE] = { 1 , 1 },
144     [PIX_FMT_YUV422P9BE]  = { 1 , 1 },
145     [PIX_FMT_YUV422P9LE]  = { 1 , 1 },
146     [PIX_FMT_YUV422P10BE] = { 1 , 1 },
147     [PIX_FMT_YUV422P10LE] = { 1 , 1 },
148     [PIX_FMT_YUV444P9BE]  = { 1 , 1 },
149     [PIX_FMT_YUV444P9LE]  = { 1 , 1 },
150     [PIX_FMT_YUV444P10BE] = { 1 , 1 },
151     [PIX_FMT_YUV444P10LE] = { 1 , 1 },
152     [PIX_FMT_GBR24P]      = { 1 , 0 },
153     [PIX_FMT_GBRP]        = { 1 , 0 },
154     [PIX_FMT_GBRP9LE]     = { 1 , 0 },
155     [PIX_FMT_GBRP9BE]     = { 1 , 0 },
156     [PIX_FMT_GBRP10LE]    = { 1 , 0 },
157     [PIX_FMT_GBRP10BE]    = { 1 , 0 },
158     [PIX_FMT_GBRP16LE]    = { 1 , 0 },
159     [PIX_FMT_GBRP16BE]    = { 1 , 0 },
160 };
161
162 int sws_isSupportedInput(enum PixelFormat pix_fmt)
163 {
164     return (unsigned)pix_fmt < PIX_FMT_NB ?
165         format_entries[pix_fmt].is_supported_in : 0;
166 }
167
168 int sws_isSupportedOutput(enum PixelFormat pix_fmt)
169 {
170     return (unsigned)pix_fmt < PIX_FMT_NB ?
171         format_entries[pix_fmt].is_supported_out : 0;
172 }
173
174 extern const int32_t ff_yuv2rgb_coeffs[8][4];
175
176 #if FF_API_SWS_FORMAT_NAME
177 const char *sws_format_name(enum PixelFormat format)
178 {
179     return av_get_pix_fmt_name(format);
180 }
181 #endif
182
183 static double getSplineCoeff(double a, double b, double c, double d, double dist)
184 {
185     if (dist<=1.0) return ((d*dist + c)*dist + b)*dist +a;
186     else           return getSplineCoeff(        0.0,
187                                           b+ 2.0*c + 3.0*d,
188                                                  c + 3.0*d,
189                                          -b- 3.0*c - 6.0*d,
190                                          dist-1.0);
191 }
192
193 static int initFilter(int16_t **outFilter, int16_t **filterPos, int *outFilterSize, int xInc,
194                       int srcW, int dstW, int filterAlign, int one, int flags, int cpu_flags,
195                       SwsVector *srcFilter, SwsVector *dstFilter, double param[2])
196 {
197     int i;
198     int filterSize;
199     int filter2Size;
200     int minFilterSize;
201     int64_t *filter=NULL;
202     int64_t *filter2=NULL;
203     const int64_t fone= 1LL<<54;
204     int ret= -1;
205
206     emms_c(); //FIXME this should not be required but it IS (even for non-MMX versions)
207
208     // NOTE: the +3 is for the MMX(+1)/SSE(+3) scaler which reads over the end
209     FF_ALLOC_OR_GOTO(NULL, *filterPos, (dstW+3)*sizeof(int16_t), fail);
210
211     if (FFABS(xInc - 0x10000) <10) { // unscaled
212         int i;
213         filterSize= 1;
214         FF_ALLOCZ_OR_GOTO(NULL, filter, dstW*sizeof(*filter)*filterSize, fail);
215
216         for (i=0; i<dstW; i++) {
217             filter[i*filterSize]= fone;
218             (*filterPos)[i]=i;
219         }
220
221     } else if (flags&SWS_POINT) { // lame looking point sampling mode
222         int i;
223         int64_t xDstInSrc;
224         filterSize= 1;
225         FF_ALLOC_OR_GOTO(NULL, filter, dstW*sizeof(*filter)*filterSize, fail);
226
227         xDstInSrc= xInc/2 - 0x8000;
228         for (i=0; i<dstW; i++) {
229             int xx= (xDstInSrc - ((filterSize-1)<<15) + (1<<15))>>16;
230
231             (*filterPos)[i]= xx;
232             filter[i]= fone;
233             xDstInSrc+= xInc;
234         }
235     } else if ((xInc <= (1<<16) && (flags&SWS_AREA)) || (flags&SWS_FAST_BILINEAR)) { // bilinear upscale
236         int i;
237         int64_t xDstInSrc;
238         filterSize= 2;
239         FF_ALLOC_OR_GOTO(NULL, filter, dstW*sizeof(*filter)*filterSize, fail);
240
241         xDstInSrc= xInc/2 - 0x8000;
242         for (i=0; i<dstW; i++) {
243             int xx= (xDstInSrc - ((filterSize-1)<<15) + (1<<15))>>16;
244             int j;
245
246             (*filterPos)[i]= xx;
247             //bilinear upscale / linear interpolate / area averaging
248             for (j=0; j<filterSize; j++) {
249                 int64_t coeff= fone - FFABS(((int64_t)xx<<16) - xDstInSrc)*(fone>>16);
250                 if (coeff<0) coeff=0;
251                 filter[i*filterSize + j]= coeff;
252                 xx++;
253             }
254             xDstInSrc+= xInc;
255         }
256     } else {
257         int64_t xDstInSrc;
258         int sizeFactor;
259
260         if      (flags&SWS_BICUBIC)      sizeFactor=  4;
261         else if (flags&SWS_X)            sizeFactor=  8;
262         else if (flags&SWS_AREA)         sizeFactor=  1; //downscale only, for upscale it is bilinear
263         else if (flags&SWS_GAUSS)        sizeFactor=  8;   // infinite ;)
264         else if (flags&SWS_LANCZOS)      sizeFactor= param[0] != SWS_PARAM_DEFAULT ? ceil(2*param[0]) : 6;
265         else if (flags&SWS_SINC)         sizeFactor= 20; // infinite ;)
266         else if (flags&SWS_SPLINE)       sizeFactor= 20;  // infinite ;)
267         else if (flags&SWS_BILINEAR)     sizeFactor=  2;
268         else {
269             sizeFactor= 0; //GCC warning killer
270             assert(0);
271         }
272
273         if (xInc <= 1<<16)      filterSize= 1 + sizeFactor; // upscale
274         else                    filterSize= 1 + (sizeFactor*srcW + dstW - 1)/ dstW;
275
276         if (filterSize > srcW-2) filterSize=srcW-2;
277
278         FF_ALLOC_OR_GOTO(NULL, filter, dstW*sizeof(*filter)*filterSize, fail);
279
280         xDstInSrc= xInc - 0x10000;
281         for (i=0; i<dstW; i++) {
282             int xx= (xDstInSrc - ((filterSize-2)<<16)) / (1<<17);
283             int j;
284             (*filterPos)[i]= xx;
285             for (j=0; j<filterSize; j++) {
286                 int64_t d= (FFABS(((int64_t)xx<<17) - xDstInSrc))<<13;
287                 double floatd;
288                 int64_t coeff;
289
290                 if (xInc > 1<<16)
291                     d= d*dstW/srcW;
292                 floatd= d * (1.0/(1<<30));
293
294                 if (flags & SWS_BICUBIC) {
295                     int64_t B= (param[0] != SWS_PARAM_DEFAULT ? param[0] :   0) * (1<<24);
296                     int64_t C= (param[1] != SWS_PARAM_DEFAULT ? param[1] : 0.6) * (1<<24);
297
298                     if (d >= 1LL<<31) {
299                         coeff = 0.0;
300                     } else {
301                         int64_t dd  = (d  * d) >> 30;
302                         int64_t ddd = (dd * d) >> 30;
303
304                         if (d < 1LL<<30)
305                             coeff = (12*(1<<24)-9*B-6*C)*ddd + (-18*(1<<24)+12*B+6*C)*dd + (6*(1<<24)-2*B)*(1<<30);
306                         else
307                             coeff = (-B-6*C)*ddd + (6*B+30*C)*dd + (-12*B-48*C)*d + (8*B+24*C)*(1<<30);
308                     }
309                     coeff *= fone>>(30+24);
310                 }
311 /*                else if (flags & SWS_X) {
312                     double p= param ? param*0.01 : 0.3;
313                     coeff = d ? sin(d*M_PI)/(d*M_PI) : 1.0;
314                     coeff*= pow(2.0, - p*d*d);
315                 }*/
316                 else if (flags & SWS_X) {
317                     double A= param[0] != SWS_PARAM_DEFAULT ? param[0] : 1.0;
318                     double c;
319
320                     if (floatd<1.0)
321                         c = cos(floatd*M_PI);
322                     else
323                         c=-1.0;
324                     if (c<0.0)      c= -pow(-c, A);
325                     else            c=  pow( c, A);
326                     coeff= (c*0.5 + 0.5)*fone;
327                 } else if (flags & SWS_AREA) {
328                     int64_t d2= d - (1<<29);
329                     if      (d2*xInc < -(1LL<<(29+16))) coeff= 1.0 * (1LL<<(30+16));
330                     else if (d2*xInc <  (1LL<<(29+16))) coeff= -d2*xInc + (1LL<<(29+16));
331                     else coeff=0.0;
332                     coeff *= fone>>(30+16);
333                 } else if (flags & SWS_GAUSS) {
334                     double p= param[0] != SWS_PARAM_DEFAULT ? param[0] : 3.0;
335                     coeff = (pow(2.0, - p*floatd*floatd))*fone;
336                 } else if (flags & SWS_SINC) {
337                     coeff = (d ? sin(floatd*M_PI)/(floatd*M_PI) : 1.0)*fone;
338                 } else if (flags & SWS_LANCZOS) {
339                     double p= param[0] != SWS_PARAM_DEFAULT ? param[0] : 3.0;
340                     coeff = (d ? sin(floatd*M_PI)*sin(floatd*M_PI/p)/(floatd*floatd*M_PI*M_PI/p) : 1.0)*fone;
341                     if (floatd>p) coeff=0;
342                 } else if (flags & SWS_BILINEAR) {
343                     coeff= (1<<30) - d;
344                     if (coeff<0) coeff=0;
345                     coeff *= fone >> 30;
346                 } else if (flags & SWS_SPLINE) {
347                     double p=-2.196152422706632;
348                     coeff = getSplineCoeff(1.0, 0.0, p, -p-1.0, floatd) * fone;
349                 } else {
350                     coeff= 0.0; //GCC warning killer
351                     assert(0);
352                 }
353
354                 filter[i*filterSize + j]= coeff;
355                 xx++;
356             }
357             xDstInSrc+= 2*xInc;
358         }
359     }
360
361     /* apply src & dst Filter to filter -> filter2
362        av_free(filter);
363     */
364     assert(filterSize>0);
365     filter2Size= filterSize;
366     if (srcFilter) filter2Size+= srcFilter->length - 1;
367     if (dstFilter) filter2Size+= dstFilter->length - 1;
368     assert(filter2Size>0);
369     FF_ALLOCZ_OR_GOTO(NULL, filter2, filter2Size*dstW*sizeof(*filter2), fail);
370
371     for (i=0; i<dstW; i++) {
372         int j, k;
373
374         if(srcFilter) {
375             for (k=0; k<srcFilter->length; k++) {
376                 for (j=0; j<filterSize; j++)
377                     filter2[i*filter2Size + k + j] += srcFilter->coeff[k]*filter[i*filterSize + j];
378             }
379         } else {
380             for (j=0; j<filterSize; j++)
381                 filter2[i*filter2Size + j]= filter[i*filterSize + j];
382         }
383         //FIXME dstFilter
384
385         (*filterPos)[i]+= (filterSize-1)/2 - (filter2Size-1)/2;
386     }
387     av_freep(&filter);
388
389     /* try to reduce the filter-size (step1 find size and shift left) */
390     // Assume it is near normalized (*0.5 or *2.0 is OK but * 0.001 is not).
391     minFilterSize= 0;
392     for (i=dstW-1; i>=0; i--) {
393         int min= filter2Size;
394         int j;
395         int64_t cutOff=0.0;
396
397         /* get rid of near zero elements on the left by shifting left */
398         for (j=0; j<filter2Size; j++) {
399             int k;
400             cutOff += FFABS(filter2[i*filter2Size]);
401
402             if (cutOff > SWS_MAX_REDUCE_CUTOFF*fone) break;
403
404             /* preserve monotonicity because the core can't handle the filter otherwise */
405             if (i<dstW-1 && (*filterPos)[i] >= (*filterPos)[i+1]) break;
406
407             // move filter coefficients left
408             for (k=1; k<filter2Size; k++)
409                 filter2[i*filter2Size + k - 1]= filter2[i*filter2Size + k];
410             filter2[i*filter2Size + k - 1]= 0;
411             (*filterPos)[i]++;
412         }
413
414         cutOff=0;
415         /* count near zeros on the right */
416         for (j=filter2Size-1; j>0; j--) {
417             cutOff += FFABS(filter2[i*filter2Size + j]);
418
419             if (cutOff > SWS_MAX_REDUCE_CUTOFF*fone) break;
420             min--;
421         }
422
423         if (min>minFilterSize) minFilterSize= min;
424     }
425
426     if (HAVE_ALTIVEC && cpu_flags & AV_CPU_FLAG_ALTIVEC) {
427         // we can handle the special case 4,
428         // so we don't want to go to the full 8
429         if (minFilterSize < 5)
430             filterAlign = 4;
431
432         // We really don't want to waste our time
433         // doing useless computation, so fall back on
434         // the scalar C code for very small filters.
435         // Vectorizing is worth it only if you have a
436         // decent-sized vector.
437         if (minFilterSize < 3)
438             filterAlign = 1;
439     }
440
441     if (HAVE_MMX && cpu_flags & AV_CPU_FLAG_MMX) {
442         // special case for unscaled vertical filtering
443         if (minFilterSize == 1 && filterAlign == 2)
444             filterAlign= 1;
445     }
446
447     assert(minFilterSize > 0);
448     filterSize= (minFilterSize +(filterAlign-1)) & (~(filterAlign-1));
449     assert(filterSize > 0);
450     filter= av_malloc(filterSize*dstW*sizeof(*filter));
451     if (filterSize >= MAX_FILTER_SIZE*16/((flags&SWS_ACCURATE_RND) ? APCK_SIZE : 16) || !filter)
452         goto fail;
453     *outFilterSize= filterSize;
454
455     if (flags&SWS_PRINT_INFO)
456         av_log(NULL, AV_LOG_VERBOSE, "SwScaler: reducing / aligning filtersize %d -> %d\n", filter2Size, filterSize);
457     /* try to reduce the filter-size (step2 reduce it) */
458     for (i=0; i<dstW; i++) {
459         int j;
460
461         for (j=0; j<filterSize; j++) {
462             if (j>=filter2Size) filter[i*filterSize + j]= 0;
463             else               filter[i*filterSize + j]= filter2[i*filter2Size + j];
464             if((flags & SWS_BITEXACT) && j>=minFilterSize)
465                 filter[i*filterSize + j]= 0;
466         }
467     }
468
469     //FIXME try to align filterPos if possible
470
471     //fix borders
472     for (i=0; i<dstW; i++) {
473         int j;
474         if ((*filterPos)[i] < 0) {
475             // move filter coefficients left to compensate for filterPos
476             for (j=1; j<filterSize; j++) {
477                 int left= FFMAX(j + (*filterPos)[i], 0);
478                 filter[i*filterSize + left] += filter[i*filterSize + j];
479                 filter[i*filterSize + j]=0;
480             }
481             (*filterPos)[i]= 0;
482         }
483
484         if ((*filterPos)[i] + filterSize > srcW) {
485             int shift= (*filterPos)[i] + filterSize - srcW;
486             // move filter coefficients right to compensate for filterPos
487             for (j=filterSize-2; j>=0; j--) {
488                 int right= FFMIN(j + shift, filterSize-1);
489                 filter[i*filterSize +right] += filter[i*filterSize +j];
490                 filter[i*filterSize +j]=0;
491             }
492             (*filterPos)[i]= srcW - filterSize;
493         }
494     }
495
496     // Note the +1 is for the MMX scaler which reads over the end
497     /* align at 16 for AltiVec (needed by hScale_altivec_real) */
498     FF_ALLOCZ_OR_GOTO(NULL, *outFilter, *outFilterSize*(dstW+3)*sizeof(int16_t), fail);
499
500     /* normalize & store in outFilter */
501     for (i=0; i<dstW; i++) {
502         int j;
503         int64_t error=0;
504         int64_t sum=0;
505
506         for (j=0; j<filterSize; j++) {
507             sum+= filter[i*filterSize + j];
508         }
509         sum= (sum + one/2)/ one;
510         for (j=0; j<*outFilterSize; j++) {
511             int64_t v= filter[i*filterSize + j] + error;
512             int intV= ROUNDED_DIV(v, sum);
513             (*outFilter)[i*(*outFilterSize) + j]= intV;
514             error= v - intV*sum;
515         }
516     }
517
518     (*filterPos)[dstW+0] =
519     (*filterPos)[dstW+1] =
520     (*filterPos)[dstW+2] = (*filterPos)[dstW-1]; // the MMX/SSE scaler will read over the end
521     for (i=0; i<*outFilterSize; i++) {
522         int k= (dstW - 1) * (*outFilterSize) + i;
523         (*outFilter)[k + 1 * (*outFilterSize)] =
524         (*outFilter)[k + 2 * (*outFilterSize)] =
525         (*outFilter)[k + 3 * (*outFilterSize)] = (*outFilter)[k];
526     }
527
528     ret=0;
529 fail:
530     av_free(filter);
531     av_free(filter2);
532     return ret;
533 }
534
535 #if HAVE_MMX2
536 static int initMMX2HScaler(int dstW, int xInc, uint8_t *filterCode, int16_t *filter, int32_t *filterPos, int numSplits)
537 {
538     uint8_t *fragmentA;
539     x86_reg imm8OfPShufW1A;
540     x86_reg imm8OfPShufW2A;
541     x86_reg fragmentLengthA;
542     uint8_t *fragmentB;
543     x86_reg imm8OfPShufW1B;
544     x86_reg imm8OfPShufW2B;
545     x86_reg fragmentLengthB;
546     int fragmentPos;
547
548     int xpos, i;
549
550     // create an optimized horizontal scaling routine
551     /* This scaler is made of runtime-generated MMX2 code using specially
552      * tuned pshufw instructions. For every four output pixels, if four
553      * input pixels are enough for the fast bilinear scaling, then a chunk
554      * of fragmentB is used. If five input pixels are needed, then a chunk
555      * of fragmentA is used.
556      */
557
558     //code fragment
559
560     __asm__ volatile(
561         "jmp                         9f                 \n\t"
562     // Begin
563         "0:                                             \n\t"
564         "movq    (%%"REG_d", %%"REG_a"), %%mm3          \n\t"
565         "movd    (%%"REG_c", %%"REG_S"), %%mm0          \n\t"
566         "movd   1(%%"REG_c", %%"REG_S"), %%mm1          \n\t"
567         "punpcklbw                %%mm7, %%mm1          \n\t"
568         "punpcklbw                %%mm7, %%mm0          \n\t"
569         "pshufw                   $0xFF, %%mm1, %%mm1   \n\t"
570         "1:                                             \n\t"
571         "pshufw                   $0xFF, %%mm0, %%mm0   \n\t"
572         "2:                                             \n\t"
573         "psubw                    %%mm1, %%mm0          \n\t"
574         "movl   8(%%"REG_b", %%"REG_a"), %%esi          \n\t"
575         "pmullw                   %%mm3, %%mm0          \n\t"
576         "psllw                       $7, %%mm1          \n\t"
577         "paddw                    %%mm1, %%mm0          \n\t"
578
579         "movq                     %%mm0, (%%"REG_D", %%"REG_a") \n\t"
580
581         "add                         $8, %%"REG_a"      \n\t"
582     // End
583         "9:                                             \n\t"
584 //        "int $3                                         \n\t"
585         "lea                 " LOCAL_MANGLE(0b) ", %0   \n\t"
586         "lea                 " LOCAL_MANGLE(1b) ", %1   \n\t"
587         "lea                 " LOCAL_MANGLE(2b) ", %2   \n\t"
588         "dec                         %1                 \n\t"
589         "dec                         %2                 \n\t"
590         "sub                         %0, %1             \n\t"
591         "sub                         %0, %2             \n\t"
592         "lea                 " LOCAL_MANGLE(9b) ", %3   \n\t"
593         "sub                         %0, %3             \n\t"
594
595
596         :"=r" (fragmentA), "=r" (imm8OfPShufW1A), "=r" (imm8OfPShufW2A),
597         "=r" (fragmentLengthA)
598     );
599
600     __asm__ volatile(
601         "jmp                         9f                 \n\t"
602     // Begin
603         "0:                                             \n\t"
604         "movq    (%%"REG_d", %%"REG_a"), %%mm3          \n\t"
605         "movd    (%%"REG_c", %%"REG_S"), %%mm0          \n\t"
606         "punpcklbw                %%mm7, %%mm0          \n\t"
607         "pshufw                   $0xFF, %%mm0, %%mm1   \n\t"
608         "1:                                             \n\t"
609         "pshufw                   $0xFF, %%mm0, %%mm0   \n\t"
610         "2:                                             \n\t"
611         "psubw                    %%mm1, %%mm0          \n\t"
612         "movl   8(%%"REG_b", %%"REG_a"), %%esi          \n\t"
613         "pmullw                   %%mm3, %%mm0          \n\t"
614         "psllw                       $7, %%mm1          \n\t"
615         "paddw                    %%mm1, %%mm0          \n\t"
616
617         "movq                     %%mm0, (%%"REG_D", %%"REG_a") \n\t"
618
619         "add                         $8, %%"REG_a"      \n\t"
620     // End
621         "9:                                             \n\t"
622 //        "int                       $3                   \n\t"
623         "lea                 " LOCAL_MANGLE(0b) ", %0   \n\t"
624         "lea                 " LOCAL_MANGLE(1b) ", %1   \n\t"
625         "lea                 " LOCAL_MANGLE(2b) ", %2   \n\t"
626         "dec                         %1                 \n\t"
627         "dec                         %2                 \n\t"
628         "sub                         %0, %1             \n\t"
629         "sub                         %0, %2             \n\t"
630         "lea                 " LOCAL_MANGLE(9b) ", %3   \n\t"
631         "sub                         %0, %3             \n\t"
632
633
634         :"=r" (fragmentB), "=r" (imm8OfPShufW1B), "=r" (imm8OfPShufW2B),
635         "=r" (fragmentLengthB)
636     );
637
638     xpos= 0; //lumXInc/2 - 0x8000; // difference between pixel centers
639     fragmentPos=0;
640
641     for (i=0; i<dstW/numSplits; i++) {
642         int xx=xpos>>16;
643
644         if ((i&3) == 0) {
645             int a=0;
646             int b=((xpos+xInc)>>16) - xx;
647             int c=((xpos+xInc*2)>>16) - xx;
648             int d=((xpos+xInc*3)>>16) - xx;
649             int inc                = (d+1<4);
650             uint8_t *fragment      = (d+1<4) ? fragmentB       : fragmentA;
651             x86_reg imm8OfPShufW1  = (d+1<4) ? imm8OfPShufW1B  : imm8OfPShufW1A;
652             x86_reg imm8OfPShufW2  = (d+1<4) ? imm8OfPShufW2B  : imm8OfPShufW2A;
653             x86_reg fragmentLength = (d+1<4) ? fragmentLengthB : fragmentLengthA;
654             int maxShift= 3-(d+inc);
655             int shift=0;
656
657             if (filterCode) {
658                 filter[i  ] = (( xpos         & 0xFFFF) ^ 0xFFFF)>>9;
659                 filter[i+1] = (((xpos+xInc  ) & 0xFFFF) ^ 0xFFFF)>>9;
660                 filter[i+2] = (((xpos+xInc*2) & 0xFFFF) ^ 0xFFFF)>>9;
661                 filter[i+3] = (((xpos+xInc*3) & 0xFFFF) ^ 0xFFFF)>>9;
662                 filterPos[i/2]= xx;
663
664                 memcpy(filterCode + fragmentPos, fragment, fragmentLength);
665
666                 filterCode[fragmentPos + imm8OfPShufW1]=
667                     (a+inc) | ((b+inc)<<2) | ((c+inc)<<4) | ((d+inc)<<6);
668                 filterCode[fragmentPos + imm8OfPShufW2]=
669                     a | (b<<2) | (c<<4) | (d<<6);
670
671                 if (i+4-inc>=dstW) shift=maxShift; //avoid overread
672                 else if ((filterPos[i/2]&3) <= maxShift) shift=filterPos[i/2]&3; //Align
673
674                 if (shift && i>=shift) {
675                     filterCode[fragmentPos + imm8OfPShufW1]+= 0x55*shift;
676                     filterCode[fragmentPos + imm8OfPShufW2]+= 0x55*shift;
677                     filterPos[i/2]-=shift;
678                 }
679             }
680
681             fragmentPos+= fragmentLength;
682
683             if (filterCode)
684                 filterCode[fragmentPos]= RET;
685         }
686         xpos+=xInc;
687     }
688     if (filterCode)
689         filterPos[((i/2)+1)&(~1)]= xpos>>16; // needed to jump to the next part
690
691     return fragmentPos + 1;
692 }
693 #endif /* HAVE_MMX2 */
694
695 static void getSubSampleFactors(int *h, int *v, enum PixelFormat format)
696 {
697     *h = av_pix_fmt_descriptors[format].log2_chroma_w;
698     *v = av_pix_fmt_descriptors[format].log2_chroma_h;
699 }
700
701 int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4],
702                              int srcRange, const int table[4], int dstRange,
703                              int brightness, int contrast, int saturation)
704 {
705     memcpy(c->srcColorspaceTable, inv_table, sizeof(int)*4);
706     memcpy(c->dstColorspaceTable,     table, sizeof(int)*4);
707
708     c->brightness= brightness;
709     c->contrast  = contrast;
710     c->saturation= saturation;
711     c->srcRange  = srcRange;
712     c->dstRange  = dstRange;
713     if (isYUV(c->dstFormat) || isGray(c->dstFormat)) return -1;
714
715     c->dstFormatBpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[c->dstFormat]);
716     c->srcFormatBpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[c->srcFormat]);
717
718     ff_yuv2rgb_c_init_tables(c, inv_table, srcRange, brightness, contrast, saturation);
719     //FIXME factorize
720
721     if (HAVE_ALTIVEC && av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC)
722         ff_yuv2rgb_init_tables_altivec(c, inv_table, brightness, contrast, saturation);
723     return 0;
724 }
725
726 int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table,
727                              int *srcRange, int **table, int *dstRange,
728                              int *brightness, int *contrast, int *saturation)
729 {
730     if (!c || isYUV(c->dstFormat) || isGray(c->dstFormat)) return -1;
731
732     *inv_table = c->srcColorspaceTable;
733     *table     = c->dstColorspaceTable;
734     *srcRange  = c->srcRange;
735     *dstRange  = c->dstRange;
736     *brightness= c->brightness;
737     *contrast  = c->contrast;
738     *saturation= c->saturation;
739
740     return 0;
741 }
742
743 static int handle_jpeg(enum PixelFormat *format)
744 {
745     switch (*format) {
746     case PIX_FMT_YUVJ420P: *format = PIX_FMT_YUV420P; return 1;
747     case PIX_FMT_YUVJ422P: *format = PIX_FMT_YUV422P; return 1;
748     case PIX_FMT_YUVJ444P: *format = PIX_FMT_YUV444P; return 1;
749     case PIX_FMT_YUVJ440P: *format = PIX_FMT_YUV440P; return 1;
750     case PIX_FMT_0BGR    : *format = PIX_FMT_ABGR   ; return 0;
751     case PIX_FMT_BGR0    : *format = PIX_FMT_BGRA   ; return 0;
752     case PIX_FMT_0RGB    : *format = PIX_FMT_ARGB   ; return 0;
753     case PIX_FMT_RGB0    : *format = PIX_FMT_RGBA   ; return 0;
754     default:                                          return 0;
755     }
756 }
757
758 SwsContext *sws_alloc_context(void)
759 {
760     SwsContext *c= av_mallocz(sizeof(SwsContext));
761
762     c->av_class = &sws_context_class;
763     av_opt_set_defaults(c);
764
765     return c;
766 }
767
768 int sws_init_context(SwsContext *c, SwsFilter *srcFilter, SwsFilter *dstFilter)
769 {
770     int i, j;
771     int usesVFilter, usesHFilter;
772     int unscaled;
773     SwsFilter dummyFilter= {NULL, NULL, NULL, NULL};
774     int srcW= c->srcW;
775     int srcH= c->srcH;
776     int dstW= c->dstW;
777     int dstH= c->dstH;
778     int dst_stride = FFALIGN(dstW * sizeof(int16_t)+66, 16);
779     int flags, cpu_flags;
780     enum PixelFormat srcFormat= c->srcFormat;
781     enum PixelFormat dstFormat= c->dstFormat;
782
783     cpu_flags = av_get_cpu_flags();
784     flags     = c->flags;
785     emms_c();
786     if (!rgb15to16) sws_rgb2rgb_init();
787
788     unscaled = (srcW == dstW && srcH == dstH);
789
790     handle_jpeg(&srcFormat);
791     handle_jpeg(&dstFormat);
792
793     if(srcFormat!=c->srcFormat || dstFormat!=c->dstFormat){
794         av_log(c, AV_LOG_WARNING, "deprecated pixel format used, make sure you did set range correctly\n");
795         c->srcFormat= srcFormat;
796         c->dstFormat= dstFormat;
797     }
798
799     if (!sws_isSupportedInput(srcFormat)) {
800         av_log(c, AV_LOG_ERROR, "%s is not supported as input pixel format\n", av_get_pix_fmt_name(srcFormat));
801         return AVERROR(EINVAL);
802     }
803     if (!sws_isSupportedOutput(dstFormat)) {
804         av_log(c, AV_LOG_ERROR, "%s is not supported as output pixel format\n", av_get_pix_fmt_name(dstFormat));
805         return AVERROR(EINVAL);
806     }
807
808     i= flags & ( SWS_POINT
809                 |SWS_AREA
810                 |SWS_BILINEAR
811                 |SWS_FAST_BILINEAR
812                 |SWS_BICUBIC
813                 |SWS_X
814                 |SWS_GAUSS
815                 |SWS_LANCZOS
816                 |SWS_SINC
817                 |SWS_SPLINE
818                 |SWS_BICUBLIN);
819     if(!i || (i & (i-1))) {
820         av_log(c, AV_LOG_ERROR, "Exactly one scaler algorithm must be chosen\n");
821         return AVERROR(EINVAL);
822     }
823     /* sanity check */
824     if (srcW<4 || srcH<1 || dstW<8 || dstH<1) { //FIXME check if these are enough and try to lowwer them after fixing the relevant parts of the code
825         av_log(c, AV_LOG_ERROR, "%dx%d -> %dx%d is invalid scaling dimension\n",
826                srcW, srcH, dstW, dstH);
827         return AVERROR(EINVAL);
828     }
829
830     if (!dstFilter) dstFilter= &dummyFilter;
831     if (!srcFilter) srcFilter= &dummyFilter;
832
833     c->lumXInc= ((srcW<<16) + (dstW>>1))/dstW;
834     c->lumYInc= ((srcH<<16) + (dstH>>1))/dstH;
835     c->dstFormatBpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[dstFormat]);
836     c->srcFormatBpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[srcFormat]);
837     c->vRounder= 4* 0x0001000100010001ULL;
838
839     usesVFilter = (srcFilter->lumV && srcFilter->lumV->length>1) ||
840                   (srcFilter->chrV && srcFilter->chrV->length>1) ||
841                   (dstFilter->lumV && dstFilter->lumV->length>1) ||
842                   (dstFilter->chrV && dstFilter->chrV->length>1);
843     usesHFilter = (srcFilter->lumH && srcFilter->lumH->length>1) ||
844                   (srcFilter->chrH && srcFilter->chrH->length>1) ||
845                   (dstFilter->lumH && dstFilter->lumH->length>1) ||
846                   (dstFilter->chrH && dstFilter->chrH->length>1);
847
848     getSubSampleFactors(&c->chrSrcHSubSample, &c->chrSrcVSubSample, srcFormat);
849     getSubSampleFactors(&c->chrDstHSubSample, &c->chrDstVSubSample, dstFormat);
850
851     // reuse chroma for 2 pixels RGB/BGR unless user wants full chroma interpolation
852     if (isAnyRGB(dstFormat) && !(flags&SWS_FULL_CHR_H_INT)) c->chrDstHSubSample=1;
853
854     // drop some chroma lines if the user wants it
855     c->vChrDrop= (flags&SWS_SRC_V_CHR_DROP_MASK)>>SWS_SRC_V_CHR_DROP_SHIFT;
856     c->chrSrcVSubSample+= c->vChrDrop;
857
858     // drop every other pixel for chroma calculation unless user wants full chroma
859     if (isAnyRGB(srcFormat) && !(flags&SWS_FULL_CHR_H_INP)
860       && srcFormat!=PIX_FMT_RGB8      && srcFormat!=PIX_FMT_BGR8
861       && srcFormat!=PIX_FMT_RGB4      && srcFormat!=PIX_FMT_BGR4
862       && srcFormat!=PIX_FMT_RGB4_BYTE && srcFormat!=PIX_FMT_BGR4_BYTE
863       && ((dstW>>c->chrDstHSubSample) <= (srcW>>1) || (flags&SWS_FAST_BILINEAR)))
864         c->chrSrcHSubSample=1;
865
866     // Note the -((-x)>>y) is so that we always round toward +inf.
867     c->chrSrcW= -((-srcW) >> c->chrSrcHSubSample);
868     c->chrSrcH= -((-srcH) >> c->chrSrcVSubSample);
869     c->chrDstW= -((-dstW) >> c->chrDstHSubSample);
870     c->chrDstH= -((-dstH) >> c->chrDstVSubSample);
871
872     /* unscaled special cases */
873     if (unscaled && !usesHFilter && !usesVFilter && (c->srcRange == c->dstRange || isAnyRGB(dstFormat))) {
874         ff_get_unscaled_swscale(c);
875
876         if (c->swScale) {
877             if (flags&SWS_PRINT_INFO)
878                 av_log(c, AV_LOG_INFO, "using unscaled %s -> %s special converter\n",
879                        av_get_pix_fmt_name(srcFormat), av_get_pix_fmt_name(dstFormat));
880             return 0;
881         }
882     }
883
884     c->srcBpc = 1 + av_pix_fmt_descriptors[srcFormat].comp[0].depth_minus1;
885     if (c->srcBpc < 8)
886         c->srcBpc = 8;
887     c->dstBpc = 1 + av_pix_fmt_descriptors[dstFormat].comp[0].depth_minus1;
888     if (c->dstBpc < 8)
889         c->dstBpc = 8;
890     if (isAnyRGB(srcFormat) || srcFormat == PIX_FMT_PAL8)
891         c->srcBpc = 16;
892     if (c->dstBpc == 16)
893         dst_stride <<= 1;
894     FF_ALLOC_OR_GOTO(c, c->formatConvBuffer, FFALIGN(srcW*2+78, 16) * 2, fail);
895     if (HAVE_MMX2 && cpu_flags & AV_CPU_FLAG_MMX2 && c->srcBpc == 8 && c->dstBpc <= 10) {
896         c->canMMX2BeUsed= (dstW >=srcW && (dstW&31)==0 && (srcW&15)==0) ? 1 : 0;
897         if (!c->canMMX2BeUsed && dstW >=srcW && (srcW&15)==0 && (flags&SWS_FAST_BILINEAR)) {
898             if (flags&SWS_PRINT_INFO)
899                 av_log(c, AV_LOG_INFO, "output width is not a multiple of 32 -> no MMX2 scaler\n");
900         }
901         if (usesHFilter || isNBPS(c->srcFormat) || is16BPS(c->srcFormat) || isAnyRGB(c->srcFormat)) c->canMMX2BeUsed=0;
902     }
903     else
904         c->canMMX2BeUsed=0;
905
906     c->chrXInc= ((c->chrSrcW<<16) + (c->chrDstW>>1))/c->chrDstW;
907     c->chrYInc= ((c->chrSrcH<<16) + (c->chrDstH>>1))/c->chrDstH;
908
909     // match pixel 0 of the src to pixel 0 of dst and match pixel n-2 of src to pixel n-2 of dst
910     // but only for the FAST_BILINEAR mode otherwise do correct scaling
911     // n-2 is the last chrominance sample available
912     // this is not perfect, but no one should notice the difference, the more correct variant
913     // would be like the vertical one, but that would require some special code for the
914     // first and last pixel
915     if (flags&SWS_FAST_BILINEAR) {
916         if (c->canMMX2BeUsed) {
917             c->lumXInc+= 20;
918             c->chrXInc+= 20;
919         }
920         //we don't use the x86 asm scaler if MMX is available
921         else if (HAVE_MMX && cpu_flags & AV_CPU_FLAG_MMX && c->dstBpc <= 10) {
922             c->lumXInc = ((srcW-2)<<16)/(dstW-2) - 20;
923             c->chrXInc = ((c->chrSrcW-2)<<16)/(c->chrDstW-2) - 20;
924         }
925     }
926
927     /* precalculate horizontal scaler filter coefficients */
928     {
929 #if HAVE_MMX2
930 // can't downscale !!!
931         if (c->canMMX2BeUsed && (flags & SWS_FAST_BILINEAR)) {
932             c->lumMmx2FilterCodeSize = initMMX2HScaler(      dstW, c->lumXInc, NULL, NULL, NULL, 8);
933             c->chrMmx2FilterCodeSize = initMMX2HScaler(c->chrDstW, c->chrXInc, NULL, NULL, NULL, 4);
934
935 #ifdef MAP_ANONYMOUS
936             c->lumMmx2FilterCode = mmap(NULL, c->lumMmx2FilterCodeSize, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
937             c->chrMmx2FilterCode = mmap(NULL, c->chrMmx2FilterCodeSize, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
938 #elif HAVE_VIRTUALALLOC
939             c->lumMmx2FilterCode = VirtualAlloc(NULL, c->lumMmx2FilterCodeSize, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
940             c->chrMmx2FilterCode = VirtualAlloc(NULL, c->chrMmx2FilterCodeSize, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
941 #else
942             c->lumMmx2FilterCode = av_malloc(c->lumMmx2FilterCodeSize);
943             c->chrMmx2FilterCode = av_malloc(c->chrMmx2FilterCodeSize);
944 #endif
945
946 #ifdef MAP_ANONYMOUS
947             if (c->lumMmx2FilterCode == MAP_FAILED || c->chrMmx2FilterCode == MAP_FAILED)
948 #else
949             if (!c->lumMmx2FilterCode || !c->chrMmx2FilterCode)
950 #endif
951             {
952                 av_log(c, AV_LOG_ERROR, "Failed to allocate MMX2FilterCode\n");
953                 return AVERROR(ENOMEM);
954             }
955             FF_ALLOCZ_OR_GOTO(c, c->hLumFilter   , (dstW        /8+8)*sizeof(int16_t), fail);
956             FF_ALLOCZ_OR_GOTO(c, c->hChrFilter   , (c->chrDstW  /4+8)*sizeof(int16_t), fail);
957             FF_ALLOCZ_OR_GOTO(c, c->hLumFilterPos, (dstW      /2/8+8)*sizeof(int32_t), fail);
958             FF_ALLOCZ_OR_GOTO(c, c->hChrFilterPos, (c->chrDstW/2/4+8)*sizeof(int32_t), fail);
959
960             initMMX2HScaler(      dstW, c->lumXInc, c->lumMmx2FilterCode, c->hLumFilter, (uint32_t*)c->hLumFilterPos, 8);
961             initMMX2HScaler(c->chrDstW, c->chrXInc, c->chrMmx2FilterCode, c->hChrFilter, (uint32_t*)c->hChrFilterPos, 4);
962
963 #ifdef MAP_ANONYMOUS
964             mprotect(c->lumMmx2FilterCode, c->lumMmx2FilterCodeSize, PROT_EXEC | PROT_READ);
965             mprotect(c->chrMmx2FilterCode, c->chrMmx2FilterCodeSize, PROT_EXEC | PROT_READ);
966 #endif
967         } else
968 #endif /* HAVE_MMX2 */
969         {
970             const int filterAlign=
971                 (HAVE_MMX     && cpu_flags & AV_CPU_FLAG_MMX) ? 4 :
972                 (HAVE_ALTIVEC && cpu_flags & AV_CPU_FLAG_ALTIVEC) ? 8 :
973                 1;
974
975             if (initFilter(&c->hLumFilter, &c->hLumFilterPos, &c->hLumFilterSize, c->lumXInc,
976                            srcW      ,       dstW, filterAlign, 1<<14,
977                            (flags&SWS_BICUBLIN) ? (flags|SWS_BICUBIC)  : flags, cpu_flags,
978                            srcFilter->lumH, dstFilter->lumH, c->param) < 0)
979                 goto fail;
980             if (initFilter(&c->hChrFilter, &c->hChrFilterPos, &c->hChrFilterSize, c->chrXInc,
981                            c->chrSrcW, c->chrDstW, filterAlign, 1<<14,
982                            (flags&SWS_BICUBLIN) ? (flags|SWS_BILINEAR) : flags, cpu_flags,
983                            srcFilter->chrH, dstFilter->chrH, c->param) < 0)
984                 goto fail;
985         }
986     } // initialize horizontal stuff
987
988     /* precalculate vertical scaler filter coefficients */
989     {
990         const int filterAlign=
991             (HAVE_MMX     && cpu_flags & AV_CPU_FLAG_MMX) ? 2 :
992             (HAVE_ALTIVEC && cpu_flags & AV_CPU_FLAG_ALTIVEC) ? 8 :
993             1;
994
995         if (initFilter(&c->vLumFilter, &c->vLumFilterPos, &c->vLumFilterSize, c->lumYInc,
996                        srcH      ,        dstH, filterAlign, (1<<12),
997                        (flags&SWS_BICUBLIN) ? (flags|SWS_BICUBIC)  : flags, cpu_flags,
998                        srcFilter->lumV, dstFilter->lumV, c->param) < 0)
999             goto fail;
1000         if (initFilter(&c->vChrFilter, &c->vChrFilterPos, &c->vChrFilterSize, c->chrYInc,
1001                        c->chrSrcH, c->chrDstH, filterAlign, (1<<12),
1002                        (flags&SWS_BICUBLIN) ? (flags|SWS_BILINEAR) : flags, cpu_flags,
1003                        srcFilter->chrV, dstFilter->chrV, c->param) < 0)
1004             goto fail;
1005
1006 #if HAVE_ALTIVEC
1007         FF_ALLOC_OR_GOTO(c, c->vYCoeffsBank, sizeof (vector signed short)*c->vLumFilterSize*c->dstH, fail);
1008         FF_ALLOC_OR_GOTO(c, c->vCCoeffsBank, sizeof (vector signed short)*c->vChrFilterSize*c->chrDstH, fail);
1009
1010         for (i=0;i<c->vLumFilterSize*c->dstH;i++) {
1011             int j;
1012             short *p = (short *)&c->vYCoeffsBank[i];
1013             for (j=0;j<8;j++)
1014                 p[j] = c->vLumFilter[i];
1015         }
1016
1017         for (i=0;i<c->vChrFilterSize*c->chrDstH;i++) {
1018             int j;
1019             short *p = (short *)&c->vCCoeffsBank[i];
1020             for (j=0;j<8;j++)
1021                 p[j] = c->vChrFilter[i];
1022         }
1023 #endif
1024     }
1025
1026     // calculate buffer sizes so that they won't run out while handling these damn slices
1027     c->vLumBufSize= c->vLumFilterSize;
1028     c->vChrBufSize= c->vChrFilterSize;
1029     for (i=0; i<dstH; i++) {
1030         int chrI= (int64_t)i*c->chrDstH / dstH;
1031         int nextSlice= FFMAX(c->vLumFilterPos[i   ] + c->vLumFilterSize - 1,
1032                            ((c->vChrFilterPos[chrI] + c->vChrFilterSize - 1)<<c->chrSrcVSubSample));
1033
1034         nextSlice>>= c->chrSrcVSubSample;
1035         nextSlice<<= c->chrSrcVSubSample;
1036         if (c->vLumFilterPos[i   ] + c->vLumBufSize < nextSlice)
1037             c->vLumBufSize= nextSlice - c->vLumFilterPos[i];
1038         if (c->vChrFilterPos[chrI] + c->vChrBufSize < (nextSlice>>c->chrSrcVSubSample))
1039             c->vChrBufSize= (nextSlice>>c->chrSrcVSubSample) - c->vChrFilterPos[chrI];
1040     }
1041
1042     // allocate pixbufs (we use dynamic allocation because otherwise we would need to
1043     // allocate several megabytes to handle all possible cases)
1044     FF_ALLOC_OR_GOTO(c, c->lumPixBuf, c->vLumBufSize*2*sizeof(int16_t*), fail);
1045     FF_ALLOC_OR_GOTO(c, c->chrUPixBuf, c->vChrBufSize*2*sizeof(int16_t*), fail);
1046     FF_ALLOC_OR_GOTO(c, c->chrVPixBuf, c->vChrBufSize*2*sizeof(int16_t*), fail);
1047     if (CONFIG_SWSCALE_ALPHA && isALPHA(c->srcFormat) && isALPHA(c->dstFormat))
1048         FF_ALLOCZ_OR_GOTO(c, c->alpPixBuf, c->vLumBufSize*2*sizeof(int16_t*), fail);
1049     //Note we need at least one pixel more at the end because of the MMX code (just in case someone wanna replace the 4000/8000)
1050     /* align at 16 bytes for AltiVec */
1051     for (i=0; i<c->vLumBufSize; i++) {
1052         FF_ALLOCZ_OR_GOTO(c, c->lumPixBuf[i+c->vLumBufSize], dst_stride+16, fail);
1053         c->lumPixBuf[i] = c->lumPixBuf[i+c->vLumBufSize];
1054     }
1055     // 64 / c->scalingBpp is the same as 16 / sizeof(scaling_intermediate)
1056     c->uv_off   = (dst_stride>>1) + 64 / (c->dstBpc &~ 7);
1057     c->uv_offx2 = dst_stride + 16;
1058     for (i=0; i<c->vChrBufSize; i++) {
1059         FF_ALLOC_OR_GOTO(c, c->chrUPixBuf[i+c->vChrBufSize], dst_stride*2+32, fail);
1060         c->chrUPixBuf[i] = c->chrUPixBuf[i+c->vChrBufSize];
1061         c->chrVPixBuf[i] = c->chrVPixBuf[i+c->vChrBufSize] = c->chrUPixBuf[i] + (dst_stride >> 1) + 8;
1062     }
1063     if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf)
1064         for (i=0; i<c->vLumBufSize; i++) {
1065             FF_ALLOCZ_OR_GOTO(c, c->alpPixBuf[i+c->vLumBufSize], dst_stride+16, fail);
1066             c->alpPixBuf[i] = c->alpPixBuf[i+c->vLumBufSize];
1067         }
1068
1069     //try to avoid drawing green stuff between the right end and the stride end
1070     for (i=0; i<c->vChrBufSize; i++)
1071         if(av_pix_fmt_descriptors[c->dstFormat].comp[0].depth_minus1 == 15){
1072             av_assert0(c->dstBpc > 10);
1073             for(j=0; j<dst_stride/2+1; j++)
1074                 ((int32_t*)(c->chrUPixBuf[i]))[j] = 1<<18;
1075         } else
1076             for(j=0; j<dst_stride+1; j++)
1077                 ((int16_t*)(c->chrUPixBuf[i]))[j] = 1<<14;
1078
1079     assert(c->chrDstH <= dstH);
1080
1081     if (flags&SWS_PRINT_INFO) {
1082         if      (flags&SWS_FAST_BILINEAR) av_log(c, AV_LOG_INFO, "FAST_BILINEAR scaler, ");
1083         else if (flags&SWS_BILINEAR)      av_log(c, AV_LOG_INFO, "BILINEAR scaler, ");
1084         else if (flags&SWS_BICUBIC)       av_log(c, AV_LOG_INFO, "BICUBIC scaler, ");
1085         else if (flags&SWS_X)             av_log(c, AV_LOG_INFO, "Experimental scaler, ");
1086         else if (flags&SWS_POINT)         av_log(c, AV_LOG_INFO, "Nearest Neighbor / POINT scaler, ");
1087         else if (flags&SWS_AREA)          av_log(c, AV_LOG_INFO, "Area Averaging scaler, ");
1088         else if (flags&SWS_BICUBLIN)      av_log(c, AV_LOG_INFO, "luma BICUBIC / chroma BILINEAR scaler, ");
1089         else if (flags&SWS_GAUSS)         av_log(c, AV_LOG_INFO, "Gaussian scaler, ");
1090         else if (flags&SWS_SINC)          av_log(c, AV_LOG_INFO, "Sinc scaler, ");
1091         else if (flags&SWS_LANCZOS)       av_log(c, AV_LOG_INFO, "Lanczos scaler, ");
1092         else if (flags&SWS_SPLINE)        av_log(c, AV_LOG_INFO, "Bicubic spline scaler, ");
1093         else                              av_log(c, AV_LOG_INFO, "ehh flags invalid?! ");
1094
1095         av_log(c, AV_LOG_INFO, "from %s to %s%s ",
1096                av_get_pix_fmt_name(srcFormat),
1097 #ifdef DITHER1XBPP
1098                dstFormat == PIX_FMT_BGR555 || dstFormat == PIX_FMT_BGR565 ||
1099                dstFormat == PIX_FMT_RGB444BE || dstFormat == PIX_FMT_RGB444LE ||
1100                dstFormat == PIX_FMT_BGR444BE || dstFormat == PIX_FMT_BGR444LE ? "dithered " : "",
1101 #else
1102                "",
1103 #endif
1104                av_get_pix_fmt_name(dstFormat));
1105
1106         if      (HAVE_MMX2     && cpu_flags & AV_CPU_FLAG_MMX2)    av_log(c, AV_LOG_INFO, "using MMX2\n");
1107         else if (HAVE_AMD3DNOW && cpu_flags & AV_CPU_FLAG_3DNOW)   av_log(c, AV_LOG_INFO, "using 3DNOW\n");
1108         else if (HAVE_MMX      && cpu_flags & AV_CPU_FLAG_MMX)     av_log(c, AV_LOG_INFO, "using MMX\n");
1109         else if (HAVE_ALTIVEC  && cpu_flags & AV_CPU_FLAG_ALTIVEC) av_log(c, AV_LOG_INFO, "using AltiVec\n");
1110         else                                   av_log(c, AV_LOG_INFO, "using C\n");
1111
1112         av_log(c, AV_LOG_VERBOSE, "%dx%d -> %dx%d\n", srcW, srcH, dstW, dstH);
1113         av_log(c, AV_LOG_DEBUG, "lum srcW=%d srcH=%d dstW=%d dstH=%d xInc=%d yInc=%d\n",
1114                c->srcW, c->srcH, c->dstW, c->dstH, c->lumXInc, c->lumYInc);
1115         av_log(c, AV_LOG_DEBUG, "chr srcW=%d srcH=%d dstW=%d dstH=%d xInc=%d yInc=%d\n",
1116                c->chrSrcW, c->chrSrcH, c->chrDstW, c->chrDstH, c->chrXInc, c->chrYInc);
1117     }
1118
1119     c->swScale= ff_getSwsFunc(c);
1120     return 0;
1121 fail: //FIXME replace things by appropriate error codes
1122     return -1;
1123 }
1124
1125 #if FF_API_SWS_GETCONTEXT
1126 SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat,
1127                            int dstW, int dstH, enum PixelFormat dstFormat, int flags,
1128                            SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param)
1129 {
1130     SwsContext *c;
1131
1132     if(!(c=sws_alloc_context()))
1133         return NULL;
1134
1135     c->flags= flags;
1136     c->srcW= srcW;
1137     c->srcH= srcH;
1138     c->dstW= dstW;
1139     c->dstH= dstH;
1140     c->srcRange = handle_jpeg(&srcFormat);
1141     c->dstRange = handle_jpeg(&dstFormat);
1142     c->srcFormat= srcFormat;
1143     c->dstFormat= dstFormat;
1144
1145     if (param) {
1146         c->param[0] = param[0];
1147         c->param[1] = param[1];
1148     }
1149     sws_setColorspaceDetails(c, ff_yuv2rgb_coeffs[SWS_CS_DEFAULT], c->srcRange, ff_yuv2rgb_coeffs[SWS_CS_DEFAULT] /* FIXME*/, c->dstRange, 0, 1<<16, 1<<16);
1150
1151     if(sws_init_context(c, srcFilter, dstFilter) < 0){
1152         sws_freeContext(c);
1153         return NULL;
1154     }
1155
1156     return c;
1157 }
1158 #endif
1159
1160 SwsFilter *sws_getDefaultFilter(float lumaGBlur, float chromaGBlur,
1161                                 float lumaSharpen, float chromaSharpen,
1162                                 float chromaHShift, float chromaVShift,
1163                                 int verbose)
1164 {
1165     SwsFilter *filter= av_malloc(sizeof(SwsFilter));
1166     if (!filter)
1167         return NULL;
1168
1169     if (lumaGBlur!=0.0) {
1170         filter->lumH= sws_getGaussianVec(lumaGBlur, 3.0);
1171         filter->lumV= sws_getGaussianVec(lumaGBlur, 3.0);
1172     } else {
1173         filter->lumH= sws_getIdentityVec();
1174         filter->lumV= sws_getIdentityVec();
1175     }
1176
1177     if (chromaGBlur!=0.0) {
1178         filter->chrH= sws_getGaussianVec(chromaGBlur, 3.0);
1179         filter->chrV= sws_getGaussianVec(chromaGBlur, 3.0);
1180     } else {
1181         filter->chrH= sws_getIdentityVec();
1182         filter->chrV= sws_getIdentityVec();
1183     }
1184
1185     if (chromaSharpen!=0.0) {
1186         SwsVector *id= sws_getIdentityVec();
1187         sws_scaleVec(filter->chrH, -chromaSharpen);
1188         sws_scaleVec(filter->chrV, -chromaSharpen);
1189         sws_addVec(filter->chrH, id);
1190         sws_addVec(filter->chrV, id);
1191         sws_freeVec(id);
1192     }
1193
1194     if (lumaSharpen!=0.0) {
1195         SwsVector *id= sws_getIdentityVec();
1196         sws_scaleVec(filter->lumH, -lumaSharpen);
1197         sws_scaleVec(filter->lumV, -lumaSharpen);
1198         sws_addVec(filter->lumH, id);
1199         sws_addVec(filter->lumV, id);
1200         sws_freeVec(id);
1201     }
1202
1203     if (chromaHShift != 0.0)
1204         sws_shiftVec(filter->chrH, (int)(chromaHShift+0.5));
1205
1206     if (chromaVShift != 0.0)
1207         sws_shiftVec(filter->chrV, (int)(chromaVShift+0.5));
1208
1209     sws_normalizeVec(filter->chrH, 1.0);
1210     sws_normalizeVec(filter->chrV, 1.0);
1211     sws_normalizeVec(filter->lumH, 1.0);
1212     sws_normalizeVec(filter->lumV, 1.0);
1213
1214     if (verbose) sws_printVec2(filter->chrH, NULL, AV_LOG_DEBUG);
1215     if (verbose) sws_printVec2(filter->lumH, NULL, AV_LOG_DEBUG);
1216
1217     return filter;
1218 }
1219
1220 SwsVector *sws_allocVec(int length)
1221 {
1222     SwsVector *vec = av_malloc(sizeof(SwsVector));
1223     if (!vec)
1224         return NULL;
1225     vec->length = length;
1226     vec->coeff  = av_malloc(sizeof(double) * length);
1227     if (!vec->coeff)
1228         av_freep(&vec);
1229     return vec;
1230 }
1231
1232 SwsVector *sws_getGaussianVec(double variance, double quality)
1233 {
1234     const int length= (int)(variance*quality + 0.5) | 1;
1235     int i;
1236     double middle= (length-1)*0.5;
1237     SwsVector *vec= sws_allocVec(length);
1238
1239     if (!vec)
1240         return NULL;
1241
1242     for (i=0; i<length; i++) {
1243         double dist= i-middle;
1244         vec->coeff[i]= exp(-dist*dist/(2*variance*variance)) / sqrt(2*variance*M_PI);
1245     }
1246
1247     sws_normalizeVec(vec, 1.0);
1248
1249     return vec;
1250 }
1251
1252 SwsVector *sws_getConstVec(double c, int length)
1253 {
1254     int i;
1255     SwsVector *vec= sws_allocVec(length);
1256
1257     if (!vec)
1258         return NULL;
1259
1260     for (i=0; i<length; i++)
1261         vec->coeff[i]= c;
1262
1263     return vec;
1264 }
1265
1266 SwsVector *sws_getIdentityVec(void)
1267 {
1268     return sws_getConstVec(1.0, 1);
1269 }
1270
1271 static double sws_dcVec(SwsVector *a)
1272 {
1273     int i;
1274     double sum=0;
1275
1276     for (i=0; i<a->length; i++)
1277         sum+= a->coeff[i];
1278
1279     return sum;
1280 }
1281
1282 void sws_scaleVec(SwsVector *a, double scalar)
1283 {
1284     int i;
1285
1286     for (i=0; i<a->length; i++)
1287         a->coeff[i]*= scalar;
1288 }
1289
1290 void sws_normalizeVec(SwsVector *a, double height)
1291 {
1292     sws_scaleVec(a, height/sws_dcVec(a));
1293 }
1294
1295 static SwsVector *sws_getConvVec(SwsVector *a, SwsVector *b)
1296 {
1297     int length= a->length + b->length - 1;
1298     int i, j;
1299     SwsVector *vec= sws_getConstVec(0.0, length);
1300
1301     if (!vec)
1302         return NULL;
1303
1304     for (i=0; i<a->length; i++) {
1305         for (j=0; j<b->length; j++) {
1306             vec->coeff[i+j]+= a->coeff[i]*b->coeff[j];
1307         }
1308     }
1309
1310     return vec;
1311 }
1312
1313 static SwsVector *sws_sumVec(SwsVector *a, SwsVector *b)
1314 {
1315     int length= FFMAX(a->length, b->length);
1316     int i;
1317     SwsVector *vec= sws_getConstVec(0.0, length);
1318
1319     if (!vec)
1320         return NULL;
1321
1322     for (i=0; i<a->length; i++) vec->coeff[i + (length-1)/2 - (a->length-1)/2]+= a->coeff[i];
1323     for (i=0; i<b->length; i++) vec->coeff[i + (length-1)/2 - (b->length-1)/2]+= b->coeff[i];
1324
1325     return vec;
1326 }
1327
1328 static SwsVector *sws_diffVec(SwsVector *a, SwsVector *b)
1329 {
1330     int length= FFMAX(a->length, b->length);
1331     int i;
1332     SwsVector *vec= sws_getConstVec(0.0, length);
1333
1334     if (!vec)
1335         return NULL;
1336
1337     for (i=0; i<a->length; i++) vec->coeff[i + (length-1)/2 - (a->length-1)/2]+= a->coeff[i];
1338     for (i=0; i<b->length; i++) vec->coeff[i + (length-1)/2 - (b->length-1)/2]-= b->coeff[i];
1339
1340     return vec;
1341 }
1342
1343 /* shift left / or right if "shift" is negative */
1344 static SwsVector *sws_getShiftedVec(SwsVector *a, int shift)
1345 {
1346     int length= a->length + FFABS(shift)*2;
1347     int i;
1348     SwsVector *vec= sws_getConstVec(0.0, length);
1349
1350     if (!vec)
1351         return NULL;
1352
1353     for (i=0; i<a->length; i++) {
1354         vec->coeff[i + (length-1)/2 - (a->length-1)/2 - shift]= a->coeff[i];
1355     }
1356
1357     return vec;
1358 }
1359
1360 void sws_shiftVec(SwsVector *a, int shift)
1361 {
1362     SwsVector *shifted= sws_getShiftedVec(a, shift);
1363     av_free(a->coeff);
1364     a->coeff= shifted->coeff;
1365     a->length= shifted->length;
1366     av_free(shifted);
1367 }
1368
1369 void sws_addVec(SwsVector *a, SwsVector *b)
1370 {
1371     SwsVector *sum= sws_sumVec(a, b);
1372     av_free(a->coeff);
1373     a->coeff= sum->coeff;
1374     a->length= sum->length;
1375     av_free(sum);
1376 }
1377
1378 void sws_subVec(SwsVector *a, SwsVector *b)
1379 {
1380     SwsVector *diff= sws_diffVec(a, b);
1381     av_free(a->coeff);
1382     a->coeff= diff->coeff;
1383     a->length= diff->length;
1384     av_free(diff);
1385 }
1386
1387 void sws_convVec(SwsVector *a, SwsVector *b)
1388 {
1389     SwsVector *conv= sws_getConvVec(a, b);
1390     av_free(a->coeff);
1391     a->coeff= conv->coeff;
1392     a->length= conv->length;
1393     av_free(conv);
1394 }
1395
1396 SwsVector *sws_cloneVec(SwsVector *a)
1397 {
1398     int i;
1399     SwsVector *vec= sws_allocVec(a->length);
1400
1401     if (!vec)
1402         return NULL;
1403
1404     for (i=0; i<a->length; i++) vec->coeff[i]= a->coeff[i];
1405
1406     return vec;
1407 }
1408
1409 void sws_printVec2(SwsVector *a, AVClass *log_ctx, int log_level)
1410 {
1411     int i;
1412     double max=0;
1413     double min=0;
1414     double range;
1415
1416     for (i=0; i<a->length; i++)
1417         if (a->coeff[i]>max) max= a->coeff[i];
1418
1419     for (i=0; i<a->length; i++)
1420         if (a->coeff[i]<min) min= a->coeff[i];
1421
1422     range= max - min;
1423
1424     for (i=0; i<a->length; i++) {
1425         int x= (int)((a->coeff[i]-min)*60.0/range +0.5);
1426         av_log(log_ctx, log_level, "%1.3f ", a->coeff[i]);
1427         for (;x>0; x--) av_log(log_ctx, log_level, " ");
1428         av_log(log_ctx, log_level, "|\n");
1429     }
1430 }
1431
1432 void sws_freeVec(SwsVector *a)
1433 {
1434     if (!a) return;
1435     av_freep(&a->coeff);
1436     a->length=0;
1437     av_free(a);
1438 }
1439
1440 void sws_freeFilter(SwsFilter *filter)
1441 {
1442     if (!filter) return;
1443
1444     if (filter->lumH) sws_freeVec(filter->lumH);
1445     if (filter->lumV) sws_freeVec(filter->lumV);
1446     if (filter->chrH) sws_freeVec(filter->chrH);
1447     if (filter->chrV) sws_freeVec(filter->chrV);
1448     av_free(filter);
1449 }
1450
1451 void sws_freeContext(SwsContext *c)
1452 {
1453     int i;
1454     if (!c) return;
1455
1456     if (c->lumPixBuf) {
1457         for (i=0; i<c->vLumBufSize; i++)
1458             av_freep(&c->lumPixBuf[i]);
1459         av_freep(&c->lumPixBuf);
1460     }
1461
1462     if (c->chrUPixBuf) {
1463         for (i=0; i<c->vChrBufSize; i++)
1464             av_freep(&c->chrUPixBuf[i]);
1465         av_freep(&c->chrUPixBuf);
1466         av_freep(&c->chrVPixBuf);
1467     }
1468
1469     if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf) {
1470         for (i=0; i<c->vLumBufSize; i++)
1471             av_freep(&c->alpPixBuf[i]);
1472         av_freep(&c->alpPixBuf);
1473     }
1474
1475     av_freep(&c->vLumFilter);
1476     av_freep(&c->vChrFilter);
1477     av_freep(&c->hLumFilter);
1478     av_freep(&c->hChrFilter);
1479 #if HAVE_ALTIVEC
1480     av_freep(&c->vYCoeffsBank);
1481     av_freep(&c->vCCoeffsBank);
1482 #endif
1483
1484     av_freep(&c->vLumFilterPos);
1485     av_freep(&c->vChrFilterPos);
1486     av_freep(&c->hLumFilterPos);
1487     av_freep(&c->hChrFilterPos);
1488
1489 #if HAVE_MMX
1490 #ifdef MAP_ANONYMOUS
1491     if (c->lumMmx2FilterCode) munmap(c->lumMmx2FilterCode, c->lumMmx2FilterCodeSize);
1492     if (c->chrMmx2FilterCode) munmap(c->chrMmx2FilterCode, c->chrMmx2FilterCodeSize);
1493 #elif HAVE_VIRTUALALLOC
1494     if (c->lumMmx2FilterCode) VirtualFree(c->lumMmx2FilterCode, 0, MEM_RELEASE);
1495     if (c->chrMmx2FilterCode) VirtualFree(c->chrMmx2FilterCode, 0, MEM_RELEASE);
1496 #else
1497     av_free(c->lumMmx2FilterCode);
1498     av_free(c->chrMmx2FilterCode);
1499 #endif
1500     c->lumMmx2FilterCode=NULL;
1501     c->chrMmx2FilterCode=NULL;
1502 #endif /* HAVE_MMX */
1503
1504     av_freep(&c->yuvTable);
1505     av_freep(&c->formatConvBuffer);
1506
1507     av_free(c);
1508 }
1509
1510 struct SwsContext *sws_getCachedContext(struct SwsContext *context,
1511                                         int srcW, int srcH, enum PixelFormat srcFormat,
1512                                         int dstW, int dstH, enum PixelFormat dstFormat, int flags,
1513                                         SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param)
1514 {
1515     static const double default_param[2] = {SWS_PARAM_DEFAULT, SWS_PARAM_DEFAULT};
1516
1517     if (!param)
1518         param = default_param;
1519
1520     if (context &&
1521         (context->srcW      != srcW      ||
1522          context->srcH      != srcH      ||
1523          context->srcFormat != srcFormat ||
1524          context->dstW      != dstW      ||
1525          context->dstH      != dstH      ||
1526          context->dstFormat != dstFormat ||
1527          context->flags     != flags     ||
1528          context->param[0]  != param[0]  ||
1529          context->param[1]  != param[1])) {
1530         sws_freeContext(context);
1531         context = NULL;
1532     }
1533
1534     if (!context) {
1535         if (!(context = sws_alloc_context()))
1536             return NULL;
1537         context->srcW      = srcW;
1538         context->srcH      = srcH;
1539         context->srcRange  = handle_jpeg(&srcFormat);
1540         context->srcFormat = srcFormat;
1541         context->dstW      = dstW;
1542         context->dstH      = dstH;
1543         context->dstRange  = handle_jpeg(&dstFormat);
1544         context->dstFormat = dstFormat;
1545         context->flags     = flags;
1546         context->param[0]  = param[0];
1547         context->param[1]  = param[1];
1548         sws_setColorspaceDetails(context, ff_yuv2rgb_coeffs[SWS_CS_DEFAULT], context->srcRange, ff_yuv2rgb_coeffs[SWS_CS_DEFAULT] /* FIXME*/, context->dstRange, 0, 1<<16, 1<<16);
1549         if (sws_init_context(context, srcFilter, dstFilter) < 0) {
1550             sws_freeContext(context);
1551             return NULL;
1552         }
1553     }
1554     return context;
1555 }
1556