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