OSDN Git Service

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