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