OSDN Git Service

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