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