2 * yuv2rgb.c, Software YUV to RGB converter
4 * Copyright (C) 1999, Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
6 * Functions broken out from display_x11.c and several new modes
7 * added by HÃ¥kan Hjort <d95hjort@dtek.chalmers.se>
9 * 15 & 16 bpp support by Franck Sicard <Franck.Sicard@solsoft.fr>
11 * MMX/MMX2 template stuff (needed for fast movntq support),
12 * 1,4,8bpp support and context / deglobalize stuff
13 * by Michael Niedermayer (michaelni@gmx.at)
15 * This file is part of mpeg2dec, a free MPEG-2 video decoder
17 * mpeg2dec is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2, or (at your option)
22 * mpeg2dec is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with mpeg2dec; if not, write to the Free Software
29 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
40 #include "swscale_internal.h"
43 #include "yuv2rgb_vis.c"
47 #include "yuv2rgb_mlib.c"
50 #define DITHER1XBPP // only for mmx
52 const uint8_t __attribute__((aligned(8))) dither_2x2_4
[2][8]={
53 { 1, 3, 1, 3, 1, 3, 1, 3, },
54 { 2, 0, 2, 0, 2, 0, 2, 0, },
57 const uint8_t __attribute__((aligned(8))) dither_2x2_8
[2][8]={
58 { 6, 2, 6, 2, 6, 2, 6, 2, },
59 { 0, 4, 0, 4, 0, 4, 0, 4, },
62 const uint8_t __attribute__((aligned(8))) dither_8x8_32
[8][8]={
63 { 17, 9, 23, 15, 16, 8, 22, 14, },
64 { 5, 29, 3, 27, 4, 28, 2, 26, },
65 { 21, 13, 19, 11, 20, 12, 18, 10, },
66 { 0, 24, 6, 30, 1, 25, 7, 31, },
67 { 16, 8, 22, 14, 17, 9, 23, 15, },
68 { 4, 28, 2, 26, 5, 29, 3, 27, },
69 { 20, 12, 18, 10, 21, 13, 19, 11, },
70 { 1, 25, 7, 31, 0, 24, 6, 30, },
74 const uint8_t __attribute__((aligned(8))) dither_8x8_64
[8][8]={
75 { 0, 48, 12, 60, 3, 51, 15, 63, },
76 { 32, 16, 44, 28, 35, 19, 47, 31, },
77 { 8, 56, 4, 52, 11, 59, 7, 55, },
78 { 40, 24, 36, 20, 43, 27, 39, 23, },
79 { 2, 50, 14, 62, 1, 49, 13, 61, },
80 { 34, 18, 46, 30, 33, 17, 45, 29, },
81 { 10, 58, 6, 54, 9, 57, 5, 53, },
82 { 42, 26, 38, 22, 41, 25, 37, 21, },
86 const uint8_t __attribute__((aligned(8))) dither_8x8_73
[8][8]={
87 { 0, 55, 14, 68, 3, 58, 17, 72, },
88 { 37, 18, 50, 32, 40, 22, 54, 35, },
89 { 9, 64, 5, 59, 13, 67, 8, 63, },
90 { 46, 27, 41, 23, 49, 31, 44, 26, },
91 { 2, 57, 16, 71, 1, 56, 15, 70, },
92 { 39, 21, 52, 34, 38, 19, 51, 33, },
93 { 11, 66, 7, 62, 10, 65, 6, 60, },
94 { 48, 30, 43, 25, 47, 29, 42, 24, },
98 const uint8_t __attribute__((aligned(8))) dither_8x8_128
[8][8]={
99 { 68, 36, 92, 60, 66, 34, 90, 58, },
100 { 20, 116, 12, 108, 18, 114, 10, 106, },
101 { 84, 52, 76, 44, 82, 50, 74, 42, },
102 { 0, 96, 24, 120, 6, 102, 30, 126, },
103 { 64, 32, 88, 56, 70, 38, 94, 62, },
104 { 16, 112, 8, 104, 22, 118, 14, 110, },
105 { 80, 48, 72, 40, 86, 54, 78, 46, },
106 { 4, 100, 28, 124, 2, 98, 26, 122, },
111 const uint8_t __attribute__((aligned(8))) dither_8x8_220
[8][8]={
112 {117, 62, 158, 103, 113, 58, 155, 100, },
113 { 34, 199, 21, 186, 31, 196, 17, 182, },
114 {144, 89, 131, 76, 141, 86, 127, 72, },
115 { 0, 165, 41, 206, 10, 175, 52, 217, },
116 {110, 55, 151, 96, 120, 65, 162, 107, },
117 { 28, 193, 14, 179, 38, 203, 24, 189, },
118 {138, 83, 124, 69, 148, 93, 134, 79, },
119 { 7, 172, 48, 213, 3, 168, 45, 210, },
122 // tries to correct a gamma of 1.5
123 const uint8_t __attribute__((aligned(8))) dither_8x8_220
[8][8]={
124 { 0, 143, 18, 200, 2, 156, 25, 215, },
125 { 78, 28, 125, 64, 89, 36, 138, 74, },
126 { 10, 180, 3, 161, 16, 195, 8, 175, },
127 {109, 51, 93, 38, 121, 60, 105, 47, },
128 { 1, 152, 23, 210, 0, 147, 20, 205, },
129 { 85, 33, 134, 71, 81, 30, 130, 67, },
130 { 14, 190, 6, 171, 12, 185, 5, 166, },
131 {117, 57, 101, 44, 113, 54, 97, 41, },
134 // tries to correct a gamma of 2.0
135 const uint8_t __attribute__((aligned(8))) dither_8x8_220
[8][8]={
136 { 0, 124, 8, 193, 0, 140, 12, 213, },
137 { 55, 14, 104, 42, 66, 19, 119, 52, },
138 { 3, 168, 1, 145, 6, 187, 3, 162, },
139 { 86, 31, 70, 21, 99, 39, 82, 28, },
140 { 0, 134, 11, 206, 0, 129, 9, 200, },
141 { 62, 17, 114, 48, 58, 16, 109, 45, },
142 { 5, 181, 2, 157, 4, 175, 1, 151, },
143 { 95, 36, 78, 26, 90, 34, 74, 24, },
146 // tries to correct a gamma of 2.5
147 const uint8_t __attribute__((aligned(8))) dither_8x8_220
[8][8]={
148 { 0, 107, 3, 187, 0, 125, 6, 212, },
149 { 39, 7, 86, 28, 49, 11, 102, 36, },
150 { 1, 158, 0, 131, 3, 180, 1, 151, },
151 { 68, 19, 52, 12, 81, 25, 64, 17, },
152 { 0, 119, 5, 203, 0, 113, 4, 195, },
153 { 45, 9, 96, 33, 42, 8, 91, 30, },
154 { 2, 172, 1, 144, 2, 165, 0, 137, },
155 { 77, 23, 60, 15, 72, 21, 56, 14, },
161 /* hope these constant values are cache line aligned */
162 static uint64_t attribute_used
__attribute__((aligned(8))) mmx_00ffw
= 0x00ff00ff00ff00ffULL
;
163 static uint64_t attribute_used
__attribute__((aligned(8))) mmx_redmask
= 0xf8f8f8f8f8f8f8f8ULL
;
164 static uint64_t attribute_used
__attribute__((aligned(8))) mmx_grnmask
= 0xfcfcfcfcfcfcfcfcULL
;
166 static uint64_t attribute_used
__attribute__((aligned(8))) M24A
= 0x00FF0000FF0000FFULL
;
167 static uint64_t attribute_used
__attribute__((aligned(8))) M24B
= 0xFF0000FF0000FF00ULL
;
168 static uint64_t attribute_used
__attribute__((aligned(8))) M24C
= 0x0000FF0000FF0000ULL
;
170 // the volatile is required because gcc otherwise optimizes some writes away not knowing that these
171 // are read in the asm block
172 static volatile uint64_t attribute_used
__attribute__((aligned(8))) b5Dither
;
173 static volatile uint64_t attribute_used
__attribute__((aligned(8))) g5Dither
;
174 static volatile uint64_t attribute_used
__attribute__((aligned(8))) g6Dither
;
175 static volatile uint64_t attribute_used
__attribute__((aligned(8))) r5Dither
;
177 static uint64_t __attribute__((aligned(8))) dither4
[2]={
178 0x0103010301030103LL
,
179 0x0200020002000200LL
,};
181 static uint64_t __attribute__((aligned(8))) dither8
[2]={
182 0x0602060206020602LL
,
183 0x0004000400040004LL
,};
192 #define RENAME(a) a ## _MMX
193 #include "yuv2rgb_template.c"
200 #define RENAME(a) a ## _MMX2
201 #include "yuv2rgb_template.c"
203 #endif /* defined(ARCH_X86) */
205 const int32_t Inverse_Table_6_9
[8][4] = {
206 {117504, 138453, 13954, 34903}, /* no sequence_display_extension */
207 {117504, 138453, 13954, 34903}, /* ITU-R Rec. 709 (1990) */
208 {104597, 132201, 25675, 53279}, /* unspecified */
209 {104597, 132201, 25675, 53279}, /* reserved */
210 {104448, 132798, 24759, 53109}, /* FCC */
211 {104597, 132201, 25675, 53279}, /* ITU-R Rec. 624-4 System B, G */
212 {104597, 132201, 25675, 53279}, /* SMPTE 170M */
213 {117579, 136230, 16907, 35559} /* SMPTE 240M (1987) */
219 r = (void *)c->table_rV[V]; \
220 g = (void *)(c->table_gU[U] + c->table_gV[V]); \
221 b = (void *)c->table_bU[U];
225 dst_1[2*i] = r[Y] + g[Y] + b[Y]; \
227 dst_1[2*i+1] = r[Y] + g[Y] + b[Y];
231 dst_2[2*i] = r[Y] + g[Y] + b[Y]; \
233 dst_2[2*i+1] = r[Y] + g[Y] + b[Y];
237 dst_1[6*i] = r[Y]; dst_1[6*i+1] = g[Y]; dst_1[6*i+2] = b[Y]; \
239 dst_1[6*i+3] = r[Y]; dst_1[6*i+4] = g[Y]; dst_1[6*i+5] = b[Y];
243 dst_2[6*i] = r[Y]; dst_2[6*i+1] = g[Y]; dst_2[6*i+2] = b[Y]; \
245 dst_2[6*i+3] = r[Y]; dst_2[6*i+4] = g[Y]; dst_2[6*i+5] = b[Y];
249 dst_1[6*i] = b[Y]; dst_1[6*i+1] = g[Y]; dst_1[6*i+2] = r[Y]; \
251 dst_1[6*i+3] = b[Y]; dst_1[6*i+4] = g[Y]; dst_1[6*i+5] = r[Y];
255 dst_2[6*i] = b[Y]; dst_2[6*i+1] = g[Y]; dst_2[6*i+2] = r[Y]; \
257 dst_2[6*i+3] = b[Y]; dst_2[6*i+4] = g[Y]; dst_2[6*i+5] = r[Y];
259 #define PROLOG(func_name, dst_type) \
260 static int func_name(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, \
261 int srcSliceH, uint8_t* dst[], int dstStride[]){\
264 if (c->srcFormat == PIX_FMT_YUV422P){\
268 for (y=0; y<srcSliceH; y+=2){\
269 dst_type *dst_1= (dst_type*)(dst[0] + (y+srcSliceY )*dstStride[0]);\
270 dst_type *dst_2= (dst_type*)(dst[0] + (y+srcSliceY+1)*dstStride[0]);\
271 dst_type av_unused *r, *b;\
273 uint8_t *py_1= src[0] + y*srcStride[0];\
274 uint8_t *py_2= py_1 + srcStride[0];\
275 uint8_t *pu= src[1] + (y>>1)*srcStride[1];\
276 uint8_t *pv= src[2] + (y>>1)*srcStride[2];\
277 unsigned int h_size= c->dstW>>3;\
282 #define EPILOG1(dst_delta)\
300 #define EPILOG(dst_delta)\
304 PROLOG(yuv2rgb_c_32
, uint32_t)
330 PROLOG(yuv2rgb_c_24_rgb
, uint8_t)
356 // only trivial mods from yuv2rgb_c_24_rgb
357 PROLOG(yuv2rgb_c_24_bgr
, uint8_t)
383 // This is exactly the same code as yuv2rgb_c_32 except for the types of
384 // r, g, b, dst_1, dst_2
385 PROLOG(yuv2rgb_c_16
, uint16_t)
403 // This is exactly the same code as yuv2rgb_c_32 except for the types of
404 // r, g, b, dst_1, dst_2
405 PROLOG(yuv2rgb_c_8
, uint8_t)
423 // r, g, b, dst_1, dst_2
424 PROLOG(yuv2rgb_c_8_ordered_dither
, uint8_t)
425 const uint8_t *d32
= dither_8x8_32
[y
&7];
426 const uint8_t *d64
= dither_8x8_73
[y
&7];
427 #define DST1bpp8(i,o) \
429 dst_1[2*i] = r[Y+d32[0+o]] + g[Y+d32[0+o]] + b[Y+d64[0+o]]; \
431 dst_1[2*i+1] = r[Y+d32[1+o]] + g[Y+d32[1+o]] + b[Y+d64[1+o]];
433 #define DST2bpp8(i,o) \
435 dst_2[2*i] = r[Y+d32[8+o]] + g[Y+d32[8+o]] + b[Y+d64[8+o]]; \
437 dst_2[2*i+1] = r[Y+d32[9+o]] + g[Y+d32[9+o]] + b[Y+d64[9+o]];
458 // This is exactly the same code as yuv2rgb_c_32 except for the types of
459 // r, g, b, dst_1, dst_2
460 PROLOG(yuv2rgb_c_4
, uint8_t)
464 acc = r[Y] + g[Y] + b[Y]; \
466 acc |= (r[Y] + g[Y] + b[Y])<<4; \
471 acc = r[Y] + g[Y] + b[Y]; \
473 acc |= (r[Y] + g[Y] + b[Y])<<4; \
493 PROLOG(yuv2rgb_c_4_ordered_dither
, uint8_t)
494 const uint8_t *d64
= dither_8x8_73
[y
&7];
495 const uint8_t *d128
=dither_8x8_220
[y
&7];
498 #define DST1bpp4(i,o) \
500 acc = r[Y+d128[0+o]] + g[Y+d64[0+o]] + b[Y+d128[0+o]]; \
502 acc |= (r[Y+d128[1+o]] + g[Y+d64[1+o]] + b[Y+d128[1+o]])<<4; \
505 #define DST2bpp4(i,o) \
507 acc = r[Y+d128[8+o]] + g[Y+d64[8+o]] + b[Y+d128[8+o]]; \
509 acc |= (r[Y+d128[9+o]] + g[Y+d64[9+o]] + b[Y+d128[9+o]])<<4; \
530 // This is exactly the same code as yuv2rgb_c_32 except for the types of
531 // r, g, b, dst_1, dst_2
532 PROLOG(yuv2rgb_c_4b
, uint8_t)
550 PROLOG(yuv2rgb_c_4b_ordered_dither
, uint8_t)
551 const uint8_t *d64
= dither_8x8_73
[y
&7];
552 const uint8_t *d128
=dither_8x8_220
[y
&7];
554 #define DST1bpp4b(i,o) \
556 dst_1[2*i] = r[Y+d128[0+o]] + g[Y+d64[0+o]] + b[Y+d128[0+o]]; \
558 dst_1[2*i+1] = r[Y+d128[1+o]] + g[Y+d64[1+o]] + b[Y+d128[1+o]];
560 #define DST2bpp4b(i,o) \
562 dst_2[2*i] = r[Y+d128[8+o]] + g[Y+d64[8+o]] + b[Y+d128[8+o]]; \
564 dst_2[2*i+1] = r[Y+d128[9+o]] + g[Y+d64[9+o]] + b[Y+d128[9+o]];
584 PROLOG(yuv2rgb_c_1_ordered_dither
, uint8_t)
585 const uint8_t *d128
=dither_8x8_220
[y
&7];
586 char out_1
=0, out_2
=0;
587 g
= c
->table_gU
[128] + c
->table_gV
[128];
589 #define DST1bpp1(i,o) \
591 out_1+= out_1 + g[Y+d128[0+o]]; \
593 out_1+= out_1 + g[Y+d128[1+o]];
595 #define DST2bpp1(i,o) \
597 out_2+= out_2 + g[Y+d128[8+o]]; \
599 out_2+= out_2 + g[Y+d128[9+o]];
617 SwsFunc
yuv2rgb_get_func_ptr (SwsContext
*c
)
619 #if defined(HAVE_MMX2) || defined(HAVE_MMX)
620 if (c
->flags
& SWS_CPU_CAPS_MMX2
){
621 switch(c
->dstFormat
){
622 case PIX_FMT_RGB32
: return yuv420_rgb32_MMX2
;
623 case PIX_FMT_BGR24
: return yuv420_rgb24_MMX2
;
624 case PIX_FMT_BGR565
: return yuv420_rgb16_MMX2
;
625 case PIX_FMT_BGR555
: return yuv420_rgb15_MMX2
;
628 if (c
->flags
& SWS_CPU_CAPS_MMX
){
629 switch(c
->dstFormat
){
630 case PIX_FMT_RGB32
: return yuv420_rgb32_MMX
;
631 case PIX_FMT_BGR24
: return yuv420_rgb24_MMX
;
632 case PIX_FMT_BGR565
: return yuv420_rgb16_MMX
;
633 case PIX_FMT_BGR555
: return yuv420_rgb15_MMX
;
639 SwsFunc t
= yuv2rgb_init_vis(c
);
645 SwsFunc t
= yuv2rgb_init_mlib(c
);
650 if (c
->flags
& SWS_CPU_CAPS_ALTIVEC
)
652 SwsFunc t
= yuv2rgb_init_altivec(c
);
658 if (c
->flags
& SWS_CPU_CAPS_BFIN
)
660 SwsFunc t
= ff_bfin_yuv2rgb_get_func_ptr (c
);
665 av_log(c
, AV_LOG_WARNING
, "No accelerated colorspace conversion found\n");
667 switch(c
->dstFormat
){
669 case PIX_FMT_RGB32
: return yuv2rgb_c_32
;
670 case PIX_FMT_RGB24
: return yuv2rgb_c_24_rgb
;
671 case PIX_FMT_BGR24
: return yuv2rgb_c_24_bgr
;
675 case PIX_FMT_BGR555
: return yuv2rgb_c_16
;
677 case PIX_FMT_BGR8
: return yuv2rgb_c_8_ordered_dither
;
679 case PIX_FMT_BGR4
: return yuv2rgb_c_4_ordered_dither
;
680 case PIX_FMT_RGB4_BYTE
:
681 case PIX_FMT_BGR4_BYTE
: return yuv2rgb_c_4b_ordered_dither
;
682 case PIX_FMT_MONOBLACK
: return yuv2rgb_c_1_ordered_dither
;
689 static int div_round (int dividend
, int divisor
)
692 return (dividend
+ (divisor
>>1)) / divisor
;
694 return -((-dividend
+ (divisor
>>1)) / divisor
);
697 int yuv2rgb_c_init_tables (SwsContext
*c
, const int inv_table
[4], int fullRange
, int brightness
, int contrast
, int saturation
)
699 const int isRgb
= isBGR(c
->dstFormat
);
700 const int bpp
= fmt_depth(c
->dstFormat
);
702 uint8_t table_Y
[1024];
703 uint32_t *table_32
= 0;
704 uint16_t *table_16
= 0;
705 uint8_t *table_8
= 0;
706 uint8_t *table_332
= 0;
707 uint8_t *table_121
= 0;
708 uint8_t *table_1
= 0;
710 void *table_r
= 0, *table_g
= 0, *table_b
= 0;
713 int64_t crv
= inv_table
[0];
714 int64_t cbu
= inv_table
[1];
715 int64_t cgu
= -inv_table
[2];
716 int64_t cgv
= -inv_table
[3];
720 //printf("%lld %lld %lld %lld %lld\n", cy, crv, cbu, cgu, cgv);
725 crv
= (crv
*224) / 255;
726 cbu
= (cbu
*224) / 255;
727 cgu
= (cgu
*224) / 255;
728 cgv
= (cgv
*224) / 255;
731 cy
= (cy
*contrast
)>>16;
732 crv
= (crv
*contrast
* saturation
)>>32;
733 cbu
= (cbu
*contrast
* saturation
)>>32;
734 cgu
= (cgu
*contrast
* saturation
)>>32;
735 cgv
= (cgv
*contrast
* saturation
)>>32;
736 //printf("%lld %lld %lld %lld %lld\n", cy, crv, cbu, cgu, cgv);
737 oy
-= 256*brightness
;
739 for (i
= 0; i
< 1024; i
++) {
742 j
= (cy
*(((i
- 384)<<16) - oy
) + (1<<31))>>32;
743 j
= (j
< 0) ? 0 : ((j
> 255) ? 255 : j
);
749 table_start
= table_32
= av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint32_t));
751 entry_size
= sizeof (uint32_t);
752 table_r
= table_32
+ 197;
753 table_b
= table_32
+ 197 + 685;
754 table_g
= table_32
+ 197 + 2*682;
756 for (i
= -197; i
< 256+197; i
++)
757 ((uint32_t *)table_r
)[i
] = table_Y
[i
+384] << (isRgb
? 16 : 0);
758 for (i
= -132; i
< 256+132; i
++)
759 ((uint32_t *)table_g
)[i
] = table_Y
[i
+384] << 8;
760 for (i
= -232; i
< 256+232; i
++)
761 ((uint32_t *)table_b
)[i
] = table_Y
[i
+384] << (isRgb
? 0 : 16);
765 table_start
= table_8
= av_malloc ((256 + 2*232) * sizeof (uint8_t));
767 entry_size
= sizeof (uint8_t);
768 table_r
= table_g
= table_b
= table_8
+ 232;
770 for (i
= -232; i
< 256+232; i
++)
771 ((uint8_t * )table_b
)[i
] = table_Y
[i
+384];
776 table_start
= table_16
= av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint16_t));
778 entry_size
= sizeof (uint16_t);
779 table_r
= table_16
+ 197;
780 table_b
= table_16
+ 197 + 685;
781 table_g
= table_16
+ 197 + 2*682;
783 for (i
= -197; i
< 256+197; i
++) {
784 int j
= table_Y
[i
+384] >> 3;
787 j
<<= ((bpp
==16) ? 11 : 10);
789 ((uint16_t *)table_r
)[i
] = j
;
791 for (i
= -132; i
< 256+132; i
++) {
792 int j
= table_Y
[i
+384] >> ((bpp
==16) ? 2 : 3);
794 ((uint16_t *)table_g
)[i
] = j
<< 5;
796 for (i
= -232; i
< 256+232; i
++) {
797 int j
= table_Y
[i
+384] >> 3;
800 j
<<= ((bpp
==16) ? 11 : 10);
802 ((uint16_t *)table_b
)[i
] = j
;
807 table_start
= table_332
= av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint8_t));
809 entry_size
= sizeof (uint8_t);
810 table_r
= table_332
+ 197;
811 table_b
= table_332
+ 197 + 685;
812 table_g
= table_332
+ 197 + 2*682;
814 for (i
= -197; i
< 256+197; i
++) {
815 int j
= (table_Y
[i
+384 - 16] + 18)/36;
820 ((uint8_t *)table_r
)[i
] = j
;
822 for (i
= -132; i
< 256+132; i
++) {
823 int j
= (table_Y
[i
+384 - 16] + 18)/36;
828 ((uint8_t *)table_g
)[i
] = j
<< 2;
830 for (i
= -232; i
< 256+232; i
++) {
831 int j
= (table_Y
[i
+384 - 37] + 43)/85;
836 ((uint8_t *)table_b
)[i
] = j
;
841 table_start
= table_121
= av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint8_t));
843 entry_size
= sizeof (uint8_t);
844 table_r
= table_121
+ 197;
845 table_b
= table_121
+ 197 + 685;
846 table_g
= table_121
+ 197 + 2*682;
848 for (i
= -197; i
< 256+197; i
++) {
849 int j
= table_Y
[i
+384 - 110] >> 7;
854 ((uint8_t *)table_r
)[i
] = j
;
856 for (i
= -132; i
< 256+132; i
++) {
857 int j
= (table_Y
[i
+384 - 37]+ 43)/85;
859 ((uint8_t *)table_g
)[i
] = j
<< 1;
861 for (i
= -232; i
< 256+232; i
++) {
862 int j
=table_Y
[i
+384 - 110] >> 7;
867 ((uint8_t *)table_b
)[i
] = j
;
872 table_start
= table_1
= av_malloc (256*2 * sizeof (uint8_t));
874 entry_size
= sizeof (uint8_t);
876 table_r
= table_b
= NULL
;
878 for (i
= 0; i
< 256+256; i
++) {
879 int j
= table_Y
[i
+ 384 - 110]>>7;
881 ((uint8_t *)table_g
)[i
] = j
;
887 av_log(c
, AV_LOG_ERROR
, "%ibpp not supported by yuv2rgb\n", bpp
);
892 for (i
= 0; i
< 256; i
++) {
893 c
->table_rV
[i
] = (uint8_t *)table_r
+ entry_size
* div_round (crv
* (i
-128), 76309);
894 c
->table_gU
[i
] = (uint8_t *)table_g
+ entry_size
* div_round (cgu
* (i
-128), 76309);
895 c
->table_gV
[i
] = entry_size
* div_round (cgv
* (i
-128), 76309);
896 c
->table_bU
[i
] = (uint8_t *)table_b
+ entry_size
* div_round (cbu
* (i
-128), 76309);
899 av_free(c
->yuvTable
);
900 c
->yuvTable
= table_start
;