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