]> git.sesse.net Git - ffmpeg/blob - libswscale/swscale.c
Merge remote branch 'qatar/master'
[ffmpeg] / libswscale / swscale.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 /*
22   supported Input formats: YV12, I420/IYUV, YUY2, UYVY, BGR32, BGR32_1, BGR24, BGR16, BGR15, RGB32, RGB32_1, RGB24, Y8/Y800, YVU9/IF09, PAL8
23   supported output formats: YV12, I420/IYUV, YUY2, UYVY, {BGR,RGB}{1,4,8,15,16,24,32}, Y8/Y800, YVU9/IF09
24   {BGR,RGB}{1,4,8,15,16} support dithering
25
26   unscaled special converters (YV12=I420=IYUV, Y800=Y8)
27   YV12 -> {BGR,RGB}{1,4,8,12,15,16,24,32}
28   x -> x
29   YUV9 -> YV12
30   YUV9/YV12 -> Y800
31   Y800 -> YUV9/YV12
32   BGR24 -> BGR32 & RGB24 -> RGB32
33   BGR32 -> BGR24 & RGB32 -> RGB24
34   BGR15 -> BGR16
35 */
36
37 /*
38 tested special converters (most are tested actually, but I did not write it down ...)
39  YV12 -> BGR12/BGR16
40  YV12 -> YV12
41  BGR15 -> BGR16
42  BGR16 -> BGR16
43  YVU9 -> YV12
44
45 untested special converters
46   YV12/I420 -> BGR15/BGR24/BGR32 (it is the yuv2rgb stuff, so it should be OK)
47   YV12/I420 -> YV12/I420
48   YUY2/BGR15/BGR24/BGR32/RGB24/RGB32 -> same format
49   BGR24 -> BGR32 & RGB24 -> RGB32
50   BGR32 -> BGR24 & RGB32 -> RGB24
51   BGR24 -> YV12
52 */
53
54 #include <inttypes.h>
55 #include <string.h>
56 #include <math.h>
57 #include <stdio.h>
58 #include "config.h"
59 #include <assert.h>
60 #include "swscale.h"
61 #include "swscale_internal.h"
62 #include "rgb2rgb.h"
63 #include "libavutil/intreadwrite.h"
64 #include "libavutil/x86_cpu.h"
65 #include "libavutil/avutil.h"
66 #include "libavutil/mathematics.h"
67 #include "libavutil/bswap.h"
68 #include "libavutil/pixdesc.h"
69
70 #undef MOVNTQ
71 #undef PAVGB
72
73 //#undef HAVE_MMX2
74 //#define HAVE_AMD3DNOW
75 //#undef HAVE_MMX
76 //#undef ARCH_X86
77 #define DITHER1XBPP
78
79 #define isPacked(x)         (       \
80            (x)==PIX_FMT_PAL8        \
81         || (x)==PIX_FMT_YUYV422     \
82         || (x)==PIX_FMT_UYVY422     \
83         || (x)==PIX_FMT_GRAY8A       \
84         || isAnyRGB(x)              \
85     )
86
87 #define RGB2YUV_SHIFT 15
88 #define BY ( (int)(0.114*219/255*(1<<RGB2YUV_SHIFT)+0.5))
89 #define BV (-(int)(0.081*224/255*(1<<RGB2YUV_SHIFT)+0.5))
90 #define BU ( (int)(0.500*224/255*(1<<RGB2YUV_SHIFT)+0.5))
91 #define GY ( (int)(0.587*219/255*(1<<RGB2YUV_SHIFT)+0.5))
92 #define GV (-(int)(0.419*224/255*(1<<RGB2YUV_SHIFT)+0.5))
93 #define GU (-(int)(0.331*224/255*(1<<RGB2YUV_SHIFT)+0.5))
94 #define RY ( (int)(0.299*219/255*(1<<RGB2YUV_SHIFT)+0.5))
95 #define RV ( (int)(0.500*224/255*(1<<RGB2YUV_SHIFT)+0.5))
96 #define RU (-(int)(0.169*224/255*(1<<RGB2YUV_SHIFT)+0.5))
97
98 static const double rgb2yuv_table[8][9]={
99     {0.7152, 0.0722, 0.2126, -0.386, 0.5, -0.115, -0.454, -0.046, 0.5}, //ITU709
100     {0.7152, 0.0722, 0.2126, -0.386, 0.5, -0.115, -0.454, -0.046, 0.5}, //ITU709
101     {0.587 , 0.114 , 0.299 , -0.331, 0.5, -0.169, -0.419, -0.081, 0.5}, //DEFAULT / ITU601 / ITU624 / SMPTE 170M
102     {0.587 , 0.114 , 0.299 , -0.331, 0.5, -0.169, -0.419, -0.081, 0.5}, //DEFAULT / ITU601 / ITU624 / SMPTE 170M
103     {0.59  , 0.11  , 0.30  , -0.331, 0.5, -0.169, -0.421, -0.079, 0.5}, //FCC
104     {0.587 , 0.114 , 0.299 , -0.331, 0.5, -0.169, -0.419, -0.081, 0.5}, //DEFAULT / ITU601 / ITU624 / SMPTE 170M
105     {0.587 , 0.114 , 0.299 , -0.331, 0.5, -0.169, -0.419, -0.081, 0.5}, //DEFAULT / ITU601 / ITU624 / SMPTE 170M
106     {0.701 , 0.087 , 0.212 , -0.384, 0.5, -0.116, -0.445, -0.055, 0.5}, //SMPTE 240M
107 };
108
109 /*
110 NOTES
111 Special versions: fast Y 1:1 scaling (no interpolation in y direction)
112
113 TODO
114 more intelligent misalignment avoidance for the horizontal scaler
115 write special vertical cubic upscale version
116 optimize C code (YV12 / minmax)
117 add support for packed pixel YUV input & output
118 add support for Y8 output
119 optimize BGR24 & BGR32
120 add BGR4 output support
121 write special BGR->BGR scaler
122 */
123
124 #if ARCH_X86
125 DECLARE_ASM_CONST(8, uint64_t, bF8)=       0xF8F8F8F8F8F8F8F8LL;
126 DECLARE_ASM_CONST(8, uint64_t, bFC)=       0xFCFCFCFCFCFCFCFCLL;
127 DECLARE_ASM_CONST(8, uint64_t, w10)=       0x0010001000100010LL;
128 DECLARE_ASM_CONST(8, uint64_t, w02)=       0x0002000200020002LL;
129 DECLARE_ASM_CONST(8, uint64_t, bm00001111)=0x00000000FFFFFFFFLL;
130 DECLARE_ASM_CONST(8, uint64_t, bm00000111)=0x0000000000FFFFFFLL;
131 DECLARE_ASM_CONST(8, uint64_t, bm11111000)=0xFFFFFFFFFF000000LL;
132 DECLARE_ASM_CONST(8, uint64_t, bm01010101)=0x00FF00FF00FF00FFLL;
133
134 const DECLARE_ALIGNED(8, uint64_t, ff_dither4)[2] = {
135         0x0103010301030103LL,
136         0x0200020002000200LL,};
137
138 const DECLARE_ALIGNED(8, uint64_t, ff_dither8)[2] = {
139         0x0602060206020602LL,
140         0x0004000400040004LL,};
141
142 DECLARE_ASM_CONST(8, uint64_t, b16Mask)=   0x001F001F001F001FLL;
143 DECLARE_ASM_CONST(8, uint64_t, g16Mask)=   0x07E007E007E007E0LL;
144 DECLARE_ASM_CONST(8, uint64_t, r16Mask)=   0xF800F800F800F800LL;
145 DECLARE_ASM_CONST(8, uint64_t, b15Mask)=   0x001F001F001F001FLL;
146 DECLARE_ASM_CONST(8, uint64_t, g15Mask)=   0x03E003E003E003E0LL;
147 DECLARE_ASM_CONST(8, uint64_t, r15Mask)=   0x7C007C007C007C00LL;
148
149 DECLARE_ALIGNED(8, const uint64_t, ff_M24A)         = 0x00FF0000FF0000FFLL;
150 DECLARE_ALIGNED(8, const uint64_t, ff_M24B)         = 0xFF0000FF0000FF00LL;
151 DECLARE_ALIGNED(8, const uint64_t, ff_M24C)         = 0x0000FF0000FF0000LL;
152
153 #ifdef FAST_BGR2YV12
154 DECLARE_ALIGNED(8, const uint64_t, ff_bgr2YCoeff)   = 0x000000210041000DULL;
155 DECLARE_ALIGNED(8, const uint64_t, ff_bgr2UCoeff)   = 0x0000FFEEFFDC0038ULL;
156 DECLARE_ALIGNED(8, const uint64_t, ff_bgr2VCoeff)   = 0x00000038FFD2FFF8ULL;
157 #else
158 DECLARE_ALIGNED(8, const uint64_t, ff_bgr2YCoeff)   = 0x000020E540830C8BULL;
159 DECLARE_ALIGNED(8, const uint64_t, ff_bgr2UCoeff)   = 0x0000ED0FDAC23831ULL;
160 DECLARE_ALIGNED(8, const uint64_t, ff_bgr2VCoeff)   = 0x00003831D0E6F6EAULL;
161 #endif /* FAST_BGR2YV12 */
162 DECLARE_ALIGNED(8, const uint64_t, ff_bgr2YOffset)  = 0x1010101010101010ULL;
163 DECLARE_ALIGNED(8, const uint64_t, ff_bgr2UVOffset) = 0x8080808080808080ULL;
164 DECLARE_ALIGNED(8, const uint64_t, ff_w1111)        = 0x0001000100010001ULL;
165
166 DECLARE_ASM_CONST(8, uint64_t, ff_bgr24toY1Coeff) = 0x0C88000040870C88ULL;
167 DECLARE_ASM_CONST(8, uint64_t, ff_bgr24toY2Coeff) = 0x20DE4087000020DEULL;
168 DECLARE_ASM_CONST(8, uint64_t, ff_rgb24toY1Coeff) = 0x20DE0000408720DEULL;
169 DECLARE_ASM_CONST(8, uint64_t, ff_rgb24toY2Coeff) = 0x0C88408700000C88ULL;
170 DECLARE_ASM_CONST(8, uint64_t, ff_bgr24toYOffset) = 0x0008400000084000ULL;
171
172 DECLARE_ASM_CONST(8, uint64_t, ff_bgr24toUV)[2][4] = {
173     {0x38380000DAC83838ULL, 0xECFFDAC80000ECFFULL, 0xF6E40000D0E3F6E4ULL, 0x3838D0E300003838ULL},
174     {0xECFF0000DAC8ECFFULL, 0x3838DAC800003838ULL, 0x38380000D0E33838ULL, 0xF6E4D0E30000F6E4ULL},
175 };
176
177 DECLARE_ASM_CONST(8, uint64_t, ff_bgr24toUVOffset)= 0x0040400000404000ULL;
178
179 #endif /* ARCH_X86 */
180
181 DECLARE_ALIGNED(8, static const uint8_t, dither_2x2_4)[2][8]={
182 {  1,   3,   1,   3,   1,   3,   1,   3, },
183 {  2,   0,   2,   0,   2,   0,   2,   0, },
184 };
185
186 DECLARE_ALIGNED(8, static const uint8_t, dither_2x2_8)[2][8]={
187 {  6,   2,   6,   2,   6,   2,   6,   2, },
188 {  0,   4,   0,   4,   0,   4,   0,   4, },
189 };
190
191 DECLARE_ALIGNED(8, const uint8_t, dither_4x4_16)[4][8]={
192 {  8,   4,  11,   7,   8,   4,  11,   7, },
193 {  2,  14,   1,  13,   2,  14,   1,  13, },
194 { 10,   6,   9,   5,  10,   6,   9,   5, },
195 {  0,  12,   3,  15,   0,  12,   3,  15, },
196 };
197
198 DECLARE_ALIGNED(8, const uint8_t, dither_8x8_32)[8][8]={
199 { 17,   9,  23,  15,  16,   8,  22,  14, },
200 {  5,  29,   3,  27,   4,  28,   2,  26, },
201 { 21,  13,  19,  11,  20,  12,  18,  10, },
202 {  0,  24,   6,  30,   1,  25,   7,  31, },
203 { 16,   8,  22,  14,  17,   9,  23,  15, },
204 {  4,  28,   2,  26,   5,  29,   3,  27, },
205 { 20,  12,  18,  10,  21,  13,  19,  11, },
206 {  1,  25,   7,  31,   0,  24,   6,  30, },
207 };
208
209 DECLARE_ALIGNED(8, const uint8_t, dither_8x8_73)[8][8]={
210 {  0,  55,  14,  68,   3,  58,  17,  72, },
211 { 37,  18,  50,  32,  40,  22,  54,  35, },
212 {  9,  64,   5,  59,  13,  67,   8,  63, },
213 { 46,  27,  41,  23,  49,  31,  44,  26, },
214 {  2,  57,  16,  71,   1,  56,  15,  70, },
215 { 39,  21,  52,  34,  38,  19,  51,  33, },
216 { 11,  66,   7,  62,  10,  65,   6,  60, },
217 { 48,  30,  43,  25,  47,  29,  42,  24, },
218 };
219
220 #if 1
221 DECLARE_ALIGNED(8, const uint8_t, dither_8x8_220)[8][8]={
222 {117,  62, 158, 103, 113,  58, 155, 100, },
223 { 34, 199,  21, 186,  31, 196,  17, 182, },
224 {144,  89, 131,  76, 141,  86, 127,  72, },
225 {  0, 165,  41, 206,  10, 175,  52, 217, },
226 {110,  55, 151,  96, 120,  65, 162, 107, },
227 { 28, 193,  14, 179,  38, 203,  24, 189, },
228 {138,  83, 124,  69, 148,  93, 134,  79, },
229 {  7, 172,  48, 213,   3, 168,  45, 210, },
230 };
231 #elif 1
232 // tries to correct a gamma of 1.5
233 DECLARE_ALIGNED(8, const uint8_t, dither_8x8_220)[8][8]={
234 {  0, 143,  18, 200,   2, 156,  25, 215, },
235 { 78,  28, 125,  64,  89,  36, 138,  74, },
236 { 10, 180,   3, 161,  16, 195,   8, 175, },
237 {109,  51,  93,  38, 121,  60, 105,  47, },
238 {  1, 152,  23, 210,   0, 147,  20, 205, },
239 { 85,  33, 134,  71,  81,  30, 130,  67, },
240 { 14, 190,   6, 171,  12, 185,   5, 166, },
241 {117,  57, 101,  44, 113,  54,  97,  41, },
242 };
243 #elif 1
244 // tries to correct a gamma of 2.0
245 DECLARE_ALIGNED(8, const uint8_t, dither_8x8_220)[8][8]={
246 {  0, 124,   8, 193,   0, 140,  12, 213, },
247 { 55,  14, 104,  42,  66,  19, 119,  52, },
248 {  3, 168,   1, 145,   6, 187,   3, 162, },
249 { 86,  31,  70,  21,  99,  39,  82,  28, },
250 {  0, 134,  11, 206,   0, 129,   9, 200, },
251 { 62,  17, 114,  48,  58,  16, 109,  45, },
252 {  5, 181,   2, 157,   4, 175,   1, 151, },
253 { 95,  36,  78,  26,  90,  34,  74,  24, },
254 };
255 #else
256 // tries to correct a gamma of 2.5
257 DECLARE_ALIGNED(8, const uint8_t, dither_8x8_220)[8][8]={
258 {  0, 107,   3, 187,   0, 125,   6, 212, },
259 { 39,   7,  86,  28,  49,  11, 102,  36, },
260 {  1, 158,   0, 131,   3, 180,   1, 151, },
261 { 68,  19,  52,  12,  81,  25,  64,  17, },
262 {  0, 119,   5, 203,   0, 113,   4, 195, },
263 { 45,   9,  96,  33,  42,   8,  91,  30, },
264 {  2, 172,   1, 144,   2, 165,   0, 137, },
265 { 77,  23,  60,  15,  72,  21,  56,  14, },
266 };
267 #endif
268
269 DECLARE_ALIGNED(8, const uint8_t, dithers)[8][8][8]={
270 {
271   {   0,  1,  0,  1,  0,  1,  0,  1,},
272   {   1,  0,  1,  0,  1,  0,  1,  0,},
273   {   0,  1,  0,  1,  0,  1,  0,  1,},
274   {   1,  0,  1,  0,  1,  0,  1,  0,},
275   {   0,  1,  0,  1,  0,  1,  0,  1,},
276   {   1,  0,  1,  0,  1,  0,  1,  0,},
277   {   0,  1,  0,  1,  0,  1,  0,  1,},
278   {   1,  0,  1,  0,  1,  0,  1,  0,},
279 },{
280   {   1,  2,  1,  2,  1,  2,  1,  2,},
281   {   3,  0,  3,  0,  3,  0,  3,  0,},
282   {   1,  2,  1,  2,  1,  2,  1,  2,},
283   {   3,  0,  3,  0,  3,  0,  3,  0,},
284   {   1,  2,  1,  2,  1,  2,  1,  2,},
285   {   3,  0,  3,  0,  3,  0,  3,  0,},
286   {   1,  2,  1,  2,  1,  2,  1,  2,},
287   {   3,  0,  3,  0,  3,  0,  3,  0,},
288 },{
289   {   2,  4,  3,  5,  2,  4,  3,  5,},
290   {   6,  0,  7,  1,  6,  0,  7,  1,},
291   {   3,  5,  2,  4,  3,  5,  2,  4,},
292   {   7,  1,  6,  0,  7,  1,  6,  0,},
293   {   2,  4,  3,  5,  2,  4,  3,  5,},
294   {   6,  0,  7,  1,  6,  0,  7,  1,},
295   {   3,  5,  2,  4,  3,  5,  2,  4,},
296   {   7,  1,  6,  0,  7,  1,  6,  0,},
297 },{
298   {   4,  8,  7, 11,  4,  8,  7, 11,},
299   {  12,  0, 15,  3, 12,  0, 15,  3,},
300   {   6, 10,  5,  9,  6, 10,  5,  9,},
301   {  14,  2, 13,  1, 14,  2, 13,  1,},
302   {   4,  8,  7, 11,  4,  8,  7, 11,},
303   {  12,  0, 15,  3, 12,  0, 15,  3,},
304   {   6, 10,  5,  9,  6, 10,  5,  9,},
305   {  14,  2, 13,  1, 14,  2, 13,  1,},
306 },{
307   {   9, 17, 15, 23,  8, 16, 14, 22,},
308   {  25,  1, 31,  7, 24,  0, 30,  6,},
309   {  13, 21, 11, 19, 12, 20, 10, 18,},
310   {  29,  5, 27,  3, 28,  4, 26,  2,},
311   {   8, 16, 14, 22,  9, 17, 15, 23,},
312   {  24,  0, 30,  6, 25,  1, 31,  7,},
313   {  12, 20, 10, 18, 13, 21, 11, 19,},
314   {  28,  4, 26,  2, 29,  5, 27,  3,},
315 },{
316   {  18, 34, 30, 46, 17, 33, 29, 45,},
317   {  50,  2, 62, 14, 49,  1, 61, 13,},
318   {  26, 42, 22, 38, 25, 41, 21, 37,},
319   {  58, 10, 54,  6, 57,  9, 53,  5,},
320   {  16, 32, 28, 44, 19, 35, 31, 47,},
321   {  48,  0, 60, 12, 51,  3, 63, 15,},
322   {  24, 40, 20, 36, 27, 43, 23, 39,},
323   {  56,  8, 52,  4, 59, 11, 55,  7,},
324 },{
325   {  18, 34, 30, 46, 17, 33, 29, 45,},
326   {  50,  2, 62, 14, 49,  1, 61, 13,},
327   {  26, 42, 22, 38, 25, 41, 21, 37,},
328   {  58, 10, 54,  6, 57,  9, 53,  5,},
329   {  16, 32, 28, 44, 19, 35, 31, 47,},
330   {  48,  0, 60, 12, 51,  3, 63, 15,},
331   {  24, 40, 20, 36, 27, 43, 23, 39,},
332   {  56,  8, 52,  4, 59, 11, 55,  7,},
333 },{
334   {  36, 68, 60, 92, 34, 66, 58, 90,},
335   { 100,  4,124, 28, 98,  2,122, 26,},
336   {  52, 84, 44, 76, 50, 82, 42, 74,},
337   { 116, 20,108, 12,114, 18,106, 10,},
338   {  32, 64, 56, 88, 38, 70, 62, 94,},
339   {  96,  0,120, 24,102,  6,126, 30,},
340   {  48, 80, 40, 72, 54, 86, 46, 78,},
341   { 112, 16,104,  8,118, 22,110, 14,},
342 }};
343
344 uint16_t dither_scale[15][16]={
345 {    2,    3,    3,    5,    5,    5,    5,    5,    5,    5,    5,    5,    5,    5,    5,    5,},
346 {    2,    3,    7,    7,   13,   13,   25,   25,   25,   25,   25,   25,   25,   25,   25,   25,},
347 {    3,    3,    4,   15,   15,   29,   57,   57,   57,  113,  113,  113,  113,  113,  113,  113,},
348 {    3,    4,    4,    5,   31,   31,   61,  121,  241,  241,  241,  241,  481,  481,  481,  481,},
349 {    3,    4,    5,    5,    6,   63,   63,  125,  249,  497,  993,  993,  993,  993,  993, 1985,},
350 {    3,    5,    6,    6,    6,    7,  127,  127,  253,  505, 1009, 2017, 4033, 4033, 4033, 4033,},
351 {    3,    5,    6,    7,    7,    7,    8,  255,  255,  509, 1017, 2033, 4065, 8129,16257,16257,},
352 {    3,    5,    6,    8,    8,    8,    8,    9,  511,  511, 1021, 2041, 4081, 8161,16321,32641,},
353 {    3,    5,    7,    8,    9,    9,    9,    9,   10, 1023, 1023, 2045, 4089, 8177,16353,32705,},
354 {    3,    5,    7,    8,   10,   10,   10,   10,   10,   11, 2047, 2047, 4093, 8185,16369,32737,},
355 {    3,    5,    7,    8,   10,   11,   11,   11,   11,   11,   12, 4095, 4095, 8189,16377,32753,},
356 {    3,    5,    7,    9,   10,   12,   12,   12,   12,   12,   12,   13, 8191, 8191,16381,32761,},
357 {    3,    5,    7,    9,   10,   12,   13,   13,   13,   13,   13,   13,   14,16383,16383,32765,},
358 {    3,    5,    7,    9,   10,   12,   14,   14,   14,   14,   14,   14,   14,   15,32767,32767,},
359 {    3,    5,    7,    9,   11,   12,   14,   15,   15,   15,   15,   15,   15,   15,   16,65535,},
360 };
361
362 static av_always_inline void yuv2yuvX16inC_template(const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
363                                                     const int16_t *chrFilter, const int16_t **chrSrc, int chrFilterSize,
364                                                     const int16_t **alpSrc, uint16_t *dest, uint16_t *uDest, uint16_t *vDest, uint16_t *aDest,
365                                                     int dstW, int chrDstW, int big_endian)
366 {
367     //FIXME Optimize (just quickly written not optimized..)
368     int i;
369
370 #define output_pixel(pos, val) \
371     if (big_endian) { \
372         if (output_bits == 16) { \
373             AV_WB16(pos, av_clip_uint16(val >> shift)); \
374         } else { \
375             AV_WB16(pos, av_clip_uintp2(val >> shift, output_bits)); \
376         } \
377     } else { \
378         if (output_bits == 16) { \
379             AV_WL16(pos, av_clip_uint16(val >> shift)); \
380         } else { \
381             AV_WL16(pos, av_clip_uintp2(val >> shift, output_bits)); \
382         } \
383     }
384     for (i = 0; i < dstW; i++) {
385         int val = 1 << 10;
386         int j;
387
388         for (j = 0; j < lumFilterSize; j++)
389             val += lumSrc[j][i] * lumFilter[j];
390
391         output_pixel(&dest[i], val);
392     }
393
394     if (uDest) {
395         for (i = 0; i < chrDstW; i++) {
396             int u = 1 << 10;
397             int v = 1 << 10;
398             int j;
399
400             for (j = 0; j < chrFilterSize; j++) {
401                 u += chrSrc[j][i       ] * chrFilter[j];
402                 v += chrSrc[j][i + VOFW] * chrFilter[j];
403             }
404
405             output_pixel(&uDest[i], u);
406             output_pixel(&vDest[i], v);
407         }
408     }
409
410     if (CONFIG_SWSCALE_ALPHA && aDest) {
411         for (i = 0; i < dstW; i++) {
412             int val = 1 << 10;
413             int j;
414
415             for (j = 0; j < lumFilterSize; j++)
416                 val += alpSrc[j][i] * lumFilter[j];
417
418             output_pixel(&aDest[i], val);
419         }
420     }
421 }
422
423 static av_always_inline void yuv2yuvXNinC_template(const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
424                                                    const int16_t *chrFilter, const int16_t **chrSrc, int chrFilterSize,
425                                                    const int16_t **alpSrc, uint16_t *dest, uint16_t *uDest, uint16_t *vDest, uint16_t *aDest,
426                                                    int dstW, int chrDstW, int big_endian, int depth)
427 {
428     //FIXME Optimize (just quickly written not optimized..)
429     int i;
430
431     for (i = 0; i < dstW; i++) {
432         int val = 1 << (26-depth);
433         int j;
434
435         for (j = 0; j < lumFilterSize; j++)
436             val += lumSrc[j][i] * lumFilter[j];
437
438         if (big_endian) {
439             AV_WB16(&dest[i], av_clip(val >> (27-depth), 0, (1<<depth)-1));
440         } else {
441             AV_WL16(&dest[i], av_clip(val >> (27-depth), 0, (1<<depth)-1));
442         }
443     }
444
445     if (uDest) {
446         for (i = 0; i < chrDstW; i++) {
447             int u = 1 << (26-depth);
448             int v = 1 << (26-depth);
449             int j;
450
451             for (j = 0; j < chrFilterSize; j++) {
452                 u += chrSrc[j][i       ] * chrFilter[j];
453                 v += chrSrc[j][i + VOFW] * chrFilter[j];
454             }
455
456             if (big_endian) {
457                 AV_WB16(&uDest[i], av_clip(u >> (27-depth), 0, (1<<depth)-1));
458                 AV_WB16(&vDest[i], av_clip(v >> (27-depth), 0, (1<<depth)-1));
459             } else {
460                 AV_WL16(&uDest[i], av_clip(u >> (27-depth), 0, (1<<depth)-1));
461                 AV_WL16(&vDest[i], av_clip(v >> (27-depth), 0, (1<<depth)-1));
462             }
463         }
464     }
465 }
466
467 static inline void yuv2yuvX16inC(const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
468                                  const int16_t *chrFilter, const int16_t **chrSrc, int chrFilterSize,
469                                  const int16_t **alpSrc, uint16_t *dest, uint16_t *uDest, uint16_t *vDest, uint16_t *aDest, int dstW, int chrDstW,
470                                  enum PixelFormat dstFormat)
471 {
472     if (isNBPS(dstFormat)) {
473         const int depth = av_pix_fmt_descriptors[dstFormat].comp[0].depth_minus1+1;
474         yuv2yuvXNinC_template(lumFilter, lumSrc, lumFilterSize,
475                               chrFilter, chrSrc, chrFilterSize,
476                               alpSrc,
477                               dest, uDest, vDest, aDest,
478                               dstW, chrDstW, isBE(dstFormat), depth);
479     } else {
480         if (isBE(dstFormat)) {
481             yuv2yuvX16inC_template(lumFilter, lumSrc, lumFilterSize,
482                                    chrFilter, chrSrc, chrFilterSize,
483                                    alpSrc,
484                                    dest, uDest, vDest, aDest,
485                                    dstW, chrDstW, 1);
486         } else {
487             yuv2yuvX16inC_template(lumFilter, lumSrc, lumFilterSize,
488                                    chrFilter, chrSrc, chrFilterSize,
489                                    alpSrc,
490                                    dest, uDest, vDest, aDest,
491                                    dstW, chrDstW, 0);
492         }
493     }
494 }
495
496 static inline void yuv2yuvXinC(const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
497                                const int16_t *chrFilter, const int16_t **chrSrc, int chrFilterSize,
498                                const int16_t **alpSrc, uint8_t *dest, uint8_t *uDest, uint8_t *vDest, uint8_t *aDest, int dstW, int chrDstW)
499 {
500     //FIXME Optimize (just quickly written not optimized..)
501     int i;
502     for (i=0; i<dstW; i++) {
503         int val=1<<18;
504         int j;
505         for (j=0; j<lumFilterSize; j++)
506             val += lumSrc[j][i] * lumFilter[j];
507
508         dest[i]= av_clip_uint8(val>>19);
509     }
510
511     if (uDest)
512         for (i=0; i<chrDstW; i++) {
513             int u=1<<18;
514             int v=1<<18;
515             int j;
516             for (j=0; j<chrFilterSize; j++) {
517                 u += chrSrc[j][i] * chrFilter[j];
518                 v += chrSrc[j][i + VOFW] * chrFilter[j];
519             }
520
521             uDest[i]= av_clip_uint8(u>>19);
522             vDest[i]= av_clip_uint8(v>>19);
523         }
524
525     if (CONFIG_SWSCALE_ALPHA && aDest)
526         for (i=0; i<dstW; i++) {
527             int val=1<<18;
528             int j;
529             for (j=0; j<lumFilterSize; j++)
530                 val += alpSrc[j][i] * lumFilter[j];
531
532             aDest[i]= av_clip_uint8(val>>19);
533         }
534
535 }
536
537 static inline void yuv2nv12XinC(const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
538                                 const int16_t *chrFilter, const int16_t **chrSrc, int chrFilterSize,
539                                 uint8_t *dest, uint8_t *uDest, int dstW, int chrDstW, int dstFormat)
540 {
541     //FIXME Optimize (just quickly written not optimized..)
542     int i;
543     for (i=0; i<dstW; i++) {
544         int val=1<<18;
545         int j;
546         for (j=0; j<lumFilterSize; j++)
547             val += lumSrc[j][i] * lumFilter[j];
548
549         dest[i]= av_clip_uint8(val>>19);
550     }
551
552     if (!uDest)
553         return;
554
555     if (dstFormat == PIX_FMT_NV12)
556         for (i=0; i<chrDstW; i++) {
557             int u=1<<18;
558             int v=1<<18;
559             int j;
560             for (j=0; j<chrFilterSize; j++) {
561                 u += chrSrc[j][i] * chrFilter[j];
562                 v += chrSrc[j][i + VOFW] * chrFilter[j];
563             }
564
565             uDest[2*i]= av_clip_uint8(u>>19);
566             uDest[2*i+1]= av_clip_uint8(v>>19);
567         }
568     else
569         for (i=0; i<chrDstW; i++) {
570             int u=1<<18;
571             int v=1<<18;
572             int j;
573             for (j=0; j<chrFilterSize; j++) {
574                 u += chrSrc[j][i] * chrFilter[j];
575                 v += chrSrc[j][i + VOFW] * chrFilter[j];
576             }
577
578             uDest[2*i]= av_clip_uint8(v>>19);
579             uDest[2*i+1]= av_clip_uint8(u>>19);
580         }
581 }
582
583 #define YSCALE_YUV_2_PACKEDX_NOCLIP_C(type,alpha) \
584     for (i=0; i<(dstW>>1); i++) {\
585         int j;\
586         int Y1 = 1<<18;\
587         int Y2 = 1<<18;\
588         int U  = 1<<18;\
589         int V  = 1<<18;\
590         int av_unused A1, A2;\
591         type av_unused *r, *b, *g;\
592         const int i2= 2*i;\
593         \
594         for (j=0; j<lumFilterSize; j++) {\
595             Y1 += lumSrc[j][i2] * lumFilter[j];\
596             Y2 += lumSrc[j][i2+1] * lumFilter[j];\
597         }\
598         for (j=0; j<chrFilterSize; j++) {\
599             U += chrSrc[j][i] * chrFilter[j];\
600             V += chrSrc[j][i+VOFW] * chrFilter[j];\
601         }\
602         Y1>>=19;\
603         Y2>>=19;\
604         U >>=19;\
605         V >>=19;\
606         if (alpha) {\
607             A1 = 1<<18;\
608             A2 = 1<<18;\
609             for (j=0; j<lumFilterSize; j++) {\
610                 A1 += alpSrc[j][i2  ] * lumFilter[j];\
611                 A2 += alpSrc[j][i2+1] * lumFilter[j];\
612             }\
613             A1>>=19;\
614             A2>>=19;\
615         }
616
617 #define YSCALE_YUV_2_PACKEDX_C(type,alpha) \
618         YSCALE_YUV_2_PACKEDX_NOCLIP_C(type,alpha)\
619         if ((Y1|Y2|U|V)&256) {\
620             if (Y1>255)   Y1=255; \
621             else if (Y1<0)Y1=0;   \
622             if (Y2>255)   Y2=255; \
623             else if (Y2<0)Y2=0;   \
624             if (U>255)    U=255;  \
625             else if (U<0) U=0;    \
626             if (V>255)    V=255;  \
627             else if (V<0) V=0;    \
628         }\
629         if (alpha && ((A1|A2)&256)) {\
630             A1=av_clip_uint8(A1);\
631             A2=av_clip_uint8(A2);\
632         }
633
634 #define YSCALE_YUV_2_PACKEDX_FULL_C(rnd,alpha) \
635     for (i=0; i<dstW; i++) {\
636         int j;\
637         int Y = 0;\
638         int U = -128<<19;\
639         int V = -128<<19;\
640         int av_unused A;\
641         int R,G,B;\
642         \
643         for (j=0; j<lumFilterSize; j++) {\
644             Y += lumSrc[j][i     ] * lumFilter[j];\
645         }\
646         for (j=0; j<chrFilterSize; j++) {\
647             U += chrSrc[j][i     ] * chrFilter[j];\
648             V += chrSrc[j][i+VOFW] * chrFilter[j];\
649         }\
650         Y >>=10;\
651         U >>=10;\
652         V >>=10;\
653         if (alpha) {\
654             A = rnd;\
655             for (j=0; j<lumFilterSize; j++)\
656                 A += alpSrc[j][i     ] * lumFilter[j];\
657             A >>=19;\
658             if (A&256)\
659                 A = av_clip_uint8(A);\
660         }
661
662 #define YSCALE_YUV_2_RGBX_FULL_C(rnd,alpha) \
663     YSCALE_YUV_2_PACKEDX_FULL_C(rnd>>3,alpha)\
664         Y-= c->yuv2rgb_y_offset;\
665         Y*= c->yuv2rgb_y_coeff;\
666         Y+= rnd;\
667         R= Y + V*c->yuv2rgb_v2r_coeff;\
668         G= Y + V*c->yuv2rgb_v2g_coeff + U*c->yuv2rgb_u2g_coeff;\
669         B= Y +                          U*c->yuv2rgb_u2b_coeff;\
670         if ((R|G|B)&(0xC0000000)) {\
671             if (R>=(256<<22))   R=(256<<22)-1; \
672             else if (R<0)R=0;   \
673             if (G>=(256<<22))   G=(256<<22)-1; \
674             else if (G<0)G=0;   \
675             if (B>=(256<<22))   B=(256<<22)-1; \
676             else if (B<0)B=0;   \
677         }
678
679 #define YSCALE_YUV_2_GRAY16_C \
680     for (i=0; i<(dstW>>1); i++) {\
681         int j;\
682         int Y1 = 1<<18;\
683         int Y2 = 1<<18;\
684         int U  = 1<<18;\
685         int V  = 1<<18;\
686         \
687         const int i2= 2*i;\
688         \
689         for (j=0; j<lumFilterSize; j++) {\
690             Y1 += lumSrc[j][i2] * lumFilter[j];\
691             Y2 += lumSrc[j][i2+1] * lumFilter[j];\
692         }\
693         Y1>>=11;\
694         Y2>>=11;\
695         if ((Y1|Y2|U|V)&65536) {\
696             if (Y1>65535)   Y1=65535; \
697             else if (Y1<0)Y1=0;   \
698             if (Y2>65535)   Y2=65535; \
699             else if (Y2<0)Y2=0;   \
700         }
701
702 #define YSCALE_YUV_2_RGBX_C(type,alpha) \
703     YSCALE_YUV_2_PACKEDX_C(type,alpha)  /* FIXME fix tables so that clipping is not needed and then use _NOCLIP*/\
704     r = (type *)c->table_rV[V];   \
705     g = (type *)(c->table_gU[U] + c->table_gV[V]); \
706     b = (type *)c->table_bU[U];
707
708 #define YSCALE_YUV_2_PACKED2_C(type,alpha)   \
709     for (i=0; i<(dstW>>1); i++) { \
710         const int i2= 2*i;       \
711         int Y1= (buf0[i2  ]*yalpha1+buf1[i2  ]*yalpha)>>19;           \
712         int Y2= (buf0[i2+1]*yalpha1+buf1[i2+1]*yalpha)>>19;           \
713         int U= (uvbuf0[i     ]*uvalpha1+uvbuf1[i     ]*uvalpha)>>19;  \
714         int V= (uvbuf0[i+VOFW]*uvalpha1+uvbuf1[i+VOFW]*uvalpha)>>19;  \
715         type av_unused *r, *b, *g;                                    \
716         int av_unused A1, A2;                                         \
717         if (alpha) {\
718             A1= (abuf0[i2  ]*yalpha1+abuf1[i2  ]*yalpha)>>19;         \
719             A2= (abuf0[i2+1]*yalpha1+abuf1[i2+1]*yalpha)>>19;         \
720         }
721
722 #define YSCALE_YUV_2_GRAY16_2_C   \
723     for (i=0; i<(dstW>>1); i++) { \
724         const int i2= 2*i;       \
725         int Y1= (buf0[i2  ]*yalpha1+buf1[i2  ]*yalpha)>>11;           \
726         int Y2= (buf0[i2+1]*yalpha1+buf1[i2+1]*yalpha)>>11;
727
728 #define YSCALE_YUV_2_RGB2_C(type,alpha) \
729     YSCALE_YUV_2_PACKED2_C(type,alpha)\
730     r = (type *)c->table_rV[V];\
731     g = (type *)(c->table_gU[U] + c->table_gV[V]);\
732     b = (type *)c->table_bU[U];
733
734 #define YSCALE_YUV_2_PACKED1_C(type,alpha) \
735     for (i=0; i<(dstW>>1); i++) {\
736         const int i2= 2*i;\
737         int Y1= buf0[i2  ]>>7;\
738         int Y2= buf0[i2+1]>>7;\
739         int U= (uvbuf1[i     ])>>7;\
740         int V= (uvbuf1[i+VOFW])>>7;\
741         type av_unused *r, *b, *g;\
742         int av_unused A1, A2;\
743         if (alpha) {\
744             A1= abuf0[i2  ]>>7;\
745             A2= abuf0[i2+1]>>7;\
746         }
747
748 #define YSCALE_YUV_2_GRAY16_1_C \
749     for (i=0; i<(dstW>>1); i++) {\
750         const int i2= 2*i;\
751         int Y1= buf0[i2  ]<<1;\
752         int Y2= buf0[i2+1]<<1;
753
754 #define YSCALE_YUV_2_RGB1_C(type,alpha) \
755     YSCALE_YUV_2_PACKED1_C(type,alpha)\
756     r = (type *)c->table_rV[V];\
757     g = (type *)(c->table_gU[U] + c->table_gV[V]);\
758     b = (type *)c->table_bU[U];
759
760 #define YSCALE_YUV_2_PACKED1B_C(type,alpha) \
761     for (i=0; i<(dstW>>1); i++) {\
762         const int i2= 2*i;\
763         int Y1= buf0[i2  ]>>7;\
764         int Y2= buf0[i2+1]>>7;\
765         int U= (uvbuf0[i     ] + uvbuf1[i     ])>>8;\
766         int V= (uvbuf0[i+VOFW] + uvbuf1[i+VOFW])>>8;\
767         type av_unused *r, *b, *g;\
768         int av_unused A1, A2;\
769         if (alpha) {\
770             A1= abuf0[i2  ]>>7;\
771             A2= abuf0[i2+1]>>7;\
772         }
773
774 #define YSCALE_YUV_2_RGB1B_C(type,alpha) \
775     YSCALE_YUV_2_PACKED1B_C(type,alpha)\
776     r = (type *)c->table_rV[V];\
777     g = (type *)(c->table_gU[U] + c->table_gV[V]);\
778     b = (type *)c->table_bU[U];
779
780 #define YSCALE_YUV_2_MONO2_C \
781     const uint8_t * const d128=dither_8x8_220[y&7];\
782     uint8_t *g= c->table_gU[128] + c->table_gV[128];\
783     for (i=0; i<dstW-7; i+=8) {\
784         int acc;\
785         acc =       g[((buf0[i  ]*yalpha1+buf1[i  ]*yalpha)>>19) + d128[0]];\
786         acc+= acc + g[((buf0[i+1]*yalpha1+buf1[i+1]*yalpha)>>19) + d128[1]];\
787         acc+= acc + g[((buf0[i+2]*yalpha1+buf1[i+2]*yalpha)>>19) + d128[2]];\
788         acc+= acc + g[((buf0[i+3]*yalpha1+buf1[i+3]*yalpha)>>19) + d128[3]];\
789         acc+= acc + g[((buf0[i+4]*yalpha1+buf1[i+4]*yalpha)>>19) + d128[4]];\
790         acc+= acc + g[((buf0[i+5]*yalpha1+buf1[i+5]*yalpha)>>19) + d128[5]];\
791         acc+= acc + g[((buf0[i+6]*yalpha1+buf1[i+6]*yalpha)>>19) + d128[6]];\
792         acc+= acc + g[((buf0[i+7]*yalpha1+buf1[i+7]*yalpha)>>19) + d128[7]];\
793         ((uint8_t*)dest)[0]= c->dstFormat == PIX_FMT_MONOBLACK ? acc : ~acc;\
794         dest++;\
795     }
796
797 #define YSCALE_YUV_2_MONOX_C \
798     const uint8_t * const d128=dither_8x8_220[y&7];\
799     uint8_t *g= c->table_gU[128] + c->table_gV[128];\
800     int acc=0;\
801     for (i=0; i<dstW-1; i+=2) {\
802         int j;\
803         int Y1=1<<18;\
804         int Y2=1<<18;\
805 \
806         for (j=0; j<lumFilterSize; j++) {\
807             Y1 += lumSrc[j][i] * lumFilter[j];\
808             Y2 += lumSrc[j][i+1] * lumFilter[j];\
809         }\
810         Y1>>=19;\
811         Y2>>=19;\
812         if ((Y1|Y2)&256) {\
813             if (Y1>255)   Y1=255;\
814             else if (Y1<0)Y1=0;\
815             if (Y2>255)   Y2=255;\
816             else if (Y2<0)Y2=0;\
817         }\
818         acc+= acc + g[Y1+d128[(i+0)&7]];\
819         acc+= acc + g[Y2+d128[(i+1)&7]];\
820         if ((i&7)==6) {\
821             ((uint8_t*)dest)[0]= c->dstFormat == PIX_FMT_MONOBLACK ? acc : ~acc;\
822             dest++;\
823         }\
824     }
825
826 #define YSCALE_YUV_2_ANYRGB_C(func, func2, func_g16, func_monoblack)\
827     switch(c->dstFormat) {\
828     case PIX_FMT_RGB48BE:\
829     case PIX_FMT_RGB48LE:\
830         func(uint8_t,0)\
831             ((uint8_t*)dest)[ 0]= r[Y1];\
832             ((uint8_t*)dest)[ 1]= r[Y1];\
833             ((uint8_t*)dest)[ 2]= g[Y1];\
834             ((uint8_t*)dest)[ 3]= g[Y1];\
835             ((uint8_t*)dest)[ 4]= b[Y1];\
836             ((uint8_t*)dest)[ 5]= b[Y1];\
837             ((uint8_t*)dest)[ 6]= r[Y2];\
838             ((uint8_t*)dest)[ 7]= r[Y2];\
839             ((uint8_t*)dest)[ 8]= g[Y2];\
840             ((uint8_t*)dest)[ 9]= g[Y2];\
841             ((uint8_t*)dest)[10]= b[Y2];\
842             ((uint8_t*)dest)[11]= b[Y2];\
843             dest+=12;\
844         }\
845         break;\
846     case PIX_FMT_BGR48BE:\
847     case PIX_FMT_BGR48LE:\
848         func(uint8_t,0)\
849             ((uint8_t*)dest)[ 0] = ((uint8_t*)dest)[ 1] = b[Y1];\
850             ((uint8_t*)dest)[ 2] = ((uint8_t*)dest)[ 3] = g[Y1];\
851             ((uint8_t*)dest)[ 4] = ((uint8_t*)dest)[ 5] = r[Y1];\
852             ((uint8_t*)dest)[ 6] = ((uint8_t*)dest)[ 7] = b[Y2];\
853             ((uint8_t*)dest)[ 8] = ((uint8_t*)dest)[ 9] = g[Y2];\
854             ((uint8_t*)dest)[10] = ((uint8_t*)dest)[11] = r[Y2];\
855             dest+=12;\
856         }\
857         break;\
858     case PIX_FMT_RGBA:\
859     case PIX_FMT_BGRA:\
860         if (CONFIG_SMALL) {\
861             int needAlpha = CONFIG_SWSCALE_ALPHA && c->alpPixBuf;\
862             func(uint32_t,needAlpha)\
863                 ((uint32_t*)dest)[i2+0]= r[Y1] + g[Y1] + b[Y1] + (needAlpha ? (A1<<24) : 0);\
864                 ((uint32_t*)dest)[i2+1]= r[Y2] + g[Y2] + b[Y2] + (needAlpha ? (A2<<24) : 0);\
865             }\
866         } else {\
867             if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf) {\
868                 func(uint32_t,1)\
869                     ((uint32_t*)dest)[i2+0]= r[Y1] + g[Y1] + b[Y1] + (A1<<24);\
870                     ((uint32_t*)dest)[i2+1]= r[Y2] + g[Y2] + b[Y2] + (A2<<24);\
871                 }\
872             } else {\
873                 func(uint32_t,0)\
874                     ((uint32_t*)dest)[i2+0]= r[Y1] + g[Y1] + b[Y1];\
875                     ((uint32_t*)dest)[i2+1]= r[Y2] + g[Y2] + b[Y2];\
876                 }\
877             }\
878         }\
879         break;\
880     case PIX_FMT_ARGB:\
881     case PIX_FMT_ABGR:\
882         if (CONFIG_SMALL) {\
883             int needAlpha = CONFIG_SWSCALE_ALPHA && c->alpPixBuf;\
884             func(uint32_t,needAlpha)\
885                 ((uint32_t*)dest)[i2+0]= r[Y1] + g[Y1] + b[Y1] + (needAlpha ? A1 : 0);\
886                 ((uint32_t*)dest)[i2+1]= r[Y2] + g[Y2] + b[Y2] + (needAlpha ? A2 : 0);\
887             }\
888         } else {\
889             if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf) {\
890                 func(uint32_t,1)\
891                     ((uint32_t*)dest)[i2+0]= r[Y1] + g[Y1] + b[Y1] + A1;\
892                     ((uint32_t*)dest)[i2+1]= r[Y2] + g[Y2] + b[Y2] + A2;\
893                 }\
894             } else {\
895                 func(uint32_t,0)\
896                     ((uint32_t*)dest)[i2+0]= r[Y1] + g[Y1] + b[Y1];\
897                     ((uint32_t*)dest)[i2+1]= r[Y2] + g[Y2] + b[Y2];\
898                 }\
899             }\
900         }                \
901         break;\
902     case PIX_FMT_RGB24:\
903         func(uint8_t,0)\
904             ((uint8_t*)dest)[0]= r[Y1];\
905             ((uint8_t*)dest)[1]= g[Y1];\
906             ((uint8_t*)dest)[2]= b[Y1];\
907             ((uint8_t*)dest)[3]= r[Y2];\
908             ((uint8_t*)dest)[4]= g[Y2];\
909             ((uint8_t*)dest)[5]= b[Y2];\
910             dest+=6;\
911         }\
912         break;\
913     case PIX_FMT_BGR24:\
914         func(uint8_t,0)\
915             ((uint8_t*)dest)[0]= b[Y1];\
916             ((uint8_t*)dest)[1]= g[Y1];\
917             ((uint8_t*)dest)[2]= r[Y1];\
918             ((uint8_t*)dest)[3]= b[Y2];\
919             ((uint8_t*)dest)[4]= g[Y2];\
920             ((uint8_t*)dest)[5]= r[Y2];\
921             dest+=6;\
922         }\
923         break;\
924     case PIX_FMT_RGB565BE:\
925     case PIX_FMT_RGB565LE:\
926     case PIX_FMT_BGR565BE:\
927     case PIX_FMT_BGR565LE:\
928         {\
929             const int dr1= dither_2x2_8[y&1    ][0];\
930             const int dg1= dither_2x2_4[y&1    ][0];\
931             const int db1= dither_2x2_8[(y&1)^1][0];\
932             const int dr2= dither_2x2_8[y&1    ][1];\
933             const int dg2= dither_2x2_4[y&1    ][1];\
934             const int db2= dither_2x2_8[(y&1)^1][1];\
935             func(uint16_t,0)\
936                 ((uint16_t*)dest)[i2+0]= r[Y1+dr1] + g[Y1+dg1] + b[Y1+db1];\
937                 ((uint16_t*)dest)[i2+1]= r[Y2+dr2] + g[Y2+dg2] + b[Y2+db2];\
938             }\
939         }\
940         break;\
941     case PIX_FMT_RGB555BE:\
942     case PIX_FMT_RGB555LE:\
943     case PIX_FMT_BGR555BE:\
944     case PIX_FMT_BGR555LE:\
945         {\
946             const int dr1= dither_2x2_8[y&1    ][0];\
947             const int dg1= dither_2x2_8[y&1    ][1];\
948             const int db1= dither_2x2_8[(y&1)^1][0];\
949             const int dr2= dither_2x2_8[y&1    ][1];\
950             const int dg2= dither_2x2_8[y&1    ][0];\
951             const int db2= dither_2x2_8[(y&1)^1][1];\
952             func(uint16_t,0)\
953                 ((uint16_t*)dest)[i2+0]= r[Y1+dr1] + g[Y1+dg1] + b[Y1+db1];\
954                 ((uint16_t*)dest)[i2+1]= r[Y2+dr2] + g[Y2+dg2] + b[Y2+db2];\
955             }\
956         }\
957         break;\
958     case PIX_FMT_RGB444BE:\
959     case PIX_FMT_RGB444LE:\
960     case PIX_FMT_BGR444BE:\
961     case PIX_FMT_BGR444LE:\
962         {\
963             const int dr1= dither_4x4_16[y&3    ][0];\
964             const int dg1= dither_4x4_16[y&3    ][1];\
965             const int db1= dither_4x4_16[(y&3)^3][0];\
966             const int dr2= dither_4x4_16[y&3    ][1];\
967             const int dg2= dither_4x4_16[y&3    ][0];\
968             const int db2= dither_4x4_16[(y&3)^3][1];\
969             func(uint16_t,0)\
970                 ((uint16_t*)dest)[i2+0]= r[Y1+dr1] + g[Y1+dg1] + b[Y1+db1];\
971                 ((uint16_t*)dest)[i2+1]= r[Y2+dr2] + g[Y2+dg2] + b[Y2+db2];\
972             }\
973         }\
974         break;\
975     case PIX_FMT_RGB8:\
976     case PIX_FMT_BGR8:\
977         {\
978             const uint8_t * const d64= dither_8x8_73[y&7];\
979             const uint8_t * const d32= dither_8x8_32[y&7];\
980             func(uint8_t,0)\
981                 ((uint8_t*)dest)[i2+0]= r[Y1+d32[(i2+0)&7]] + g[Y1+d32[(i2+0)&7]] + b[Y1+d64[(i2+0)&7]];\
982                 ((uint8_t*)dest)[i2+1]= r[Y2+d32[(i2+1)&7]] + g[Y2+d32[(i2+1)&7]] + b[Y2+d64[(i2+1)&7]];\
983             }\
984         }\
985         break;\
986     case PIX_FMT_RGB4:\
987     case PIX_FMT_BGR4:\
988         {\
989             const uint8_t * const d64= dither_8x8_73 [y&7];\
990             const uint8_t * const d128=dither_8x8_220[y&7];\
991             func(uint8_t,0)\
992                 ((uint8_t*)dest)[i]= r[Y1+d128[(i2+0)&7]] + g[Y1+d64[(i2+0)&7]] + b[Y1+d128[(i2+0)&7]]\
993                                  + ((r[Y2+d128[(i2+1)&7]] + g[Y2+d64[(i2+1)&7]] + b[Y2+d128[(i2+1)&7]])<<4);\
994             }\
995         }\
996         break;\
997     case PIX_FMT_RGB4_BYTE:\
998     case PIX_FMT_BGR4_BYTE:\
999         {\
1000             const uint8_t * const d64= dither_8x8_73 [y&7];\
1001             const uint8_t * const d128=dither_8x8_220[y&7];\
1002             func(uint8_t,0)\
1003                 ((uint8_t*)dest)[i2+0]= r[Y1+d128[(i2+0)&7]] + g[Y1+d64[(i2+0)&7]] + b[Y1+d128[(i2+0)&7]];\
1004                 ((uint8_t*)dest)[i2+1]= r[Y2+d128[(i2+1)&7]] + g[Y2+d64[(i2+1)&7]] + b[Y2+d128[(i2+1)&7]];\
1005             }\
1006         }\
1007         break;\
1008     case PIX_FMT_MONOBLACK:\
1009     case PIX_FMT_MONOWHITE:\
1010         {\
1011             func_monoblack\
1012         }\
1013         break;\
1014     case PIX_FMT_YUYV422:\
1015         func2\
1016             ((uint8_t*)dest)[2*i2+0]= Y1;\
1017             ((uint8_t*)dest)[2*i2+1]= U;\
1018             ((uint8_t*)dest)[2*i2+2]= Y2;\
1019             ((uint8_t*)dest)[2*i2+3]= V;\
1020         }                \
1021         break;\
1022     case PIX_FMT_UYVY422:\
1023         func2\
1024             ((uint8_t*)dest)[2*i2+0]= U;\
1025             ((uint8_t*)dest)[2*i2+1]= Y1;\
1026             ((uint8_t*)dest)[2*i2+2]= V;\
1027             ((uint8_t*)dest)[2*i2+3]= Y2;\
1028         }                \
1029         break;\
1030     case PIX_FMT_GRAY16BE:\
1031         func_g16\
1032             ((uint8_t*)dest)[2*i2+0]= Y1>>8;\
1033             ((uint8_t*)dest)[2*i2+1]= Y1;\
1034             ((uint8_t*)dest)[2*i2+2]= Y2>>8;\
1035             ((uint8_t*)dest)[2*i2+3]= Y2;\
1036         }                \
1037         break;\
1038     case PIX_FMT_GRAY16LE:\
1039         func_g16\
1040             ((uint8_t*)dest)[2*i2+0]= Y1;\
1041             ((uint8_t*)dest)[2*i2+1]= Y1>>8;\
1042             ((uint8_t*)dest)[2*i2+2]= Y2;\
1043             ((uint8_t*)dest)[2*i2+3]= Y2>>8;\
1044         }                \
1045         break;\
1046     }
1047
1048 static inline void yuv2packedXinC(SwsContext *c, const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
1049                                   const int16_t *chrFilter, const int16_t **chrSrc, int chrFilterSize,
1050                                   const int16_t **alpSrc, uint8_t *dest, int dstW, int y)
1051 {
1052     int i;
1053     YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGBX_C, YSCALE_YUV_2_PACKEDX_C(void,0), YSCALE_YUV_2_GRAY16_C, YSCALE_YUV_2_MONOX_C)
1054 }
1055
1056 static inline void yuv2rgbXinC_full(SwsContext *c, const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
1057                                     const int16_t *chrFilter, const int16_t **chrSrc, int chrFilterSize,
1058                                     const int16_t **alpSrc, uint8_t *dest, int dstW, int y)
1059 {
1060     int i;
1061     int step= c->dstFormatBpp/8;
1062     int aidx= 3;
1063
1064     switch(c->dstFormat) {
1065     case PIX_FMT_ARGB:
1066         dest++;
1067         aidx= 0;
1068     case PIX_FMT_RGB24:
1069         aidx--;
1070     case PIX_FMT_RGBA:
1071         if (CONFIG_SMALL) {
1072             int needAlpha = CONFIG_SWSCALE_ALPHA && c->alpPixBuf;
1073             YSCALE_YUV_2_RGBX_FULL_C(1<<21, needAlpha)
1074                 dest[aidx]= needAlpha ? A : 255;
1075                 dest[0]= R>>22;
1076                 dest[1]= G>>22;
1077                 dest[2]= B>>22;
1078                 dest+= step;
1079             }
1080         } else {
1081             if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf) {
1082                 YSCALE_YUV_2_RGBX_FULL_C(1<<21, 1)
1083                     dest[aidx]= A;
1084                     dest[0]= R>>22;
1085                     dest[1]= G>>22;
1086                     dest[2]= B>>22;
1087                     dest+= step;
1088                 }
1089             } else {
1090                 YSCALE_YUV_2_RGBX_FULL_C(1<<21, 0)
1091                     dest[aidx]= 255;
1092                     dest[0]= R>>22;
1093                     dest[1]= G>>22;
1094                     dest[2]= B>>22;
1095                     dest+= step;
1096                 }
1097             }
1098         }
1099         break;
1100     case PIX_FMT_ABGR:
1101         dest++;
1102         aidx= 0;
1103     case PIX_FMT_BGR24:
1104         aidx--;
1105     case PIX_FMT_BGRA:
1106         if (CONFIG_SMALL) {
1107             int needAlpha = CONFIG_SWSCALE_ALPHA && c->alpPixBuf;
1108             YSCALE_YUV_2_RGBX_FULL_C(1<<21, needAlpha)
1109                 dest[aidx]= needAlpha ? A : 255;
1110                 dest[0]= B>>22;
1111                 dest[1]= G>>22;
1112                 dest[2]= R>>22;
1113                 dest+= step;
1114             }
1115         } else {
1116             if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf) {
1117                 YSCALE_YUV_2_RGBX_FULL_C(1<<21, 1)
1118                     dest[aidx]= A;
1119                     dest[0]= B>>22;
1120                     dest[1]= G>>22;
1121                     dest[2]= R>>22;
1122                     dest+= step;
1123                 }
1124             } else {
1125                 YSCALE_YUV_2_RGBX_FULL_C(1<<21, 0)
1126                     dest[aidx]= 255;
1127                     dest[0]= B>>22;
1128                     dest[1]= G>>22;
1129                     dest[2]= R>>22;
1130                     dest+= step;
1131                 }
1132             }
1133         }
1134         break;
1135     default:
1136         assert(0);
1137     }
1138 }
1139
1140 static void fillPlane(uint8_t* plane, int stride, int width, int height, int y, uint8_t val)
1141 {
1142     int i;
1143     uint8_t *ptr = plane + stride*y;
1144     for (i=0; i<height; i++) {
1145         memset(ptr, val, width);
1146         ptr += stride;
1147     }
1148 }
1149
1150 static inline void rgb48ToY(uint8_t *dst, const uint8_t *src, long width,
1151                             uint32_t *unused)
1152 {
1153     int i;
1154     for (i = 0; i < width; i++) {
1155         int r = src[i*6+0];
1156         int g = src[i*6+2];
1157         int b = src[i*6+4];
1158
1159         dst[i] = (RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1))) >> RGB2YUV_SHIFT;
1160     }
1161 }
1162
1163 static inline void rgb48ToUV(uint8_t *dstU, uint8_t *dstV,
1164                              const uint8_t *src1, const uint8_t *src2,
1165                              long width, uint32_t *unused)
1166 {
1167     int i;
1168     assert(src1==src2);
1169     for (i = 0; i < width; i++) {
1170         int r = src1[6*i + 0];
1171         int g = src1[6*i + 2];
1172         int b = src1[6*i + 4];
1173
1174         dstU[i] = (RU*r + GU*g + BU*b + (257<<(RGB2YUV_SHIFT-1))) >> RGB2YUV_SHIFT;
1175         dstV[i] = (RV*r + GV*g + BV*b + (257<<(RGB2YUV_SHIFT-1))) >> RGB2YUV_SHIFT;
1176     }
1177 }
1178
1179 static inline void rgb48ToUV_half(uint8_t *dstU, uint8_t *dstV,
1180                                   const uint8_t *src1, const uint8_t *src2,
1181                                   long width, uint32_t *unused)
1182 {
1183     int i;
1184     assert(src1==src2);
1185     for (i = 0; i < width; i++) {
1186         int r= src1[12*i + 0] + src1[12*i + 6];
1187         int g= src1[12*i + 2] + src1[12*i + 8];
1188         int b= src1[12*i + 4] + src1[12*i + 10];
1189
1190         dstU[i]= (RU*r + GU*g + BU*b + (257<<RGB2YUV_SHIFT)) >> (RGB2YUV_SHIFT+1);
1191         dstV[i]= (RV*r + GV*g + BV*b + (257<<RGB2YUV_SHIFT)) >> (RGB2YUV_SHIFT+1);
1192     }
1193 }
1194
1195 static inline void bgr48ToY(uint8_t *dst, const uint8_t *src, long width,
1196                             uint32_t *unused)
1197 {
1198     int i;
1199     for (i = 0; i < width; i++) {
1200         int b = src[i*6+0];
1201         int g = src[i*6+2];
1202         int r = src[i*6+4];
1203
1204         dst[i] = (RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1))) >> RGB2YUV_SHIFT;
1205     }
1206 }
1207
1208 static inline void bgr48ToUV(uint8_t *dstU, uint8_t *dstV,
1209                              const uint8_t *src1, const uint8_t *src2,
1210                              long width, uint32_t *unused)
1211 {
1212     int i;
1213     for (i = 0; i < width; i++) {
1214         int b = src1[6*i + 0];
1215         int g = src1[6*i + 2];
1216         int r = src1[6*i + 4];
1217
1218         dstU[i] = (RU*r + GU*g + BU*b + (257<<(RGB2YUV_SHIFT-1))) >> RGB2YUV_SHIFT;
1219         dstV[i] = (RV*r + GV*g + BV*b + (257<<(RGB2YUV_SHIFT-1))) >> RGB2YUV_SHIFT;
1220     }
1221 }
1222
1223 static inline void bgr48ToUV_half(uint8_t *dstU, uint8_t *dstV,
1224                                   const uint8_t *src1, const uint8_t *src2,
1225                                   long width, uint32_t *unused)
1226 {
1227     int i;
1228     for (i = 0; i < width; i++) {
1229         int b= src1[12*i + 0] + src1[12*i + 6];
1230         int g= src1[12*i + 2] + src1[12*i + 8];
1231         int r= src1[12*i + 4] + src1[12*i + 10];
1232
1233         dstU[i]= (RU*r + GU*g + BU*b + (257<<RGB2YUV_SHIFT)) >> (RGB2YUV_SHIFT+1);
1234         dstV[i]= (RV*r + GV*g + BV*b + (257<<RGB2YUV_SHIFT)) >> (RGB2YUV_SHIFT+1);
1235     }
1236 }
1237
1238 #define BGR2Y(type, name, shr, shg, shb, maskr, maskg, maskb, RY, GY, BY, S)\
1239 static inline void name(uint8_t *dst, const uint8_t *src, long width, uint32_t *unused)\
1240 {\
1241     int i;\
1242     for (i=0; i<width; i++) {\
1243         int b= (((const type*)src)[i]>>shb)&maskb;\
1244         int g= (((const type*)src)[i]>>shg)&maskg;\
1245         int r= (((const type*)src)[i]>>shr)&maskr;\
1246 \
1247         dst[i]= (((RY)*r + (GY)*g + (BY)*b + (33<<((S)-1)))>>(S));\
1248     }\
1249 }
1250
1251 BGR2Y(uint32_t, bgr32ToY,16, 0, 0, 0x00FF, 0xFF00, 0x00FF, RY<< 8, GY   , BY<< 8, RGB2YUV_SHIFT+8)
1252 BGR2Y(uint32_t,bgr321ToY,16,16, 0, 0xFF00, 0x00FF, 0xFF00, RY    , GY<<8, BY    , RGB2YUV_SHIFT+8)
1253 BGR2Y(uint32_t, rgb32ToY, 0, 0,16, 0x00FF, 0xFF00, 0x00FF, RY<< 8, GY   , BY<< 8, RGB2YUV_SHIFT+8)
1254 BGR2Y(uint32_t,rgb321ToY, 0,16,16, 0xFF00, 0x00FF, 0xFF00, RY    , GY<<8, BY    , RGB2YUV_SHIFT+8)
1255 BGR2Y(uint16_t, bgr16ToY, 0, 0, 0, 0x001F, 0x07E0, 0xF800, RY<<11, GY<<5, BY    , RGB2YUV_SHIFT+8)
1256 BGR2Y(uint16_t, bgr15ToY, 0, 0, 0, 0x001F, 0x03E0, 0x7C00, RY<<10, GY<<5, BY    , RGB2YUV_SHIFT+7)
1257 BGR2Y(uint16_t, rgb16ToY, 0, 0, 0, 0xF800, 0x07E0, 0x001F, RY    , GY<<5, BY<<11, RGB2YUV_SHIFT+8)
1258 BGR2Y(uint16_t, rgb15ToY, 0, 0, 0, 0x7C00, 0x03E0, 0x001F, RY    , GY<<5, BY<<10, RGB2YUV_SHIFT+7)
1259
1260 static inline void abgrToA(uint8_t *dst, const uint8_t *src, long width, uint32_t *unused)
1261 {
1262     int i;
1263     for (i=0; i<width; i++) {
1264         dst[i]= src[4*i];
1265     }
1266 }
1267
1268 #define BGR2UV(type, name, shr, shg, shb, shp, maskr, maskg, maskb, RU, GU, BU, RV, GV, BV, S) \
1269 static inline void name(uint8_t *dstU, uint8_t *dstV, const uint8_t *src, const uint8_t *dummy, long width, uint32_t *unused)\
1270 {\
1271     int i;\
1272     for (i=0; i<width; i++) {\
1273         int b= ((((const type*)src)[i]>>shp)&maskb)>>shb;\
1274         int g= ((((const type*)src)[i]>>shp)&maskg)>>shg;\
1275         int r= ((((const type*)src)[i]>>shp)&maskr)>>shr;\
1276 \
1277         dstU[i]= ((RU)*r + (GU)*g + (BU)*b + (257<<((S)-1)))>>(S);\
1278         dstV[i]= ((RV)*r + (GV)*g + (BV)*b + (257<<((S)-1)))>>(S);\
1279     }\
1280 }\
1281 static inline void name ## _half(uint8_t *dstU, uint8_t *dstV, const uint8_t *src, const uint8_t *dummy, long width, uint32_t *unused)\
1282 {\
1283     int i;\
1284     for (i=0; i<width; i++) {\
1285         int pix0= ((const type*)src)[2*i+0]>>shp;\
1286         int pix1= ((const type*)src)[2*i+1]>>shp;\
1287         int g= (pix0&~(maskr|maskb))+(pix1&~(maskr|maskb));\
1288         int b= ((pix0+pix1-g)&(maskb|(2*maskb)))>>shb;\
1289         int r= ((pix0+pix1-g)&(maskr|(2*maskr)))>>shr;\
1290         g&= maskg|(2*maskg);\
1291 \
1292         g>>=shg;\
1293 \
1294         dstU[i]= ((RU)*r + (GU)*g + (BU)*b + (257<<(S)))>>((S)+1);\
1295         dstV[i]= ((RV)*r + (GV)*g + (BV)*b + (257<<(S)))>>((S)+1);\
1296     }\
1297 }
1298
1299 BGR2UV(uint32_t, bgr32ToUV,16, 0, 0, 0, 0xFF0000, 0xFF00,   0x00FF, RU<< 8, GU   , BU<< 8, RV<< 8, GV   , BV<< 8, RGB2YUV_SHIFT+8)
1300 BGR2UV(uint32_t,bgr321ToUV,16, 0, 0, 8, 0xFF0000, 0xFF00,   0x00FF, RU<< 8, GU   , BU<< 8, RV<< 8, GV   , BV<< 8, RGB2YUV_SHIFT+8)
1301 BGR2UV(uint32_t, rgb32ToUV, 0, 0,16, 0,   0x00FF, 0xFF00, 0xFF0000, RU<< 8, GU   , BU<< 8, RV<< 8, GV   , BV<< 8, RGB2YUV_SHIFT+8)
1302 BGR2UV(uint32_t,rgb321ToUV, 0, 0,16, 8,   0x00FF, 0xFF00, 0xFF0000, RU<< 8, GU   , BU<< 8, RV<< 8, GV   , BV<< 8, RGB2YUV_SHIFT+8)
1303 BGR2UV(uint16_t, bgr16ToUV, 0, 0, 0, 0,   0x001F, 0x07E0,   0xF800, RU<<11, GU<<5, BU    , RV<<11, GV<<5, BV    , RGB2YUV_SHIFT+8)
1304 BGR2UV(uint16_t, bgr15ToUV, 0, 0, 0, 0,   0x001F, 0x03E0,   0x7C00, RU<<10, GU<<5, BU    , RV<<10, GV<<5, BV    , RGB2YUV_SHIFT+7)
1305 BGR2UV(uint16_t, rgb16ToUV, 0, 0, 0, 0,   0xF800, 0x07E0,   0x001F, RU    , GU<<5, BU<<11, RV    , GV<<5, BV<<11, RGB2YUV_SHIFT+8)
1306 BGR2UV(uint16_t, rgb15ToUV, 0, 0, 0, 0,   0x7C00, 0x03E0,   0x001F, RU    , GU<<5, BU<<10, RV    , GV<<5, BV<<10, RGB2YUV_SHIFT+7)
1307
1308 static inline void palToA(uint8_t *dst, const uint8_t *src, long width, uint32_t *pal)
1309 {
1310     int i;
1311     for (i=0; i<width; i++) {
1312         int d= src[i];
1313
1314         dst[i]= pal[d] >> 24;
1315     }
1316 }
1317
1318 static inline void palToY(uint8_t *dst, const uint8_t *src, long width, uint32_t *pal)
1319 {
1320     int i;
1321     for (i=0; i<width; i++) {
1322         int d= src[i];
1323
1324         dst[i]= pal[d] & 0xFF;
1325     }
1326 }
1327
1328 static inline void palToUV(uint8_t *dstU, uint8_t *dstV,
1329                            const uint8_t *src1, const uint8_t *src2,
1330                            long width, uint32_t *pal)
1331 {
1332     int i;
1333     assert(src1 == src2);
1334     for (i=0; i<width; i++) {
1335         int p= pal[src1[i]];
1336
1337         dstU[i]= p>>8;
1338         dstV[i]= p>>16;
1339     }
1340 }
1341
1342 static inline void monowhite2Y(uint8_t *dst, const uint8_t *src, long width, uint32_t *unused)
1343 {
1344     int i, j;
1345     for (i=0; i<width/8; i++) {
1346         int d= ~src[i];
1347         for(j=0; j<8; j++)
1348             dst[8*i+j]= ((d>>(7-j))&1)*255;
1349     }
1350 }
1351
1352 static inline void monoblack2Y(uint8_t *dst, const uint8_t *src, long width, uint32_t *unused)
1353 {
1354     int i, j;
1355     for (i=0; i<width/8; i++) {
1356         int d= src[i];
1357         for(j=0; j<8; j++)
1358             dst[8*i+j]= ((d>>(7-j))&1)*255;
1359     }
1360 }
1361
1362 //Note: we have C, MMX, MMX2, 3DNOW versions, there is no 3DNOW+MMX2 one
1363 //Plain C versions
1364 #if CONFIG_RUNTIME_CPUDETECT
1365 #  define COMPILE_C 1
1366 #  if   ARCH_X86
1367 #    define COMPILE_MMX     1
1368 #    define COMPILE_MMX2    1
1369 #    define COMPILE_3DNOW   1
1370 #  elif ARCH_PPC
1371 #    define COMPILE_ALTIVEC HAVE_ALTIVEC
1372 #  endif
1373 #else /* CONFIG_RUNTIME_CPUDETECT */
1374 #  if   ARCH_X86
1375 #    if   HAVE_MMX2
1376 #      define COMPILE_MMX2  1
1377 #    elif HAVE_AMD3DNOW
1378 #      define COMPILE_3DNOW 1
1379 #    elif HAVE_MMX
1380 #      define COMPILE_MMX   1
1381 #    else
1382 #      define COMPILE_C     1
1383 #    endif
1384 #  elif ARCH_PPC && HAVE_ALTIVEC
1385 #    define COMPILE_ALTIVEC 1
1386 #  else
1387 #    define COMPILE_C       1
1388 #  endif
1389 #endif
1390
1391 #ifndef COMPILE_C
1392 #  define COMPILE_C 0
1393 #endif
1394 #ifndef COMPILE_MMX
1395 #  define COMPILE_MMX 0
1396 #endif
1397 #ifndef COMPILE_MMX2
1398 #  define COMPILE_MMX2 0
1399 #endif
1400 #ifndef COMPILE_3DNOW
1401 #  define COMPILE_3DNOW 0
1402 #endif
1403 #ifndef COMPILE_ALTIVEC
1404 #  define COMPILE_ALTIVEC 0
1405 #endif
1406
1407 #define COMPILE_TEMPLATE_MMX 0
1408 #define COMPILE_TEMPLATE_MMX2 0
1409 #define COMPILE_TEMPLATE_AMD3DNOW 0
1410 #define COMPILE_TEMPLATE_ALTIVEC 0
1411
1412 #if COMPILE_C
1413 #define RENAME(a) a ## _C
1414 #include "swscale_template.c"
1415 #endif
1416
1417 #if COMPILE_ALTIVEC
1418 #undef RENAME
1419 #undef COMPILE_TEMPLATE_ALTIVEC
1420 #define COMPILE_TEMPLATE_ALTIVEC 1
1421 #define RENAME(a) a ## _altivec
1422 #include "swscale_template.c"
1423 #endif
1424
1425 #if ARCH_X86
1426
1427 //MMX versions
1428 #if COMPILE_MMX
1429 #undef RENAME
1430 #undef COMPILE_TEMPLATE_MMX
1431 #undef COMPILE_TEMPLATE_MMX2
1432 #undef COMPILE_TEMPLATE_AMD3DNOW
1433 #define COMPILE_TEMPLATE_MMX 1
1434 #define COMPILE_TEMPLATE_MMX2 0
1435 #define COMPILE_TEMPLATE_AMD3DNOW 0
1436 #define RENAME(a) a ## _MMX
1437 #include "swscale_template.c"
1438 #endif
1439
1440 //MMX2 versions
1441 #if COMPILE_MMX2
1442 #undef RENAME
1443 #undef COMPILE_TEMPLATE_MMX
1444 #undef COMPILE_TEMPLATE_MMX2
1445 #undef COMPILE_TEMPLATE_AMD3DNOW
1446 #define COMPILE_TEMPLATE_MMX 1
1447 #define COMPILE_TEMPLATE_MMX2 1
1448 #define COMPILE_TEMPLATE_AMD3DNOW 0
1449 #define RENAME(a) a ## _MMX2
1450 #include "swscale_template.c"
1451 #endif
1452
1453 //3DNOW versions
1454 #if COMPILE_3DNOW
1455 #undef RENAME
1456 #undef COMPILE_TEMPLATE_MMX
1457 #undef COMPILE_TEMPLATE_MMX2
1458 #undef COMPILE_TEMPLATE_AMD3DNOW
1459 #define COMPILE_TEMPLATE_MMX 1
1460 #define COMPILE_TEMPLATE_MMX2 0
1461 #define COMPILE_TEMPLATE_AMD3DNOW 1
1462 #define RENAME(a) a ## _3DNow
1463 #include "swscale_template.c"
1464 #endif
1465
1466 #endif //ARCH_X86
1467
1468 SwsFunc ff_getSwsFunc(SwsContext *c)
1469 {
1470 #if CONFIG_RUNTIME_CPUDETECT
1471     int flags = c->flags;
1472
1473 #if ARCH_X86
1474     // ordered per speed fastest first
1475     if (flags & SWS_CPU_CAPS_MMX2) {
1476         sws_init_swScale_MMX2(c);
1477         return swScale_MMX2;
1478     } else if (flags & SWS_CPU_CAPS_3DNOW) {
1479         sws_init_swScale_3DNow(c);
1480         return swScale_3DNow;
1481     } else if (flags & SWS_CPU_CAPS_MMX) {
1482         sws_init_swScale_MMX(c);
1483         return swScale_MMX;
1484     } else {
1485         sws_init_swScale_C(c);
1486         return swScale_C;
1487     }
1488
1489 #else
1490 #if COMPILE_ALTIVEC
1491     if (flags & SWS_CPU_CAPS_ALTIVEC) {
1492         sws_init_swScale_altivec(c);
1493         return swScale_altivec;
1494     } else {
1495         sws_init_swScale_C(c);
1496         return swScale_C;
1497     }
1498 #endif
1499     sws_init_swScale_C(c);
1500     return swScale_C;
1501 #endif /* ARCH_X86 */
1502 #else //CONFIG_RUNTIME_CPUDETECT
1503 #if   COMPILE_TEMPLATE_MMX2
1504     sws_init_swScale_MMX2(c);
1505     return swScale_MMX2;
1506 #elif COMPILE_TEMPLATE_AMD3DNOW
1507     sws_init_swScale_3DNow(c);
1508     return swScale_3DNow;
1509 #elif COMPILE_TEMPLATE_MMX
1510     sws_init_swScale_MMX(c);
1511     return swScale_MMX;
1512 #elif COMPILE_TEMPLATE_ALTIVEC
1513     sws_init_swScale_altivec(c);
1514     return swScale_altivec;
1515 #else
1516     sws_init_swScale_C(c);
1517     return swScale_C;
1518 #endif
1519 #endif //!CONFIG_RUNTIME_CPUDETECT
1520 }
1521
1522 static void copyPlane(const uint8_t *src, int srcStride,
1523                       int srcSliceY, int srcSliceH, int width,
1524                       uint8_t *dst, int dstStride)
1525 {
1526     dst += dstStride * srcSliceY;
1527     if (dstStride == srcStride && srcStride > 0) {
1528         memcpy(dst, src, srcSliceH * dstStride);
1529     } else {
1530         int i;
1531         for (i=0; i<srcSliceH; i++) {
1532             memcpy(dst, src, width);
1533             src += srcStride;
1534             dst += dstStride;
1535         }
1536     }
1537 }
1538
1539 static int planarToNv12Wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1540                                int srcSliceH, uint8_t* dstParam[], int dstStride[])
1541 {
1542     uint8_t *dst = dstParam[1] + dstStride[1]*srcSliceY/2;
1543
1544     copyPlane(src[0], srcStride[0], srcSliceY, srcSliceH, c->srcW,
1545               dstParam[0], dstStride[0]);
1546
1547     if (c->dstFormat == PIX_FMT_NV12)
1548         interleaveBytes(src[1], src[2], dst, c->srcW/2, srcSliceH/2, srcStride[1], srcStride[2], dstStride[0]);
1549     else
1550         interleaveBytes(src[2], src[1], dst, c->srcW/2, srcSliceH/2, srcStride[2], srcStride[1], dstStride[0]);
1551
1552     return srcSliceH;
1553 }
1554
1555 static int planarToYuy2Wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1556                                int srcSliceH, uint8_t* dstParam[], int dstStride[])
1557 {
1558     uint8_t *dst=dstParam[0] + dstStride[0]*srcSliceY;
1559
1560     yv12toyuy2(src[0], src[1], src[2], dst, c->srcW, srcSliceH, srcStride[0], srcStride[1], dstStride[0]);
1561
1562     return srcSliceH;
1563 }
1564
1565 static int planarToUyvyWrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1566                                int srcSliceH, uint8_t* dstParam[], int dstStride[])
1567 {
1568     uint8_t *dst=dstParam[0] + dstStride[0]*srcSliceY;
1569
1570     yv12touyvy(src[0], src[1], src[2], dst, c->srcW, srcSliceH, srcStride[0], srcStride[1], dstStride[0]);
1571
1572     return srcSliceH;
1573 }
1574
1575 static int yuv422pToYuy2Wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1576                                 int srcSliceH, uint8_t* dstParam[], int dstStride[])
1577 {
1578     uint8_t *dst=dstParam[0] + dstStride[0]*srcSliceY;
1579
1580     yuv422ptoyuy2(src[0],src[1],src[2],dst,c->srcW,srcSliceH,srcStride[0],srcStride[1],dstStride[0]);
1581
1582     return srcSliceH;
1583 }
1584
1585 static int yuv422pToUyvyWrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1586                                 int srcSliceH, uint8_t* dstParam[], int dstStride[])
1587 {
1588     uint8_t *dst=dstParam[0] + dstStride[0]*srcSliceY;
1589
1590     yuv422ptouyvy(src[0],src[1],src[2],dst,c->srcW,srcSliceH,srcStride[0],srcStride[1],dstStride[0]);
1591
1592     return srcSliceH;
1593 }
1594
1595 static int yuyvToYuv420Wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1596                                int srcSliceH, uint8_t* dstParam[], int dstStride[])
1597 {
1598     uint8_t *ydst=dstParam[0] + dstStride[0]*srcSliceY;
1599     uint8_t *udst=dstParam[1] + dstStride[1]*srcSliceY/2;
1600     uint8_t *vdst=dstParam[2] + dstStride[2]*srcSliceY/2;
1601
1602     yuyvtoyuv420(ydst, udst, vdst, src[0], c->srcW, srcSliceH, dstStride[0], dstStride[1], srcStride[0]);
1603
1604     if (dstParam[3])
1605         fillPlane(dstParam[3], dstStride[3], c->srcW, srcSliceH, srcSliceY, 255);
1606
1607     return srcSliceH;
1608 }
1609
1610 static int yuyvToYuv422Wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1611                                int srcSliceH, uint8_t* dstParam[], int dstStride[])
1612 {
1613     uint8_t *ydst=dstParam[0] + dstStride[0]*srcSliceY;
1614     uint8_t *udst=dstParam[1] + dstStride[1]*srcSliceY;
1615     uint8_t *vdst=dstParam[2] + dstStride[2]*srcSliceY;
1616
1617     yuyvtoyuv422(ydst, udst, vdst, src[0], c->srcW, srcSliceH, dstStride[0], dstStride[1], srcStride[0]);
1618
1619     return srcSliceH;
1620 }
1621
1622 static int uyvyToYuv420Wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1623                                int srcSliceH, uint8_t* dstParam[], int dstStride[])
1624 {
1625     uint8_t *ydst=dstParam[0] + dstStride[0]*srcSliceY;
1626     uint8_t *udst=dstParam[1] + dstStride[1]*srcSliceY/2;
1627     uint8_t *vdst=dstParam[2] + dstStride[2]*srcSliceY/2;
1628
1629     uyvytoyuv420(ydst, udst, vdst, src[0], c->srcW, srcSliceH, dstStride[0], dstStride[1], srcStride[0]);
1630
1631     if (dstParam[3])
1632         fillPlane(dstParam[3], dstStride[3], c->srcW, srcSliceH, srcSliceY, 255);
1633
1634     return srcSliceH;
1635 }
1636
1637 static int uyvyToYuv422Wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1638                                int srcSliceH, uint8_t* dstParam[], int dstStride[])
1639 {
1640     uint8_t *ydst=dstParam[0] + dstStride[0]*srcSliceY;
1641     uint8_t *udst=dstParam[1] + dstStride[1]*srcSliceY;
1642     uint8_t *vdst=dstParam[2] + dstStride[2]*srcSliceY;
1643
1644     uyvytoyuv422(ydst, udst, vdst, src[0], c->srcW, srcSliceH, dstStride[0], dstStride[1], srcStride[0]);
1645
1646     return srcSliceH;
1647 }
1648
1649 static void gray8aToPacked32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
1650 {
1651     long i;
1652     for (i=0; i<num_pixels; i++)
1653         ((uint32_t *) dst)[i] = ((const uint32_t *)palette)[src[i<<1]] | (src[(i<<1)+1] << 24);
1654 }
1655
1656 static void gray8aToPacked32_1(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
1657 {
1658     long i;
1659
1660     for (i=0; i<num_pixels; i++)
1661         ((uint32_t *) dst)[i] = ((const uint32_t *)palette)[src[i<<1]] | src[(i<<1)+1];
1662 }
1663
1664 static void gray8aToPacked24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
1665 {
1666     long i;
1667
1668     for (i=0; i<num_pixels; i++) {
1669         //FIXME slow?
1670         dst[0]= palette[src[i<<1]*4+0];
1671         dst[1]= palette[src[i<<1]*4+1];
1672         dst[2]= palette[src[i<<1]*4+2];
1673         dst+= 3;
1674     }
1675 }
1676
1677 static int palToRgbWrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1678                            int srcSliceH, uint8_t* dst[], int dstStride[])
1679 {
1680     const enum PixelFormat srcFormat= c->srcFormat;
1681     const enum PixelFormat dstFormat= c->dstFormat;
1682     void (*conv)(const uint8_t *src, uint8_t *dst, long num_pixels,
1683                  const uint8_t *palette)=NULL;
1684     int i;
1685     uint8_t *dstPtr= dst[0] + dstStride[0]*srcSliceY;
1686     const uint8_t *srcPtr= src[0];
1687
1688     if (srcFormat == PIX_FMT_GRAY8A) {
1689         switch (dstFormat) {
1690         case PIX_FMT_RGB32  : conv = gray8aToPacked32; break;
1691         case PIX_FMT_BGR32  : conv = gray8aToPacked32; break;
1692         case PIX_FMT_BGR32_1: conv = gray8aToPacked32_1; break;
1693         case PIX_FMT_RGB32_1: conv = gray8aToPacked32_1; break;
1694         case PIX_FMT_RGB24  : conv = gray8aToPacked24; break;
1695         case PIX_FMT_BGR24  : conv = gray8aToPacked24; break;
1696         }
1697     } else if (usePal(srcFormat)) {
1698         switch (dstFormat) {
1699         case PIX_FMT_RGB32  : conv = sws_convertPalette8ToPacked32; break;
1700         case PIX_FMT_BGR32  : conv = sws_convertPalette8ToPacked32; break;
1701         case PIX_FMT_BGR32_1: conv = sws_convertPalette8ToPacked32; break;
1702         case PIX_FMT_RGB32_1: conv = sws_convertPalette8ToPacked32; break;
1703         case PIX_FMT_RGB24  : conv = sws_convertPalette8ToPacked24; break;
1704         case PIX_FMT_BGR24  : conv = sws_convertPalette8ToPacked24; break;
1705         }
1706     }
1707
1708     if (!conv)
1709         av_log(c, AV_LOG_ERROR, "internal error %s -> %s converter\n",
1710                sws_format_name(srcFormat), sws_format_name(dstFormat));
1711     else {
1712         for (i=0; i<srcSliceH; i++) {
1713             conv(srcPtr, dstPtr, c->srcW, (uint8_t *) c->pal_rgb);
1714             srcPtr+= srcStride[0];
1715             dstPtr+= dstStride[0];
1716         }
1717     }
1718
1719     return srcSliceH;
1720 }
1721
1722 #define isRGBA32(x) (            \
1723            (x) == PIX_FMT_ARGB   \
1724         || (x) == PIX_FMT_RGBA   \
1725         || (x) == PIX_FMT_BGRA   \
1726         || (x) == PIX_FMT_ABGR   \
1727         )
1728
1729 /* {RGB,BGR}{15,16,24,32,32_1} -> {RGB,BGR}{15,16,24,32} */
1730 static int rgbToRgbWrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1731                            int srcSliceH, uint8_t* dst[], int dstStride[])
1732 {
1733     const enum PixelFormat srcFormat= c->srcFormat;
1734     const enum PixelFormat dstFormat= c->dstFormat;
1735     const int srcBpp= (c->srcFormatBpp + 7) >> 3;
1736     const int dstBpp= (c->dstFormatBpp + 7) >> 3;
1737     const int srcId= c->srcFormatBpp >> 2; /* 1:0, 4:1, 8:2, 15:3, 16:4, 24:6, 32:8 */
1738     const int dstId= c->dstFormatBpp >> 2;
1739     void (*conv)(const uint8_t *src, uint8_t *dst, long src_size)=NULL;
1740
1741 #define CONV_IS(src, dst) (srcFormat == PIX_FMT_##src && dstFormat == PIX_FMT_##dst)
1742
1743     if (isRGBA32(srcFormat) && isRGBA32(dstFormat)) {
1744         if (     CONV_IS(ABGR, RGBA)
1745               || CONV_IS(ARGB, BGRA)
1746               || CONV_IS(BGRA, ARGB)
1747               || CONV_IS(RGBA, ABGR)) conv = shuffle_bytes_3210;
1748         else if (CONV_IS(ABGR, ARGB)
1749               || CONV_IS(ARGB, ABGR)) conv = shuffle_bytes_0321;
1750         else if (CONV_IS(ABGR, BGRA)
1751               || CONV_IS(ARGB, RGBA)) conv = shuffle_bytes_1230;
1752         else if (CONV_IS(BGRA, RGBA)
1753               || CONV_IS(RGBA, BGRA)) conv = shuffle_bytes_2103;
1754         else if (CONV_IS(BGRA, ABGR)
1755               || CONV_IS(RGBA, ARGB)) conv = shuffle_bytes_3012;
1756     } else
1757     /* BGR -> BGR */
1758     if (  (isBGRinInt(srcFormat) && isBGRinInt(dstFormat))
1759        || (isRGBinInt(srcFormat) && isRGBinInt(dstFormat))) {
1760         switch(srcId | (dstId<<4)) {
1761         case 0x34: conv= rgb16to15; break;
1762         case 0x36: conv= rgb24to15; break;
1763         case 0x38: conv= rgb32to15; break;
1764         case 0x43: conv= rgb15to16; break;
1765         case 0x46: conv= rgb24to16; break;
1766         case 0x48: conv= rgb32to16; break;
1767         case 0x63: conv= rgb15to24; break;
1768         case 0x64: conv= rgb16to24; break;
1769         case 0x68: conv= rgb32to24; break;
1770         case 0x83: conv= rgb15to32; break;
1771         case 0x84: conv= rgb16to32; break;
1772         case 0x86: conv= rgb24to32; break;
1773         }
1774     } else if (  (isBGRinInt(srcFormat) && isRGBinInt(dstFormat))
1775              || (isRGBinInt(srcFormat) && isBGRinInt(dstFormat))) {
1776         switch(srcId | (dstId<<4)) {
1777         case 0x33: conv= rgb15tobgr15; break;
1778         case 0x34: conv= rgb16tobgr15; break;
1779         case 0x36: conv= rgb24tobgr15; break;
1780         case 0x38: conv= rgb32tobgr15; break;
1781         case 0x43: conv= rgb15tobgr16; break;
1782         case 0x44: conv= rgb16tobgr16; break;
1783         case 0x46: conv= rgb24tobgr16; break;
1784         case 0x48: conv= rgb32tobgr16; break;
1785         case 0x63: conv= rgb15tobgr24; break;
1786         case 0x64: conv= rgb16tobgr24; break;
1787         case 0x66: conv= rgb24tobgr24; break;
1788         case 0x68: conv= rgb32tobgr24; break;
1789         case 0x83: conv= rgb15tobgr32; break;
1790         case 0x84: conv= rgb16tobgr32; break;
1791         case 0x86: conv= rgb24tobgr32; break;
1792         }
1793     }
1794
1795     if (!conv) {
1796         av_log(c, AV_LOG_ERROR, "internal error %s -> %s converter\n",
1797                sws_format_name(srcFormat), sws_format_name(dstFormat));
1798     } else {
1799         const uint8_t *srcPtr= src[0];
1800               uint8_t *dstPtr= dst[0];
1801         if ((srcFormat == PIX_FMT_RGB32_1 || srcFormat == PIX_FMT_BGR32_1) && !isRGBA32(dstFormat))
1802             srcPtr += ALT32_CORR;
1803
1804         if ((dstFormat == PIX_FMT_RGB32_1 || dstFormat == PIX_FMT_BGR32_1) && !isRGBA32(srcFormat))
1805             dstPtr += ALT32_CORR;
1806
1807         if (dstStride[0]*srcBpp == srcStride[0]*dstBpp && srcStride[0] > 0 && !(srcStride[0]%srcBpp))
1808             conv(srcPtr, dstPtr + dstStride[0]*srcSliceY, srcSliceH*srcStride[0]);
1809         else {
1810             int i;
1811             dstPtr += dstStride[0]*srcSliceY;
1812
1813             for (i=0; i<srcSliceH; i++) {
1814                 conv(srcPtr, dstPtr, c->srcW*srcBpp);
1815                 srcPtr+= srcStride[0];
1816                 dstPtr+= dstStride[0];
1817             }
1818         }
1819     }
1820     return srcSliceH;
1821 }
1822
1823 static int bgr24ToYv12Wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1824                               int srcSliceH, uint8_t* dst[], int dstStride[])
1825 {
1826     rgb24toyv12(
1827         src[0],
1828         dst[0]+ srcSliceY    *dstStride[0],
1829         dst[1]+(srcSliceY>>1)*dstStride[1],
1830         dst[2]+(srcSliceY>>1)*dstStride[2],
1831         c->srcW, srcSliceH,
1832         dstStride[0], dstStride[1], srcStride[0]);
1833     if (dst[3])
1834         fillPlane(dst[3], dstStride[3], c->srcW, srcSliceH, srcSliceY, 255);
1835     return srcSliceH;
1836 }
1837
1838 static int yvu9ToYv12Wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1839                              int srcSliceH, uint8_t* dst[], int dstStride[])
1840 {
1841     copyPlane(src[0], srcStride[0], srcSliceY, srcSliceH, c->srcW,
1842               dst[0], dstStride[0]);
1843
1844     planar2x(src[1], dst[1] + dstStride[1]*(srcSliceY >> 1), c->chrSrcW,
1845              srcSliceH >> 2, srcStride[1], dstStride[1]);
1846     planar2x(src[2], dst[2] + dstStride[2]*(srcSliceY >> 1), c->chrSrcW,
1847              srcSliceH >> 2, srcStride[2], dstStride[2]);
1848     if (dst[3])
1849         fillPlane(dst[3], dstStride[3], c->srcW, srcSliceH, srcSliceY, 255);
1850     return srcSliceH;
1851 }
1852
1853 /* unscaled copy like stuff (assumes nearly identical formats) */
1854 static int packedCopyWrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1855                              int srcSliceH, uint8_t* dst[], int dstStride[])
1856 {
1857     if (dstStride[0]==srcStride[0] && srcStride[0] > 0)
1858         memcpy(dst[0] + dstStride[0]*srcSliceY, src[0], srcSliceH*dstStride[0]);
1859     else {
1860         int i;
1861         const uint8_t *srcPtr= src[0];
1862         uint8_t *dstPtr= dst[0] + dstStride[0]*srcSliceY;
1863         int length=0;
1864
1865         /* universal length finder */
1866         while(length+c->srcW <= FFABS(dstStride[0])
1867            && length+c->srcW <= FFABS(srcStride[0])) length+= c->srcW;
1868         assert(length!=0);
1869
1870         for (i=0; i<srcSliceH; i++) {
1871             memcpy(dstPtr, srcPtr, length);
1872             srcPtr+= srcStride[0];
1873             dstPtr+= dstStride[0];
1874         }
1875     }
1876     return srcSliceH;
1877 }
1878
1879 #define DITHER_COPY(dst, dstStride, src, srcStride, bswap, dbswap)\
1880     uint16_t scale= dither_scale[dst_depth-1][src_depth-1];\
1881     int shift= src_depth-dst_depth + dither_scale[src_depth-2][dst_depth-1];\
1882     for (i = 0; i < height; i++) {\
1883         uint8_t *dither= dithers[src_depth-9][i&7];\
1884         for (j = 0; j < length-7; j+=8){\
1885             dst[j+0] = dbswap((bswap(src[j+0]) + dither[0])*scale>>shift);\
1886             dst[j+1] = dbswap((bswap(src[j+1]) + dither[1])*scale>>shift);\
1887             dst[j+2] = dbswap((bswap(src[j+2]) + dither[2])*scale>>shift);\
1888             dst[j+3] = dbswap((bswap(src[j+3]) + dither[3])*scale>>shift);\
1889             dst[j+4] = dbswap((bswap(src[j+4]) + dither[4])*scale>>shift);\
1890             dst[j+5] = dbswap((bswap(src[j+5]) + dither[5])*scale>>shift);\
1891             dst[j+6] = dbswap((bswap(src[j+6]) + dither[6])*scale>>shift);\
1892             dst[j+7] = dbswap((bswap(src[j+7]) + dither[7])*scale>>shift);\
1893         }\
1894         for (; j < length; j++)\
1895             dst[j] = dbswap((bswap(src[j]) + dither[j&7])*scale>>shift);\
1896         dst += dstStride;\
1897         src += srcStride;\
1898     }
1899
1900
1901 static int planarCopyWrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
1902                              int srcSliceH, uint8_t* dst[], int dstStride[])
1903 {
1904     int plane, i, j;
1905     for (plane=0; plane<4; plane++) {
1906         int length= (plane==0 || plane==3) ? c->srcW  : -((-c->srcW  )>>c->chrDstHSubSample);
1907         int y=      (plane==0 || plane==3) ? srcSliceY: -((-srcSliceY)>>c->chrDstVSubSample);
1908         int height= (plane==0 || plane==3) ? srcSliceH: -((-srcSliceH)>>c->chrDstVSubSample);
1909         const uint8_t *srcPtr= src[plane];
1910         uint8_t *dstPtr= dst[plane] + dstStride[plane]*y;
1911
1912         if (!dst[plane]) continue;
1913         // ignore palette for GRAY8
1914         if (plane == 1 && !dst[2]) continue;
1915         if (!src[plane] || (plane == 1 && !src[2])) {
1916             if(is16BPS(c->dstFormat))
1917                 length*=2;
1918             fillPlane(dst[plane], dstStride[plane], length, height, y, (plane==3) ? 255 : 128);
1919         } else {
1920             if(isNBPS(c->srcFormat) || isNBPS(c->dstFormat)
1921                || (is16BPS(c->srcFormat) != is16BPS(c->dstFormat))
1922             ) {
1923                 const int src_depth = av_pix_fmt_descriptors[c->srcFormat].comp[plane].depth_minus1+1;
1924                 const int dst_depth = av_pix_fmt_descriptors[c->dstFormat].comp[plane].depth_minus1+1;
1925                 const uint16_t *srcPtr2 = (const uint16_t*)srcPtr;
1926                 uint16_t *dstPtr2 = (uint16_t*)dstPtr;
1927
1928                 if (dst_depth == 8) {
1929                     if(isBE(c->srcFormat) == HAVE_BIGENDIAN){
1930                         DITHER_COPY(dstPtr, dstStride[plane], srcPtr2, srcStride[plane]/2, , )
1931                     } else {
1932                         DITHER_COPY(dstPtr, dstStride[plane], srcPtr2, srcStride[plane]/2, av_bswap16, )
1933                     }
1934                 } else if (src_depth == 8) {
1935                     for (i = 0; i < height; i++) {
1936                         if(isBE(c->dstFormat)){
1937                             for (j = 0; j < length; j++)
1938                                 AV_WB16(&dstPtr2[j], (srcPtr[j]<<(dst_depth-8)) |
1939                                                      (srcPtr[j]>>(2*8-dst_depth)));
1940                         } else {
1941                             for (j = 0; j < length; j++)
1942                                 AV_WL16(&dstPtr2[j], (srcPtr[j]<<(dst_depth-8)) |
1943                                                      (srcPtr[j]>>(2*8-dst_depth)));
1944                         }
1945                         dstPtr2 += dstStride[plane]/2;
1946                         srcPtr  += srcStride[plane];
1947                     }
1948                 } else if (src_depth <= dst_depth) {
1949                     for (i = 0; i < height; i++) {
1950 #define COPY_UP(r,w) \
1951     for (j = 0; j < length; j++){ \
1952         unsigned int v= r(&srcPtr2[j]);\
1953         w(&dstPtr2[j], (v<<(dst_depth-src_depth)) | \
1954                        (v>>(2*src_depth-dst_depth)));\
1955     }
1956                         if(isBE(c->srcFormat)){
1957                             if(isBE(c->dstFormat)){
1958                                 COPY_UP(AV_RB16, AV_WB16)
1959                             } else {
1960                                 COPY_UP(AV_RB16, AV_WL16)
1961                             }
1962                         } else {
1963                             if(isBE(c->dstFormat)){
1964                                 COPY_UP(AV_RL16, AV_WB16)
1965                             } else {
1966                                 COPY_UP(AV_RL16, AV_WL16)
1967                             }
1968                         }
1969                         dstPtr2 += dstStride[plane]/2;
1970                         srcPtr2 += srcStride[plane]/2;
1971                     }
1972                 } else {
1973                     if(isBE(c->srcFormat) == HAVE_BIGENDIAN){
1974                         if(isBE(c->dstFormat) == HAVE_BIGENDIAN){
1975                             DITHER_COPY(dstPtr2, dstStride[plane]/2, srcPtr2, srcStride[plane]/2, , )
1976                         } else {
1977                             DITHER_COPY(dstPtr2, dstStride[plane]/2, srcPtr2, srcStride[plane]/2, , av_bswap16)
1978                         }
1979                     }else{
1980                         if(isBE(c->dstFormat) == HAVE_BIGENDIAN){
1981                             DITHER_COPY(dstPtr2, dstStride[plane]/2, srcPtr2, srcStride[plane]/2, av_bswap16, )
1982                         } else {
1983                             DITHER_COPY(dstPtr2, dstStride[plane]/2, srcPtr2, srcStride[plane]/2, av_bswap16, av_bswap16)
1984                         }
1985                     }
1986                 }
1987             } else if(is16BPS(c->srcFormat) && is16BPS(c->dstFormat)
1988                   && isBE(c->srcFormat) != isBE(c->dstFormat)) {
1989
1990                 for (i=0; i<height; i++) {
1991                     for (j=0; j<length; j++)
1992                         ((uint16_t*)dstPtr)[j] = av_bswap16(((const uint16_t*)srcPtr)[j]);
1993                     srcPtr+= srcStride[plane];
1994                     dstPtr+= dstStride[plane];
1995                 }
1996             } else if (dstStride[plane] == srcStride[plane] &&
1997                        srcStride[plane] > 0 && srcStride[plane] == length) {
1998                 memcpy(dst[plane] + dstStride[plane]*y, src[plane],
1999                        height*dstStride[plane]);
2000             } else {
2001                 if(is16BPS(c->srcFormat) && is16BPS(c->dstFormat))
2002                     length*=2;
2003                 for (i=0; i<height; i++) {
2004                     memcpy(dstPtr, srcPtr, length);
2005                     srcPtr+= srcStride[plane];
2006                     dstPtr+= dstStride[plane];
2007                 }
2008             }
2009         }
2010     }
2011     return srcSliceH;
2012 }
2013
2014 int ff_hardcodedcpuflags(void)
2015 {
2016     int flags = 0;
2017 #if   COMPILE_TEMPLATE_MMX2
2018     flags |= SWS_CPU_CAPS_MMX|SWS_CPU_CAPS_MMX2;
2019 #elif COMPILE_TEMPLATE_AMD3DNOW
2020     flags |= SWS_CPU_CAPS_MMX|SWS_CPU_CAPS_3DNOW;
2021 #elif COMPILE_TEMPLATE_MMX
2022     flags |= SWS_CPU_CAPS_MMX;
2023 #elif COMPILE_TEMPLATE_ALTIVEC
2024     flags |= SWS_CPU_CAPS_ALTIVEC;
2025 #elif ARCH_BFIN
2026     flags |= SWS_CPU_CAPS_BFIN;
2027 #endif
2028     return flags;
2029 }
2030
2031 void ff_get_unscaled_swscale(SwsContext *c)
2032 {
2033     const enum PixelFormat srcFormat = c->srcFormat;
2034     const enum PixelFormat dstFormat = c->dstFormat;
2035     const int flags = c->flags;
2036     const int dstH = c->dstH;
2037     int needsDither;
2038
2039     needsDither= isAnyRGB(dstFormat)
2040         &&  c->dstFormatBpp < 24
2041         && (c->dstFormatBpp < c->srcFormatBpp || (!isAnyRGB(srcFormat)));
2042
2043     /* yv12_to_nv12 */
2044     if ((srcFormat == PIX_FMT_YUV420P || srcFormat == PIX_FMT_YUVA420P) && (dstFormat == PIX_FMT_NV12 || dstFormat == PIX_FMT_NV21)) {
2045         c->swScale= planarToNv12Wrapper;
2046     }
2047     /* yuv2bgr */
2048     if ((srcFormat==PIX_FMT_YUV420P || srcFormat==PIX_FMT_YUV422P || srcFormat==PIX_FMT_YUVA420P) && isAnyRGB(dstFormat)
2049         && !(flags & SWS_ACCURATE_RND) && !(dstH&1)) {
2050         c->swScale= ff_yuv2rgb_get_func_ptr(c);
2051     }
2052
2053     if (srcFormat==PIX_FMT_YUV410P && (dstFormat==PIX_FMT_YUV420P || dstFormat==PIX_FMT_YUVA420P) && !(flags & SWS_BITEXACT)) {
2054         c->swScale= yvu9ToYv12Wrapper;
2055     }
2056
2057     /* bgr24toYV12 */
2058     if (srcFormat==PIX_FMT_BGR24 && (dstFormat==PIX_FMT_YUV420P || dstFormat==PIX_FMT_YUVA420P) && !(flags & SWS_ACCURATE_RND))
2059         c->swScale= bgr24ToYv12Wrapper;
2060
2061     /* RGB/BGR -> RGB/BGR (no dither needed forms) */
2062     if (   isAnyRGB(srcFormat)
2063         && isAnyRGB(dstFormat)
2064         && srcFormat != PIX_FMT_BGR8      && dstFormat != PIX_FMT_BGR8
2065         && srcFormat != PIX_FMT_RGB8      && dstFormat != PIX_FMT_RGB8
2066         && srcFormat != PIX_FMT_BGR4      && dstFormat != PIX_FMT_BGR4
2067         && srcFormat != PIX_FMT_RGB4      && dstFormat != PIX_FMT_RGB4
2068         && srcFormat != PIX_FMT_BGR4_BYTE && dstFormat != PIX_FMT_BGR4_BYTE
2069         && srcFormat != PIX_FMT_RGB4_BYTE && dstFormat != PIX_FMT_RGB4_BYTE
2070         && srcFormat != PIX_FMT_MONOBLACK && dstFormat != PIX_FMT_MONOBLACK
2071         && srcFormat != PIX_FMT_MONOWHITE && dstFormat != PIX_FMT_MONOWHITE
2072         && srcFormat != PIX_FMT_RGB48LE   && dstFormat != PIX_FMT_RGB48LE
2073         && srcFormat != PIX_FMT_RGB48BE   && dstFormat != PIX_FMT_RGB48BE
2074         && srcFormat != PIX_FMT_BGR48LE   && dstFormat != PIX_FMT_BGR48LE
2075         && srcFormat != PIX_FMT_BGR48BE   && dstFormat != PIX_FMT_BGR48BE
2076         && (!needsDither || (c->flags&(SWS_FAST_BILINEAR|SWS_POINT))))
2077         c->swScale= rgbToRgbWrapper;
2078
2079     if ((usePal(srcFormat) && (
2080         dstFormat == PIX_FMT_RGB32   ||
2081         dstFormat == PIX_FMT_RGB32_1 ||
2082         dstFormat == PIX_FMT_RGB24   ||
2083         dstFormat == PIX_FMT_BGR32   ||
2084         dstFormat == PIX_FMT_BGR32_1 ||
2085         dstFormat == PIX_FMT_BGR24)))
2086         c->swScale= palToRgbWrapper;
2087
2088     if (srcFormat == PIX_FMT_YUV422P) {
2089         if (dstFormat == PIX_FMT_YUYV422)
2090             c->swScale= yuv422pToYuy2Wrapper;
2091         else if (dstFormat == PIX_FMT_UYVY422)
2092             c->swScale= yuv422pToUyvyWrapper;
2093     }
2094
2095     /* LQ converters if -sws 0 or -sws 4*/
2096     if (c->flags&(SWS_FAST_BILINEAR|SWS_POINT)) {
2097         /* yv12_to_yuy2 */
2098         if (srcFormat == PIX_FMT_YUV420P || srcFormat == PIX_FMT_YUVA420P) {
2099             if (dstFormat == PIX_FMT_YUYV422)
2100                 c->swScale= planarToYuy2Wrapper;
2101             else if (dstFormat == PIX_FMT_UYVY422)
2102                 c->swScale= planarToUyvyWrapper;
2103         }
2104     }
2105     if(srcFormat == PIX_FMT_YUYV422 && (dstFormat == PIX_FMT_YUV420P || dstFormat == PIX_FMT_YUVA420P))
2106         c->swScale= yuyvToYuv420Wrapper;
2107     if(srcFormat == PIX_FMT_UYVY422 && (dstFormat == PIX_FMT_YUV420P || dstFormat == PIX_FMT_YUVA420P))
2108         c->swScale= uyvyToYuv420Wrapper;
2109     if(srcFormat == PIX_FMT_YUYV422 && dstFormat == PIX_FMT_YUV422P)
2110         c->swScale= yuyvToYuv422Wrapper;
2111     if(srcFormat == PIX_FMT_UYVY422 && dstFormat == PIX_FMT_YUV422P)
2112         c->swScale= uyvyToYuv422Wrapper;
2113
2114 #if COMPILE_ALTIVEC
2115     if ((c->flags & SWS_CPU_CAPS_ALTIVEC) &&
2116         !(c->flags & SWS_BITEXACT) &&
2117         srcFormat == PIX_FMT_YUV420P) {
2118         // unscaled YV12 -> packed YUV, we want speed
2119         if (dstFormat == PIX_FMT_YUYV422)
2120             c->swScale= yv12toyuy2_unscaled_altivec;
2121         else if (dstFormat == PIX_FMT_UYVY422)
2122             c->swScale= yv12touyvy_unscaled_altivec;
2123     }
2124 #endif
2125
2126     /* simple copy */
2127     if (  srcFormat == dstFormat
2128         || (srcFormat == PIX_FMT_YUVA420P && dstFormat == PIX_FMT_YUV420P)
2129         || (srcFormat == PIX_FMT_YUV420P && dstFormat == PIX_FMT_YUVA420P)
2130         || (isPlanarYUV(srcFormat) && isGray(dstFormat))
2131         || (isPlanarYUV(dstFormat) && isGray(srcFormat))
2132         || (isGray(dstFormat) && isGray(srcFormat))
2133         || (isPlanarYUV(srcFormat) && isPlanarYUV(dstFormat)
2134             && c->chrDstHSubSample == c->chrSrcHSubSample
2135             && c->chrDstVSubSample == c->chrSrcVSubSample
2136             && dstFormat != PIX_FMT_NV12 && dstFormat != PIX_FMT_NV21
2137             && srcFormat != PIX_FMT_NV12 && srcFormat != PIX_FMT_NV21))
2138     {
2139         if (isPacked(c->srcFormat))
2140             c->swScale= packedCopyWrapper;
2141         else /* Planar YUV or gray */
2142             c->swScale= planarCopyWrapper;
2143     }
2144 #if ARCH_BFIN
2145     if (flags & SWS_CPU_CAPS_BFIN)
2146         ff_bfin_get_unscaled_swscale (c);
2147 #endif
2148 }
2149
2150 static void reset_ptr(const uint8_t* src[], int format)
2151 {
2152     if(!isALPHA(format))
2153         src[3]=NULL;
2154     if(!isPlanarYUV(format)) {
2155         src[3]=src[2]=NULL;
2156
2157         if (!usePal(format))
2158             src[1]= NULL;
2159     }
2160 }
2161
2162 static int check_image_pointers(uint8_t *data[4], enum PixelFormat pix_fmt,
2163                                 const int linesizes[4])
2164 {
2165     const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
2166     int i;
2167
2168     for (i = 0; i < 4; i++) {
2169         int plane = desc->comp[i].plane;
2170         if (!data[plane] || !linesizes[plane])
2171             return 0;
2172     }
2173
2174     return 1;
2175 }
2176
2177 /**
2178  * swscale wrapper, so we don't need to export the SwsContext.
2179  * Assumes planar YUV to be in YUV order instead of YVU.
2180  */
2181 int sws_scale(SwsContext *c, const uint8_t* const src[], const int srcStride[], int srcSliceY,
2182               int srcSliceH, uint8_t* const dst[], const int dstStride[])
2183 {
2184     int i;
2185     const uint8_t* src2[4]= {src[0], src[1], src[2], src[3]};
2186     uint8_t* dst2[4]= {dst[0], dst[1], dst[2], dst[3]};
2187
2188     // do not mess up sliceDir if we have a "trailing" 0-size slice
2189     if (srcSliceH == 0)
2190         return 0;
2191
2192     if (!check_image_pointers(src, c->srcFormat, srcStride)) {
2193         av_log(c, AV_LOG_ERROR, "bad src image pointers\n");
2194         return 0;
2195     }
2196     if (!check_image_pointers(dst, c->dstFormat, dstStride)) {
2197         av_log(c, AV_LOG_ERROR, "bad dst image pointers\n");
2198         return 0;
2199     }
2200
2201     if (c->sliceDir == 0 && srcSliceY != 0 && srcSliceY + srcSliceH != c->srcH) {
2202         av_log(c, AV_LOG_ERROR, "Slices start in the middle!\n");
2203         return 0;
2204     }
2205     if (c->sliceDir == 0) {
2206         if (srcSliceY == 0) c->sliceDir = 1; else c->sliceDir = -1;
2207     }
2208
2209     if (usePal(c->srcFormat)) {
2210         for (i=0; i<256; i++) {
2211             int p, r, g, b, y, u, v, a = 0xff;
2212             if(c->srcFormat == PIX_FMT_PAL8) {
2213                 p=((const uint32_t*)(src[1]))[i];
2214                 a= (p>>24)&0xFF;
2215                 r= (p>>16)&0xFF;
2216                 g= (p>> 8)&0xFF;
2217                 b=  p     &0xFF;
2218             } else if(c->srcFormat == PIX_FMT_RGB8) {
2219                 r= (i>>5    )*36;
2220                 g= ((i>>2)&7)*36;
2221                 b= (i&3     )*85;
2222             } else if(c->srcFormat == PIX_FMT_BGR8) {
2223                 b= (i>>6    )*85;
2224                 g= ((i>>3)&7)*36;
2225                 r= (i&7     )*36;
2226             } else if(c->srcFormat == PIX_FMT_RGB4_BYTE) {
2227                 r= (i>>3    )*255;
2228                 g= ((i>>1)&3)*85;
2229                 b= (i&1     )*255;
2230             } else if(c->srcFormat == PIX_FMT_GRAY8 || c->srcFormat == PIX_FMT_GRAY8A) {
2231                 r = g = b = i;
2232             } else {
2233                 assert(c->srcFormat == PIX_FMT_BGR4_BYTE);
2234                 b= (i>>3    )*255;
2235                 g= ((i>>1)&3)*85;
2236                 r= (i&1     )*255;
2237             }
2238             y= av_clip_uint8((RY*r + GY*g + BY*b + ( 33<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT);
2239             u= av_clip_uint8((RU*r + GU*g + BU*b + (257<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT);
2240             v= av_clip_uint8((RV*r + GV*g + BV*b + (257<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT);
2241             c->pal_yuv[i]= y + (u<<8) + (v<<16) + (a<<24);
2242
2243             switch(c->dstFormat) {
2244             case PIX_FMT_BGR32:
2245 #if !HAVE_BIGENDIAN
2246             case PIX_FMT_RGB24:
2247 #endif
2248                 c->pal_rgb[i]=  r + (g<<8) + (b<<16) + (a<<24);
2249                 break;
2250             case PIX_FMT_BGR32_1:
2251 #if HAVE_BIGENDIAN
2252             case PIX_FMT_BGR24:
2253 #endif
2254                 c->pal_rgb[i]= a + (r<<8) + (g<<16) + (b<<24);
2255                 break;
2256             case PIX_FMT_RGB32_1:
2257 #if HAVE_BIGENDIAN
2258             case PIX_FMT_RGB24:
2259 #endif
2260                 c->pal_rgb[i]= a + (b<<8) + (g<<16) + (r<<24);
2261                 break;
2262             case PIX_FMT_RGB32:
2263 #if !HAVE_BIGENDIAN
2264             case PIX_FMT_BGR24:
2265 #endif
2266             default:
2267                 c->pal_rgb[i]=  b + (g<<8) + (r<<16) + (a<<24);
2268             }
2269         }
2270     }
2271
2272     // copy strides, so they can safely be modified
2273     if (c->sliceDir == 1) {
2274         // slices go from top to bottom
2275         int srcStride2[4]= {srcStride[0], srcStride[1], srcStride[2], srcStride[3]};
2276         int dstStride2[4]= {dstStride[0], dstStride[1], dstStride[2], dstStride[3]};
2277
2278         reset_ptr(src2, c->srcFormat);
2279         reset_ptr((const uint8_t**)dst2, c->dstFormat);
2280
2281         /* reset slice direction at end of frame */
2282         if (srcSliceY + srcSliceH == c->srcH)
2283             c->sliceDir = 0;
2284
2285         return c->swScale(c, src2, srcStride2, srcSliceY, srcSliceH, dst2, dstStride2);
2286     } else {
2287         // slices go from bottom to top => we flip the image internally
2288         int srcStride2[4]= {-srcStride[0], -srcStride[1], -srcStride[2], -srcStride[3]};
2289         int dstStride2[4]= {-dstStride[0], -dstStride[1], -dstStride[2], -dstStride[3]};
2290
2291         src2[0] += (srcSliceH-1)*srcStride[0];
2292         if (!usePal(c->srcFormat))
2293             src2[1] += ((srcSliceH>>c->chrSrcVSubSample)-1)*srcStride[1];
2294         src2[2] += ((srcSliceH>>c->chrSrcVSubSample)-1)*srcStride[2];
2295         src2[3] += (srcSliceH-1)*srcStride[3];
2296         dst2[0] += ( c->dstH                      -1)*dstStride[0];
2297         dst2[1] += ((c->dstH>>c->chrDstVSubSample)-1)*dstStride[1];
2298         dst2[2] += ((c->dstH>>c->chrDstVSubSample)-1)*dstStride[2];
2299         dst2[3] += ( c->dstH                      -1)*dstStride[3];
2300
2301         reset_ptr(src2, c->srcFormat);
2302         reset_ptr((const uint8_t**)dst2, c->dstFormat);
2303
2304         /* reset slice direction at end of frame */
2305         if (!srcSliceY)
2306             c->sliceDir = 0;
2307
2308         return c->swScale(c, src2, srcStride2, c->srcH-srcSliceY-srcSliceH, srcSliceH, dst2, dstStride2);
2309     }
2310 }
2311
2312 #if LIBSWSCALE_VERSION_MAJOR < 1
2313 int sws_scale_ordered(SwsContext *c, const uint8_t* const src[], int srcStride[], int srcSliceY,
2314                       int srcSliceH, uint8_t* dst[], int dstStride[])
2315 {
2316     return sws_scale(c, src, srcStride, srcSliceY, srcSliceH, dst, dstStride);
2317 }
2318 #endif
2319
2320 /* Convert the palette to the same packed 32-bit format as the palette */
2321 void sws_convertPalette8ToPacked32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
2322 {
2323     long i;
2324
2325     for (i=0; i<num_pixels; i++)
2326         ((uint32_t *) dst)[i] = ((const uint32_t *) palette)[src[i]];
2327 }
2328
2329 /* Palette format: ABCD -> dst format: ABC */
2330 void sws_convertPalette8ToPacked24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
2331 {
2332     long i;
2333
2334     for (i=0; i<num_pixels; i++) {
2335         //FIXME slow?
2336         dst[0]= palette[src[i]*4+0];
2337         dst[1]= palette[src[i]*4+1];
2338         dst[2]= palette[src[i]*4+2];
2339         dst+= 3;
2340     }
2341 }