]> git.sesse.net Git - ffmpeg/blob - postproc/yuv2rgb.c
cleanup
[ffmpeg] / postproc / yuv2rgb.c
1 /*
2  * yuv2rgb.c, Software YUV to RGB coverter
3  *
4  *  Copyright (C) 1999, Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
5  *  All Rights Reserved.
6  *
7  *  Functions broken out from display_x11.c and several new modes
8  *  added by HÃ¥kan Hjort <d95hjort@dtek.chalmers.se>
9  *
10  *  15 & 16 bpp support by Franck Sicard <Franck.Sicard@solsoft.fr>
11  *
12  *  This file is part of mpeg2dec, a free MPEG-2 video decoder
13  *
14  *  mpeg2dec is free software; you can redistribute it and/or modify
15  *  it under the terms of the GNU General Public License as published by
16  *  the Free Software Foundation; either version 2, or (at your option)
17  *  any later version.
18  *
19  *  mpeg2dec is distributed in the hope that it will be useful,
20  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *  GNU General Public License for more details.
23  *
24  *  You should have received a copy of the GNU General Public License
25  *  along with GNU Make; see the file COPYING.  If not, write to
26  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27  *
28  * MMX/MMX2 Template stuff from Michael Niedermayer (michaelni@gmx.at) (needed for fast movntq support)
29  * 1,4,8bpp support by Michael Niedermayer (michaelni@gmx.at)
30  * context / deglobalize stuff by Michael Niedermayer
31  */
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <inttypes.h>
36 #include <assert.h>
37
38 #include "config.h"
39 //#include "video_out.h"
40 #include "rgb2rgb.h"
41 #include "swscale.h"
42 #include "swscale_internal.h"
43 #include "../cpudetect.h"
44 #include "../mangle.h"
45 #include "../mp_msg.h"
46 #include "../libvo/img_format.h" //FIXME try to reduce dependency of such stuff
47
48 #ifdef HAVE_MLIB
49 #include "yuv2rgb_mlib.c"
50 #endif
51
52 #define DITHER1XBPP // only for mmx
53
54 const uint8_t  __attribute__((aligned(8))) dither_2x2_4[2][8]={
55 {  1,   3,   1,   3,   1,   3,   1,   3, },
56 {  2,   0,   2,   0,   2,   0,   2,   0, },
57 };
58
59 const uint8_t  __attribute__((aligned(8))) dither_2x2_8[2][8]={
60 {  6,   2,   6,   2,   6,   2,   6,   2, },
61 {  0,   4,   0,   4,   0,   4,   0,   4, },
62 };
63
64 const uint8_t  __attribute__((aligned(8))) dither_8x8_32[8][8]={
65 { 17,   9,  23,  15,  16,   8,  22,  14, },
66 {  5,  29,   3,  27,   4,  28,   2,  26, },
67 { 21,  13,  19,  11,  20,  12,  18,  10, },
68 {  0,  24,   6,  30,   1,  25,   7,  31, },
69 { 16,   8,  22,  14,  17,   9,  23,  15, },
70 {  4,  28,   2,  26,   5,  29,   3,  27, },
71 { 20,  12,  18,  10,  21,  13,  19,  11, },
72 {  1,  25,   7,  31,   0,  24,   6,  30, },
73 };
74
75 #if 0
76 const uint8_t  __attribute__((aligned(8))) dither_8x8_64[8][8]={
77 {  0,  48,  12,  60,   3,  51,  15,  63, },
78 { 32,  16,  44,  28,  35,  19,  47,  31, },
79 {  8,  56,   4,  52,  11,  59,   7,  55, },
80 { 40,  24,  36,  20,  43,  27,  39,  23, },
81 {  2,  50,  14,  62,   1,  49,  13,  61, },
82 { 34,  18,  46,  30,  33,  17,  45,  29, },
83 { 10,  58,   6,  54,   9,  57,   5,  53, },
84 { 42,  26,  38,  22,  41,  25,  37,  21, },
85 };
86 #endif
87
88 const uint8_t  __attribute__((aligned(8))) dither_8x8_73[8][8]={
89 {  0,  55,  14,  68,   3,  58,  17,  72, },
90 { 37,  18,  50,  32,  40,  22,  54,  35, },
91 {  9,  64,   5,  59,  13,  67,   8,  63, },
92 { 46,  27,  41,  23,  49,  31,  44,  26, },
93 {  2,  57,  16,  71,   1,  56,  15,  70, },
94 { 39,  21,  52,  34,  38,  19,  51,  33, },
95 { 11,  66,   7,  62,  10,  65,   6,  60, },
96 { 48,  30,  43,  25,  47,  29,  42,  24, },
97 };
98
99 #if 0
100 const uint8_t  __attribute__((aligned(8))) dither_8x8_128[8][8]={
101 { 68,  36,  92,  60,  66,  34,  90,  58, },
102 { 20, 116,  12, 108,  18, 114,  10, 106, },
103 { 84,  52,  76,  44,  82,  50,  74,  42, },
104 {  0,  96,  24, 120,   6, 102,  30, 126, },
105 { 64,  32,  88,  56,  70,  38,  94,  62, },
106 { 16, 112,   8, 104,  22, 118,  14, 110, },
107 { 80,  48,  72,  40,  86,  54,  78,  46, },
108 {  4, 100,  28, 124,   2,  98,  26, 122, },
109 };
110 #endif
111
112 #if 1
113 const uint8_t  __attribute__((aligned(8))) dither_8x8_220[8][8]={
114 {117,  62, 158, 103, 113,  58, 155, 100, },
115 { 34, 199,  21, 186,  31, 196,  17, 182, },
116 {144,  89, 131,  76, 141,  86, 127,  72, },
117 {  0, 165,  41, 206,  10, 175,  52, 217, },
118 {110,  55, 151,  96, 120,  65, 162, 107, },
119 { 28, 193,  14, 179,  38, 203,  24, 189, },
120 {138,  83, 124,  69, 148,  93, 134,  79, },
121 {  7, 172,  48, 213,   3, 168,  45, 210, },
122 };
123 #elif 1
124 // tries to correct a gamma of 1.5
125 const uint8_t  __attribute__((aligned(8))) dither_8x8_220[8][8]={
126 {  0, 143,  18, 200,   2, 156,  25, 215, },
127 { 78,  28, 125,  64,  89,  36, 138,  74, },
128 { 10, 180,   3, 161,  16, 195,   8, 175, },
129 {109,  51,  93,  38, 121,  60, 105,  47, },
130 {  1, 152,  23, 210,   0, 147,  20, 205, },
131 { 85,  33, 134,  71,  81,  30, 130,  67, },
132 { 14, 190,   6, 171,  12, 185,   5, 166, },
133 {117,  57, 101,  44, 113,  54,  97,  41, },
134 };
135 #elif 1
136 // tries to correct a gamma of 2.0
137 const uint8_t  __attribute__((aligned(8))) dither_8x8_220[8][8]={
138 {  0, 124,   8, 193,   0, 140,  12, 213, },
139 { 55,  14, 104,  42,  66,  19, 119,  52, },
140 {  3, 168,   1, 145,   6, 187,   3, 162, },
141 { 86,  31,  70,  21,  99,  39,  82,  28, },
142 {  0, 134,  11, 206,   0, 129,   9, 200, },
143 { 62,  17, 114,  48,  58,  16, 109,  45, },
144 {  5, 181,   2, 157,   4, 175,   1, 151, },
145 { 95,  36,  78,  26,  90,  34,  74,  24, },
146 };
147 #else
148 // tries to correct a gamma of 2.5
149 const uint8_t  __attribute__((aligned(8))) dither_8x8_220[8][8]={
150 {  0, 107,   3, 187,   0, 125,   6, 212, },
151 { 39,   7,  86,  28,  49,  11, 102,  36, },
152 {  1, 158,   0, 131,   3, 180,   1, 151, },
153 { 68,  19,  52,  12,  81,  25,  64,  17, },
154 {  0, 119,   5, 203,   0, 113,   4, 195, },
155 { 45,   9,  96,  33,  42,   8,  91,  30, },
156 {  2, 172,   1, 144,   2, 165,   0, 137, },
157 { 77,  23,  60,  15,  72,  21,  56,  14, },
158 };
159 #endif
160
161 #ifdef ARCH_X86
162
163 /* hope these constant values are cache line aligned */
164 uint64_t __attribute__((aligned(8))) mmx_00ffw = 0x00ff00ff00ff00ff;
165 uint64_t __attribute__((aligned(8))) mmx_redmask = 0xf8f8f8f8f8f8f8f8;
166 uint64_t __attribute__((aligned(8))) mmx_grnmask = 0xfcfcfcfcfcfcfcfc;
167
168 uint64_t __attribute__((aligned(8))) M24A=   0x00FF0000FF0000FFLL;
169 uint64_t __attribute__((aligned(8))) M24B=   0xFF0000FF0000FF00LL;
170 uint64_t __attribute__((aligned(8))) M24C=   0x0000FF0000FF0000LL;
171
172 // the volatile is required because gcc otherwise optimizes some writes away not knowing that these
173 // are read in the asm block
174 volatile uint64_t __attribute__((aligned(8))) b5Dither;
175 volatile uint64_t __attribute__((aligned(8))) g5Dither;
176 volatile uint64_t __attribute__((aligned(8))) g6Dither;
177 volatile uint64_t __attribute__((aligned(8))) r5Dither;
178
179 uint64_t __attribute__((aligned(8))) dither4[2]={
180         0x0103010301030103LL,
181         0x0200020002000200LL,};
182
183 uint64_t __attribute__((aligned(8))) dither8[2]={
184         0x0602060206020602LL,
185         0x0004000400040004LL,};
186
187 #undef HAVE_MMX
188 #undef ARCH_X86
189
190 //MMX versions
191 #undef RENAME
192 #define HAVE_MMX
193 #undef HAVE_MMX2
194 #undef HAVE_3DNOW
195 #define ARCH_X86
196 #define RENAME(a) a ## _MMX
197 #include "yuv2rgb_template.c"
198
199 //MMX2 versions
200 #undef RENAME
201 #define HAVE_MMX
202 #define HAVE_MMX2
203 #undef HAVE_3DNOW
204 #define ARCH_X86
205 #define RENAME(a) a ## _MMX2
206 #include "yuv2rgb_template.c"
207
208 #endif // CAN_COMPILE_X86_ASM
209
210 const int32_t Inverse_Table_6_9[8][4] = {
211     {117504, 138453, 13954, 34903}, /* no sequence_display_extension */
212     {117504, 138453, 13954, 34903}, /* ITU-R Rec. 709 (1990) */
213     {104597, 132201, 25675, 53279}, /* unspecified */
214     {104597, 132201, 25675, 53279}, /* reserved */
215     {104448, 132798, 24759, 53109}, /* FCC */
216     {104597, 132201, 25675, 53279}, /* ITU-R Rec. 624-4 System B, G */
217     {104597, 132201, 25675, 53279}, /* SMPTE 170M */
218     {117579, 136230, 16907, 35559}  /* SMPTE 240M (1987) */
219 };
220
221 #define RGB(i)                                  \
222         U = pu[i];                              \
223         V = pv[i];                              \
224         r = c->table_rV[V];                     \
225         g = c->table_gU[U] + c->table_gV[V];            \
226         b = c->table_bU[U];
227
228 #define DST1(i)                                 \
229         Y = py_1[2*i];                          \
230         dst_1[2*i] = r[Y] + g[Y] + b[Y];        \
231         Y = py_1[2*i+1];                        \
232         dst_1[2*i+1] = r[Y] + g[Y] + b[Y];
233
234 #define DST2(i)                                 \
235         Y = py_2[2*i];                          \
236         dst_2[2*i] = r[Y] + g[Y] + b[Y];        \
237         Y = py_2[2*i+1];                        \
238         dst_2[2*i+1] = r[Y] + g[Y] + b[Y];
239
240 #define DST1RGB(i)                                                      \
241         Y = py_1[2*i];                                                  \
242         dst_1[6*i] = r[Y]; dst_1[6*i+1] = g[Y]; dst_1[6*i+2] = b[Y];    \
243         Y = py_1[2*i+1];                                                \
244         dst_1[6*i+3] = r[Y]; dst_1[6*i+4] = g[Y]; dst_1[6*i+5] = b[Y];
245
246 #define DST2RGB(i)                                                      \
247         Y = py_2[2*i];                                                  \
248         dst_2[6*i] = r[Y]; dst_2[6*i+1] = g[Y]; dst_2[6*i+2] = b[Y];    \
249         Y = py_2[2*i+1];                                                \
250         dst_2[6*i+3] = r[Y]; dst_2[6*i+4] = g[Y]; dst_2[6*i+5] = b[Y];
251
252 #define DST1BGR(i)                                                      \
253         Y = py_1[2*i];                                                  \
254         dst_1[6*i] = b[Y]; dst_1[6*i+1] = g[Y]; dst_1[6*i+2] = r[Y];    \
255         Y = py_1[2*i+1];                                                \
256         dst_1[6*i+3] = b[Y]; dst_1[6*i+4] = g[Y]; dst_1[6*i+5] = r[Y];
257
258 #define DST2BGR(i)                                                      \
259         Y = py_2[2*i];                                                  \
260         dst_2[6*i] = b[Y]; dst_2[6*i+1] = g[Y]; dst_2[6*i+2] = r[Y];    \
261         Y = py_2[2*i+1];                                                \
262         dst_2[6*i+3] = b[Y]; dst_2[6*i+4] = g[Y]; dst_2[6*i+5] = r[Y];
263
264 #define PROLOG(func_name, dst_type) \
265 static int func_name(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, \
266              int srcSliceH, uint8_t* dst[], int dstStride[]){\
267     int y;\
268 \
269     if(c->srcFormat == IMGFMT_422P){\
270         srcStride[1] *= 2;\
271         srcStride[2] *= 2;\
272     }\
273     for(y=0; y<srcSliceH; y+=2){\
274         dst_type *dst_1= (dst_type*)(dst[0] + (y+srcSliceY  )*dstStride[0]);\
275         dst_type *dst_2= (dst_type*)(dst[0] + (y+srcSliceY+1)*dstStride[0]);\
276         dst_type *r, *g, *b;\
277         uint8_t *py_1= src[0] + y*srcStride[0];\
278         uint8_t *py_2= py_1 + srcStride[0];\
279         uint8_t *pu= src[1] + (y>>1)*srcStride[1];\
280         uint8_t *pv= src[2] + (y>>1)*srcStride[2];\
281         unsigned int h_size= c->dstW>>3;\
282         while (h_size--) {\
283             int U, V, Y;\
284
285 #define EPILOG(dst_delta)\
286             pu += 4;\
287             pv += 4;\
288             py_1 += 8;\
289             py_2 += 8;\
290             dst_1 += dst_delta;\
291             dst_2 += dst_delta;\
292         }\
293     }\
294     return srcSliceH;\
295 }
296
297 PROLOG(yuv2rgb_c_32, uint32_t)
298         RGB(0);
299         DST1(0);
300         DST2(0);
301
302         RGB(1);
303         DST2(1);
304         DST1(1);
305
306         RGB(2);
307         DST1(2);
308         DST2(2);
309
310         RGB(3);
311         DST2(3);
312         DST1(3);
313 EPILOG(8)
314
315 PROLOG(yuv2rgb_c_24_rgb, uint8_t)
316         RGB(0);
317         DST1RGB(0);
318         DST2RGB(0);
319
320         RGB(1);
321         DST2RGB(1);
322         DST1RGB(1);
323
324         RGB(2);
325         DST1RGB(2);
326         DST2RGB(2);
327
328         RGB(3);
329         DST2RGB(3);
330         DST1RGB(3);
331 EPILOG(24)
332
333 // only trivial mods from yuv2rgb_c_24_rgb
334 PROLOG(yuv2rgb_c_24_bgr, uint8_t)
335         RGB(0);
336         DST1BGR(0);
337         DST2BGR(0);
338
339         RGB(1);
340         DST2BGR(1);
341         DST1BGR(1);
342
343         RGB(2);
344         DST1BGR(2);
345         DST2BGR(2);
346
347         RGB(3);
348         DST2BGR(3);
349         DST1BGR(3);
350 EPILOG(24)
351
352 // This is exactly the same code as yuv2rgb_c_32 except for the types of
353 // r, g, b, dst_1, dst_2
354 PROLOG(yuv2rgb_c_16, uint16_t)
355         RGB(0);
356         DST1(0);
357         DST2(0);
358
359         RGB(1);
360         DST2(1);
361         DST1(1);
362
363         RGB(2);
364         DST1(2);
365         DST2(2);
366
367         RGB(3);
368         DST2(3);
369         DST1(3);
370 EPILOG(8)
371
372 // This is exactly the same code as yuv2rgb_c_32 except for the types of
373 // r, g, b, dst_1, dst_2
374 PROLOG(yuv2rgb_c_8, uint8_t)
375         RGB(0);
376         DST1(0);
377         DST2(0);
378
379         RGB(1);
380         DST2(1);
381         DST1(1);
382
383         RGB(2);
384         DST1(2);
385         DST2(2);
386
387         RGB(3);
388         DST2(3);
389         DST1(3);
390 EPILOG(8)
391
392 // r, g, b, dst_1, dst_2
393 PROLOG(yuv2rgb_c_8_ordered_dither, uint8_t)
394         const uint8_t *d32= dither_8x8_32[y&7];
395         const uint8_t *d64= dither_8x8_73[y&7];
396 #define DST1bpp8(i,o)                                   \
397         Y = py_1[2*i];                          \
398         dst_1[2*i] = r[Y+d32[0+o]] + g[Y+d32[0+o]] + b[Y+d64[0+o]];     \
399         Y = py_1[2*i+1];                        \
400         dst_1[2*i+1] = r[Y+d32[1+o]] + g[Y+d32[1+o]] + b[Y+d64[1+o]];
401
402 #define DST2bpp8(i,o)                                   \
403         Y = py_2[2*i];                          \
404         dst_2[2*i] =  r[Y+d32[8+o]] + g[Y+d32[8+o]] + b[Y+d64[8+o]];    \
405         Y = py_2[2*i+1];                        \
406         dst_2[2*i+1] =  r[Y+d32[9+o]] + g[Y+d32[9+o]] + b[Y+d64[9+o]];
407
408
409         RGB(0);
410         DST1bpp8(0,0);
411         DST2bpp8(0,0);
412
413         RGB(1);
414         DST2bpp8(1,2);
415         DST1bpp8(1,2);
416
417         RGB(2);
418         DST1bpp8(2,4);
419         DST2bpp8(2,4);
420
421         RGB(3);
422         DST2bpp8(3,6);
423         DST1bpp8(3,6);
424 EPILOG(8)
425
426
427 // This is exactly the same code as yuv2rgb_c_32 except for the types of
428 // r, g, b, dst_1, dst_2
429 PROLOG(yuv2rgb_c_4, uint8_t)
430         int acc;
431 #define DST1_4(i)                                       \
432         Y = py_1[2*i];                          \
433         acc = r[Y] + g[Y] + b[Y];       \
434         Y = py_1[2*i+1];                        \
435         acc |= (r[Y] + g[Y] + b[Y])<<4;\
436         dst_1[i] = acc; 
437
438 #define DST2_4(i)                                       \
439         Y = py_2[2*i];                          \
440         acc = r[Y] + g[Y] + b[Y];       \
441         Y = py_2[2*i+1];                        \
442         acc |= (r[Y] + g[Y] + b[Y])<<4;\
443         dst_2[i] = acc; 
444         
445         RGB(0);
446         DST1_4(0);
447         DST2_4(0);
448
449         RGB(1);
450         DST2_4(1);
451         DST1_4(1);
452
453         RGB(2);
454         DST1_4(2);
455         DST2_4(2);
456
457         RGB(3);
458         DST2_4(3);
459         DST1_4(3);
460 EPILOG(4)
461
462 PROLOG(yuv2rgb_c_4_ordered_dither, uint8_t)
463         const uint8_t *d64= dither_8x8_73[y&7];
464         const uint8_t *d128=dither_8x8_220[y&7];
465         int acc;
466
467 #define DST1bpp4(i,o)                                   \
468         Y = py_1[2*i];                          \
469         acc = r[Y+d128[0+o]] + g[Y+d64[0+o]] + b[Y+d128[0+o]];  \
470         Y = py_1[2*i+1];                        \
471         acc |= (r[Y+d128[1+o]] + g[Y+d64[1+o]] + b[Y+d128[1+o]])<<4;\
472         dst_1[i]= acc;
473
474 #define DST2bpp4(i,o)                                   \
475         Y = py_2[2*i];                          \
476         acc =  r[Y+d128[8+o]] + g[Y+d64[8+o]] + b[Y+d128[8+o]]; \
477         Y = py_2[2*i+1];                        \
478         acc |=  (r[Y+d128[9+o]] + g[Y+d64[9+o]] + b[Y+d128[9+o]])<<4;\
479         dst_2[i]= acc;
480
481
482         RGB(0);
483         DST1bpp4(0,0);
484         DST2bpp4(0,0);
485
486         RGB(1);
487         DST2bpp4(1,2);
488         DST1bpp4(1,2);
489
490         RGB(2);
491         DST1bpp4(2,4);
492         DST2bpp4(2,4);
493
494         RGB(3);
495         DST2bpp4(3,6);
496         DST1bpp4(3,6);
497 EPILOG(4)
498
499 // This is exactly the same code as yuv2rgb_c_32 except for the types of
500 // r, g, b, dst_1, dst_2
501 PROLOG(yuv2rgb_c_4b, uint8_t)
502         RGB(0);
503         DST1(0);
504         DST2(0);
505
506         RGB(1);
507         DST2(1);
508         DST1(1);
509
510         RGB(2);
511         DST1(2);
512         DST2(2);
513
514         RGB(3);
515         DST2(3);
516         DST1(3);
517 EPILOG(8)
518
519 PROLOG(yuv2rgb_c_4b_ordered_dither, uint8_t)
520         const uint8_t *d64= dither_8x8_73[y&7];
521         const uint8_t *d128=dither_8x8_220[y&7];
522
523 #define DST1bpp4b(i,o)                                  \
524         Y = py_1[2*i];                          \
525         dst_1[2*i] = r[Y+d128[0+o]] + g[Y+d64[0+o]] + b[Y+d128[0+o]];   \
526         Y = py_1[2*i+1];                        \
527         dst_1[2*i+1] = r[Y+d128[1+o]] + g[Y+d64[1+o]] + b[Y+d128[1+o]];
528
529 #define DST2bpp4b(i,o)                                  \
530         Y = py_2[2*i];                          \
531         dst_2[2*i] =  r[Y+d128[8+o]] + g[Y+d64[8+o]] + b[Y+d128[8+o]];  \
532         Y = py_2[2*i+1];                        \
533         dst_2[2*i+1] =  r[Y+d128[9+o]] + g[Y+d64[9+o]] + b[Y+d128[9+o]];
534
535
536         RGB(0);
537         DST1bpp4b(0,0);
538         DST2bpp4b(0,0);
539
540         RGB(1);
541         DST2bpp4b(1,2);
542         DST1bpp4b(1,2);
543
544         RGB(2);
545         DST1bpp4b(2,4);
546         DST2bpp4b(2,4);
547
548         RGB(3);
549         DST2bpp4b(3,6);
550         DST1bpp4b(3,6);
551 EPILOG(8)
552
553 PROLOG(yuv2rgb_c_1_ordered_dither, uint8_t)
554         const uint8_t *d128=dither_8x8_220[y&7];
555         char out_1=0, out_2=0;
556         g= c->table_gU[128] + c->table_gV[128];
557
558 #define DST1bpp1(i,o)                                   \
559         Y = py_1[2*i];                          \
560         out_1+= out_1 + g[Y+d128[0+o]]; \
561         Y = py_1[2*i+1];                        \
562         out_1+= out_1 + g[Y+d128[1+o]];
563
564 #define DST2bpp1(i,o)                                   \
565         Y = py_2[2*i];                          \
566         out_2+= out_2 + g[Y+d128[8+o]]; \
567         Y = py_2[2*i+1];                        \
568         out_2+= out_2 + g[Y+d128[9+o]];
569
570         DST1bpp1(0,0);
571         DST2bpp1(0,0);
572
573         DST2bpp1(1,2);
574         DST1bpp1(1,2);
575
576         DST1bpp1(2,4);
577         DST2bpp1(2,4);
578
579         DST2bpp1(3,6);
580         DST1bpp1(3,6);
581         
582         dst_1[0]= out_1;
583         dst_2[0]= out_2;
584 EPILOG(1)
585
586 SwsFunc yuv2rgb_get_func_ptr (SwsContext *c)
587 {
588 #ifdef ARCH_X86
589     if(gCpuCaps.hasMMX2){
590         switch(c->dstFormat){
591         case IMGFMT_BGR32: return yuv420_rgb32_MMX2;
592         case IMGFMT_BGR24: return yuv420_rgb24_MMX2;
593         case IMGFMT_BGR16: return yuv420_rgb16_MMX2;
594         case IMGFMT_BGR15: return yuv420_rgb15_MMX2;
595         }
596     }
597     if(gCpuCaps.hasMMX){
598         switch(c->dstFormat){
599         case IMGFMT_BGR32: return yuv420_rgb32_MMX;
600         case IMGFMT_BGR24: return yuv420_rgb24_MMX;
601         case IMGFMT_BGR16: return yuv420_rgb16_MMX;
602         case IMGFMT_BGR15: return yuv420_rgb15_MMX;
603         }
604     }
605 #endif
606 #ifdef HAVE_MLIB
607     {
608         SwsFunc t= yuv2rgb_init_mlib(c);
609         if(t) return t;
610     }
611 #endif
612     mp_msg(MSGT_SWS,MSGL_WARN,"No accelerated colorspace conversion found\n");
613
614     switch(c->dstFormat){
615     case IMGFMT_RGB32:
616     case IMGFMT_BGR32: return yuv2rgb_c_32;
617     case IMGFMT_RGB24: return yuv2rgb_c_24_rgb;
618     case IMGFMT_BGR24: return yuv2rgb_c_24_bgr;
619     case IMGFMT_RGB16:
620     case IMGFMT_BGR16:
621     case IMGFMT_RGB15:
622     case IMGFMT_BGR15: return yuv2rgb_c_16;
623     case IMGFMT_RGB8:
624     case IMGFMT_BGR8:  return yuv2rgb_c_8_ordered_dither;
625     case IMGFMT_RGB4:
626     case IMGFMT_BGR4:  return yuv2rgb_c_4_ordered_dither;
627     case IMGFMT_RG4B:
628     case IMGFMT_BG4B:  return yuv2rgb_c_4b_ordered_dither;
629     case IMGFMT_RGB1:
630     case IMGFMT_BGR1:  return yuv2rgb_c_1_ordered_dither;
631     default:
632         assert(0);
633     }
634     return NULL;
635 }
636
637 static int div_round (int dividend, int divisor)
638 {
639     if (dividend > 0)
640         return (dividend + (divisor>>1)) / divisor;
641     else
642         return -((-dividend + (divisor>>1)) / divisor);
643 }
644
645 int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation)
646 {  
647     const int bpp= c->dstFormat&0xFF;
648     const int isRgb= (c->dstFormat>>24) != 'R';
649     int i;
650     uint8_t table_Y[1024];
651     uint32_t *table_32 = 0;
652     uint16_t *table_16 = 0;
653     uint8_t *table_8 = 0;
654     uint8_t *table_332 = 0;
655     uint8_t *table_121 = 0;
656     uint8_t *table_1 = 0;
657     int entry_size = 0;
658     void *table_r = 0, *table_g = 0, *table_b = 0;
659     void *table_start;
660
661     int64_t crv =  inv_table[0];
662     int64_t cbu =  inv_table[1];
663     int64_t cgu = -inv_table[2];
664     int64_t cgv = -inv_table[3];
665     int64_t cy  = 1<<16;
666     int64_t oy  = 0;
667
668 //printf("%lld %lld %lld %lld %lld\n", cy, crv, cbu, cgu, cgv);
669     if(!fullRange){
670         cy= (cy*255) / 219;
671         oy= 16<<16;
672     }
673         
674     cy = (cy *contrast             )>>16;
675     crv= (crv*contrast * saturation)>>32;
676     cbu= (cbu*contrast * saturation)>>32;
677     cgu= (cgu*contrast * saturation)>>32;
678     cgv= (cgv*contrast * saturation)>>32;
679 //printf("%lld %lld %lld %lld %lld\n", cy, crv, cbu, cgu, cgv);
680     oy -= 256*brightness;
681
682     for (i = 0; i < 1024; i++) {
683         int j;
684
685         j= (cy*(((i - 384)<<16) - oy) + (1<<31))>>32;
686         j = (j < 0) ? 0 : ((j > 255) ? 255 : j);
687         table_Y[i] = j;
688     }
689
690     switch (bpp) {
691     case 32:
692         table_start= table_32 = malloc ((197 + 2*682 + 256 + 132) * sizeof (uint32_t));
693
694         entry_size = sizeof (uint32_t);
695         table_r = table_32 + 197;
696         table_b = table_32 + 197 + 685;
697         table_g = table_32 + 197 + 2*682;
698
699         for (i = -197; i < 256+197; i++)
700             ((uint32_t *)table_r)[i] = table_Y[i+384] << (isRgb ? 16 : 0);
701         for (i = -132; i < 256+132; i++)
702             ((uint32_t *)table_g)[i] = table_Y[i+384] << 8;
703         for (i = -232; i < 256+232; i++)
704             ((uint32_t *)table_b)[i] = table_Y[i+384] << (isRgb ? 0 : 16);
705         break;
706
707     case 24:
708         table_start= table_8 = malloc ((256 + 2*232) * sizeof (uint8_t));
709
710         entry_size = sizeof (uint8_t);
711         table_r = table_g = table_b = table_8 + 232;
712
713         for (i = -232; i < 256+232; i++)
714             ((uint8_t * )table_b)[i] = table_Y[i+384];
715         break;
716
717     case 15:
718     case 16:
719         table_start= table_16 = malloc ((197 + 2*682 + 256 + 132) * sizeof (uint16_t));
720
721         entry_size = sizeof (uint16_t);
722         table_r = table_16 + 197;
723         table_b = table_16 + 197 + 685;
724         table_g = table_16 + 197 + 2*682;
725
726         for (i = -197; i < 256+197; i++) {
727             int j = table_Y[i+384] >> 3;
728
729             if (isRgb)
730                 j <<= ((bpp==16) ? 11 : 10);
731
732             ((uint16_t *)table_r)[i] = j;
733         }
734         for (i = -132; i < 256+132; i++) {
735             int j = table_Y[i+384] >> ((bpp==16) ? 2 : 3);
736
737             ((uint16_t *)table_g)[i] = j << 5;
738         }
739         for (i = -232; i < 256+232; i++) {
740             int j = table_Y[i+384] >> 3;
741
742             if (!isRgb)
743                 j <<= ((bpp==16) ? 11 : 10);
744
745             ((uint16_t *)table_b)[i] = j;
746         }
747         break;
748
749     case 8:
750         table_start= table_332 = malloc ((197 + 2*682 + 256 + 132) * sizeof (uint8_t));
751
752         entry_size = sizeof (uint8_t);
753         table_r = table_332 + 197;
754         table_b = table_332 + 197 + 685;
755         table_g = table_332 + 197 + 2*682;
756
757         for (i = -197; i < 256+197; i++) {
758             int j = (table_Y[i+384 - 16] + 18)/36;
759
760             if (isRgb)
761                 j <<= 5;
762
763             ((uint8_t *)table_r)[i] = j;
764         }
765         for (i = -132; i < 256+132; i++) {
766             int j = (table_Y[i+384 - 16] + 18)/36;
767
768             if (!isRgb)
769                 j <<= 1;
770
771             ((uint8_t *)table_g)[i] = j << 2;
772         }
773         for (i = -232; i < 256+232; i++) {
774             int j = (table_Y[i+384 - 37] + 43)/85;
775
776             if (!isRgb)
777                 j <<= 6;
778
779             ((uint8_t *)table_b)[i] = j;
780         }
781         break;
782     case 4:
783     case 4|128:
784         table_start= table_121 = malloc ((197 + 2*682 + 256 + 132) * sizeof (uint8_t));
785
786         entry_size = sizeof (uint8_t);
787         table_r = table_121 + 197;
788         table_b = table_121 + 197 + 685;
789         table_g = table_121 + 197 + 2*682;
790
791         for (i = -197; i < 256+197; i++) {
792             int j = table_Y[i+384 - 110] >> 7;
793
794             if (isRgb)
795                 j <<= 3;
796
797             ((uint8_t *)table_r)[i] = j;
798         }
799         for (i = -132; i < 256+132; i++) {
800             int j = (table_Y[i+384 - 37]+ 43)/85;
801
802             ((uint8_t *)table_g)[i] = j << 1;
803         }
804         for (i = -232; i < 256+232; i++) {
805             int j =table_Y[i+384 - 110] >> 7;
806
807             if (!isRgb)
808                 j <<= 3;
809
810             ((uint8_t *)table_b)[i] = j;
811         }
812         break;
813
814     case 1:
815         table_start= table_1 = malloc (256*2 * sizeof (uint8_t));
816
817         entry_size = sizeof (uint8_t);
818         table_g = table_1;
819         table_r = table_b = NULL;
820
821         for (i = 0; i < 256+256; i++) {
822             int j = table_Y[i + 384 - 110]>>7;
823
824             ((uint8_t *)table_g)[i] = j;
825         }
826         break;
827
828     default:
829         table_start= NULL;
830         mp_msg(MSGT_SWS,MSGL_ERR,"%ibpp not supported by yuv2rgb\n", bpp);
831         //free mem?
832         return -1;
833     }
834
835     for (i = 0; i < 256; i++) {
836         c->table_rV[i] = table_r + entry_size * div_round (crv * (i-128), 76309);
837         c->table_gU[i] = table_g + entry_size * div_round (cgu * (i-128), 76309);
838         c->table_gV[i] = entry_size * div_round (cgv * (i-128), 76309);
839         c->table_bU[i] = table_b + entry_size * div_round (cbu * (i-128), 76309);
840     }
841
842     if(c->yuvTable) free(c->yuvTable);
843     c->yuvTable= table_start;
844     return 0;
845 }