Mercurial > mplayer.hg
annotate libswscale/yuv2rgb.c @ 27703:3815517f49d4
Mark variation-specific interleaveBytes static.
These functions are never called by themselves, the alias
interleaveBytes is used instead.
author | flameeyes |
---|---|
date | Thu, 09 Oct 2008 11:11:35 +0000 |
parents | 235164d3b407 |
children | e7527860105b |
rev | line source |
---|---|
18861 | 1 /* |
23760 | 2 * yuv2rgb.c, Software YUV to RGB converter |
18861 | 3 * |
4 * Copyright (C) 1999, Aaron Holtzman <aholtzma@ess.engr.uvic.ca> | |
5 * | |
6 * Functions broken out from display_x11.c and several new modes | |
23732 | 7 * added by HÃ¥kan Hjort <d95hjort@dtek.chalmers.se> |
18861 | 8 * |
9 * 15 & 16 bpp support by Franck Sicard <Franck.Sicard@solsoft.fr> | |
10 * | |
23701 | 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) | |
14 * | |
18861 | 15 * This file is part of mpeg2dec, a free MPEG-2 video decoder |
16 * | |
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) | |
20 * any later version. | |
21 * | |
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. | |
26 * | |
27 * You should have received a copy of the GNU General Public License | |
21976 | 28 * along with mpeg2dec; if not, write to the Free Software |
29 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
18861 | 30 */ |
31 | |
32 #include <stdio.h> | |
33 #include <stdlib.h> | |
34 #include <inttypes.h> | |
35 #include <assert.h> | |
36 | |
37 #include "config.h" | |
38 #include "rgb2rgb.h" | |
39 #include "swscale.h" | |
40 #include "swscale_internal.h" | |
41 | |
27158 | 42 #define DITHER1XBPP // only for MMX |
18861 | 43 |
27577
1270a4919d4b
Move dither tables from yuv2rgb to swscale, they have been written by me and
michael
parents:
27544
diff
changeset
|
44 extern const uint8_t dither_2x2_4[2][8]; |
1270a4919d4b
Move dither tables from yuv2rgb to swscale, they have been written by me and
michael
parents:
27544
diff
changeset
|
45 extern const uint8_t dither_2x2_8[2][8]; |
1270a4919d4b
Move dither tables from yuv2rgb to swscale, they have been written by me and
michael
parents:
27544
diff
changeset
|
46 extern const uint8_t dither_8x8_32[8][8]; |
1270a4919d4b
Move dither tables from yuv2rgb to swscale, they have been written by me and
michael
parents:
27544
diff
changeset
|
47 extern const uint8_t dither_8x8_73[8][8]; |
1270a4919d4b
Move dither tables from yuv2rgb to swscale, they have been written by me and
michael
parents:
27544
diff
changeset
|
48 extern const uint8_t dither_8x8_220[8][8]; |
18861 | 49 |
19333
4f5e2e0529b1
Do not assemble MMX, MMX2 or 3DNOW code unconditionally on X86 and X86_64.
diego
parents:
19206
diff
changeset
|
50 #ifdef HAVE_MMX |
18861 | 51 |
52 /* hope these constant values are cache line aligned */ | |
25875
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
24607
diff
changeset
|
53 DECLARE_ASM_CONST(8, uint64_t, mmx_00ffw) = 0x00ff00ff00ff00ffULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
24607
diff
changeset
|
54 DECLARE_ASM_CONST(8, uint64_t, mmx_redmask) = 0xf8f8f8f8f8f8f8f8ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
24607
diff
changeset
|
55 DECLARE_ASM_CONST(8, uint64_t, mmx_grnmask) = 0xfcfcfcfcfcfcfcfcULL; |
18861 | 56 |
57 #undef HAVE_MMX | |
58 | |
59 //MMX versions | |
60 #undef RENAME | |
61 #define HAVE_MMX | |
62 #undef HAVE_MMX2 | |
63 #undef HAVE_3DNOW | |
64 #define RENAME(a) a ## _MMX | |
65 #include "yuv2rgb_template.c" | |
66 | |
67 //MMX2 versions | |
68 #undef RENAME | |
69 #define HAVE_MMX | |
70 #define HAVE_MMX2 | |
71 #undef HAVE_3DNOW | |
72 #define RENAME(a) a ## _MMX2 | |
73 #include "yuv2rgb_template.c" | |
74 | |
26268 | 75 #endif /* HAVE_MMX */ |
18861 | 76 |
77 const int32_t Inverse_Table_6_9[8][4] = { | |
78 {117504, 138453, 13954, 34903}, /* no sequence_display_extension */ | |
79 {117504, 138453, 13954, 34903}, /* ITU-R Rec. 709 (1990) */ | |
80 {104597, 132201, 25675, 53279}, /* unspecified */ | |
81 {104597, 132201, 25675, 53279}, /* reserved */ | |
82 {104448, 132798, 24759, 53109}, /* FCC */ | |
83 {104597, 132201, 25675, 53279}, /* ITU-R Rec. 624-4 System B, G */ | |
84 {104597, 132201, 25675, 53279}, /* SMPTE 170M */ | |
85 {117579, 136230, 16907, 35559} /* SMPTE 240M (1987) */ | |
86 }; | |
87 | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
88 #define RGB(i) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
89 U = pu[i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
90 V = pv[i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
91 r = (void *)c->table_rV[V]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
92 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
|
93 b = (void *)c->table_bU[U]; |
18861 | 94 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
95 #define DST1(i) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
96 Y = py_1[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
97 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
|
98 Y = py_1[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
99 dst_1[2*i+1] = r[Y] + g[Y] + b[Y]; |
18861 | 100 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
101 #define DST2(i) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
102 Y = py_2[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
103 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
|
104 Y = py_2[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
105 dst_2[2*i+1] = r[Y] + g[Y] + b[Y]; |
18861 | 106 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
107 #define DST1RGB(i) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
108 Y = py_1[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
109 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
|
110 Y = py_1[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
111 dst_1[6*i+3] = r[Y]; dst_1[6*i+4] = g[Y]; dst_1[6*i+5] = b[Y]; |
18861 | 112 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
113 #define DST2RGB(i) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
114 Y = py_2[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
115 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
|
116 Y = py_2[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
117 dst_2[6*i+3] = r[Y]; dst_2[6*i+4] = g[Y]; dst_2[6*i+5] = b[Y]; |
18861 | 118 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
119 #define DST1BGR(i) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
120 Y = py_1[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
121 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
|
122 Y = py_1[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
123 dst_1[6*i+3] = b[Y]; dst_1[6*i+4] = g[Y]; dst_1[6*i+5] = r[Y]; |
18861 | 124 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
125 #define DST2BGR(i) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
126 Y = py_2[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
127 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
|
128 Y = py_2[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
129 dst_2[6*i+3] = b[Y]; dst_2[6*i+4] = g[Y]; dst_2[6*i+5] = r[Y]; |
18861 | 130 |
131 #define PROLOG(func_name, dst_type) \ | |
132 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
|
133 int srcSliceH, uint8_t* dst[], int dstStride[]){\ |
18861 | 134 int y;\ |
135 \ | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
136 if (c->srcFormat == PIX_FMT_YUV422P){\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
137 srcStride[1] *= 2;\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
138 srcStride[2] *= 2;\ |
18861 | 139 }\ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
140 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
|
141 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
|
142 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
|
143 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
|
144 dst_type *g;\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
145 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
|
146 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
|
147 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
|
148 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
|
149 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
|
150 while (h_size--) {\ |
23400
16cce5d6ff9f
rename attribute_unused to av_unused as it is declared in common.h
benoit
parents:
23289
diff
changeset
|
151 int av_unused U, V;\ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
152 int Y;\ |
18861 | 153 |
23488
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
154 #define EPILOG1(dst_delta)\ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
155 pu += 4;\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
156 pv += 4;\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
157 py_1 += 8;\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
158 py_2 += 8;\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
159 dst_1 += dst_delta;\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
160 dst_2 += dst_delta;\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
161 }\ |
23488
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
162 if (c->dstW & 4) {\ |
26188
2d686c6a4ab5
Mark Y variable in EPILOG macro as av_unused to avoid unused variable warnings.
diego
parents:
26028
diff
changeset
|
163 int av_unused Y, U, V;\ |
23488
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
164 |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
165 #define EPILOG2()\ |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
166 }\ |
18861 | 167 }\ |
168 return srcSliceH;\ | |
169 } | |
170 | |
23488
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
171 #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
|
172 EPILOG1(dst_delta)\ |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
173 EPILOG2() |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
174 |
18861 | 175 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
|
176 RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
177 DST1(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
178 DST2(0); |
18861 | 179 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
180 RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
181 DST2(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
182 DST1(1); |
18861 | 183 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
184 RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
185 DST1(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
186 DST2(2); |
18861 | 187 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
188 RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
189 DST2(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
190 DST1(3); |
23488
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
191 EPILOG1(8) |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
192 RGB(0); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
193 DST1(0); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
194 DST2(0); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
195 |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
196 RGB(1); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
197 DST2(1); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
198 DST1(1); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
199 EPILOG2() |
18861 | 200 |
201 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
|
202 RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
203 DST1RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
204 DST2RGB(0); |
18861 | 205 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
206 RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
207 DST2RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
208 DST1RGB(1); |
18861 | 209 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
210 RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
211 DST1RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
212 DST2RGB(2); |
18861 | 213 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
214 RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
215 DST2RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
216 DST1RGB(3); |
23488
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
217 EPILOG1(24) |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
218 RGB(0); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
219 DST1RGB(0); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
220 DST2RGB(0); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
221 |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
222 RGB(1); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
223 DST2RGB(1); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
224 DST1RGB(1); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
225 EPILOG2() |
18861 | 226 |
227 // only trivial mods from yuv2rgb_c_24_rgb | |
228 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
|
229 RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
230 DST1BGR(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
231 DST2BGR(0); |
18861 | 232 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
233 RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
234 DST2BGR(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
235 DST1BGR(1); |
18861 | 236 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
237 RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
238 DST1BGR(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
239 DST2BGR(2); |
18861 | 240 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
241 RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
242 DST2BGR(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
243 DST1BGR(3); |
23488
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
244 EPILOG1(24) |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
245 RGB(0); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
246 DST1BGR(0); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
247 DST2BGR(0); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
248 |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
249 RGB(1); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
250 DST2BGR(1); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
251 DST1BGR(1); |
63bc8943a1ad
Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8
reimar
parents:
23400
diff
changeset
|
252 EPILOG2() |
18861 | 253 |
254 // This is exactly the same code as yuv2rgb_c_32 except for the types of | |
255 // r, g, b, dst_1, dst_2 | |
256 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
|
257 RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
258 DST1(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
259 DST2(0); |
18861 | 260 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
261 RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
262 DST2(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
263 DST1(1); |
18861 | 264 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
265 RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
266 DST1(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
267 DST2(2); |
18861 | 268 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
269 RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
270 DST2(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
271 DST1(3); |
18861 | 272 EPILOG(8) |
273 | |
274 // This is exactly the same code as yuv2rgb_c_32 except for the types of | |
275 // r, g, b, dst_1, dst_2 | |
276 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
|
277 RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
278 DST1(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
279 DST2(0); |
18861 | 280 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
281 RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
282 DST2(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
283 DST1(1); |
18861 | 284 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
285 RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
286 DST1(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
287 DST2(2); |
18861 | 288 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
289 RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
290 DST2(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
291 DST1(3); |
18861 | 292 EPILOG(8) |
293 | |
294 // r, g, b, dst_1, dst_2 | |
295 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
|
296 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
|
297 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
|
298 #define DST1bpp8(i,o) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
299 Y = py_1[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
300 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
|
301 Y = py_1[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
302 dst_1[2*i+1] = r[Y+d32[1+o]] + g[Y+d32[1+o]] + b[Y+d64[1+o]]; |
18861 | 303 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
304 #define DST2bpp8(i,o) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
305 Y = py_2[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
306 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
|
307 Y = py_2[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
308 dst_2[2*i+1] = r[Y+d32[9+o]] + g[Y+d32[9+o]] + b[Y+d64[9+o]]; |
18861 | 309 |
310 | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
311 RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
312 DST1bpp8(0,0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
313 DST2bpp8(0,0); |
18861 | 314 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
315 RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
316 DST2bpp8(1,2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
317 DST1bpp8(1,2); |
18861 | 318 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
319 RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
320 DST1bpp8(2,4); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
321 DST2bpp8(2,4); |
18861 | 322 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
323 RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
324 DST2bpp8(3,6); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
325 DST1bpp8(3,6); |
18861 | 326 EPILOG(8) |
327 | |
328 | |
329 // This is exactly the same code as yuv2rgb_c_32 except for the types of | |
330 // r, g, b, dst_1, dst_2 | |
331 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
|
332 int acc; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
333 #define DST1_4(i) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
334 Y = py_1[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
335 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
|
336 Y = py_1[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
337 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
|
338 dst_1[i] = acc; |
18861 | 339 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
340 #define DST2_4(i) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
341 Y = py_2[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
342 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
|
343 Y = py_2[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
344 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
|
345 dst_2[i] = acc; |
23129 | 346 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
347 RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
348 DST1_4(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
349 DST2_4(0); |
18861 | 350 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
351 RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
352 DST2_4(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
353 DST1_4(1); |
18861 | 354 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
355 RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
356 DST1_4(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
357 DST2_4(2); |
18861 | 358 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
359 RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
360 DST2_4(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
361 DST1_4(3); |
18861 | 362 EPILOG(4) |
363 | |
364 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
|
365 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
|
366 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
|
367 int acc; |
18861 | 368 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
369 #define DST1bpp4(i,o) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
370 Y = py_1[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
371 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
|
372 Y = py_1[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
373 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
|
374 dst_1[i]= acc; |
18861 | 375 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
376 #define DST2bpp4(i,o) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
377 Y = py_2[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
378 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
|
379 Y = py_2[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
380 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
|
381 dst_2[i]= acc; |
18861 | 382 |
383 | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
384 RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
385 DST1bpp4(0,0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
386 DST2bpp4(0,0); |
18861 | 387 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
388 RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
389 DST2bpp4(1,2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
390 DST1bpp4(1,2); |
18861 | 391 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
392 RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
393 DST1bpp4(2,4); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
394 DST2bpp4(2,4); |
18861 | 395 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
396 RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
397 DST2bpp4(3,6); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
398 DST1bpp4(3,6); |
18861 | 399 EPILOG(4) |
400 | |
401 // This is exactly the same code as yuv2rgb_c_32 except for the types of | |
402 // r, g, b, dst_1, dst_2 | |
403 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
|
404 RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
405 DST1(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
406 DST2(0); |
18861 | 407 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
408 RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
409 DST2(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
410 DST1(1); |
18861 | 411 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
412 RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
413 DST1(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
414 DST2(2); |
18861 | 415 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
416 RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
417 DST2(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
418 DST1(3); |
18861 | 419 EPILOG(8) |
420 | |
421 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
|
422 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
|
423 const uint8_t *d128=dither_8x8_220[y&7]; |
18861 | 424 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
425 #define DST1bpp4b(i,o) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
426 Y = py_1[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
427 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
|
428 Y = py_1[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
429 dst_1[2*i+1] = r[Y+d128[1+o]] + g[Y+d64[1+o]] + b[Y+d128[1+o]]; |
18861 | 430 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
431 #define DST2bpp4b(i,o) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
432 Y = py_2[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
433 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
|
434 Y = py_2[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
435 dst_2[2*i+1] = r[Y+d128[9+o]] + g[Y+d64[9+o]] + b[Y+d128[9+o]]; |
18861 | 436 |
437 | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
438 RGB(0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
439 DST1bpp4b(0,0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
440 DST2bpp4b(0,0); |
18861 | 441 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
442 RGB(1); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
443 DST2bpp4b(1,2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
444 DST1bpp4b(1,2); |
18861 | 445 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
446 RGB(2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
447 DST1bpp4b(2,4); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
448 DST2bpp4b(2,4); |
18861 | 449 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
450 RGB(3); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
451 DST2bpp4b(3,6); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
452 DST1bpp4b(3,6); |
18861 | 453 EPILOG(8) |
454 | |
455 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
|
456 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
|
457 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
|
458 g= c->table_gU[128] + c->table_gV[128]; |
18861 | 459 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
460 #define DST1bpp1(i,o) \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
461 Y = py_1[2*i]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
462 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
|
463 Y = py_1[2*i+1]; \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
464 out_1+= out_1 + g[Y+d128[1+o]]; |
18861 | 465 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
466 #define DST2bpp1(i,o) \ |
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 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
|
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 out_2+= out_2 + g[Y+d128[9+o]]; |
18861 | 471 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
472 DST1bpp1(0,0); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
473 DST2bpp1(0,0); |
18861 | 474 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
475 DST2bpp1(1,2); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
476 DST1bpp1(1,2); |
18861 | 477 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
478 DST1bpp1(2,4); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
479 DST2bpp1(2,4); |
18861 | 480 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
481 DST2bpp1(3,6); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
482 DST1bpp1(3,6); |
23129 | 483 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
484 dst_1[0]= out_1; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
485 dst_2[0]= out_2; |
18861 | 486 EPILOG(1) |
487 | |
488 SwsFunc yuv2rgb_get_func_ptr (SwsContext *c) | |
489 { | |
19333
4f5e2e0529b1
Do not assemble MMX, MMX2 or 3DNOW code unconditionally on X86 and X86_64.
diego
parents:
19206
diff
changeset
|
490 #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
|
491 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
|
492 switch(c->dstFormat){ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
493 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
|
494 case PIX_FMT_BGR24: return yuv420_rgb24_MMX2; |
27484 | 495 case PIX_FMT_RGB565: return yuv420_rgb16_MMX2; |
496 case PIX_FMT_RGB555: return yuv420_rgb15_MMX2; | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
497 } |
18861 | 498 } |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
499 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
|
500 switch(c->dstFormat){ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
501 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
|
502 case PIX_FMT_BGR24: return yuv420_rgb24_MMX; |
27484 | 503 case PIX_FMT_RGB565: return yuv420_rgb16_MMX; |
504 case PIX_FMT_RGB555: return yuv420_rgb15_MMX; | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
505 } |
18861 | 506 } |
507 #endif | |
23805 | 508 #ifdef HAVE_VIS |
509 { | |
510 SwsFunc t= yuv2rgb_init_vis(c); | |
511 if (t) return t; | |
512 } | |
513 #endif | |
26243
d4730293a70e
Classify mlib as a configurable option, not as a hardware feature.
diego
parents:
26188
diff
changeset
|
514 #ifdef CONFIG_MLIB |
18861 | 515 { |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
516 SwsFunc t= yuv2rgb_init_mlib(c); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
517 if (t) return t; |
18861 | 518 } |
519 #endif | |
520 #ifdef HAVE_ALTIVEC | |
521 if (c->flags & SWS_CPU_CAPS_ALTIVEC) | |
522 { | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
523 SwsFunc t = yuv2rgb_init_altivec(c); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
524 if (t) return t; |
18861 | 525 } |
526 #endif | |
527 | |
24607 | 528 #ifdef ARCH_BFIN |
23289
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23157
diff
changeset
|
529 if (c->flags & SWS_CPU_CAPS_BFIN) |
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23157
diff
changeset
|
530 { |
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23157
diff
changeset
|
531 SwsFunc t = ff_bfin_yuv2rgb_get_func_ptr (c); |
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23157
diff
changeset
|
532 if (t) return t; |
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23157
diff
changeset
|
533 } |
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23157
diff
changeset
|
534 #endif |
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23157
diff
changeset
|
535 |
27158 | 536 av_log(c, AV_LOG_WARNING, "No accelerated colorspace conversion found.\n"); |
18861 | 537 |
538 switch(c->dstFormat){ | |
27490 | 539 case PIX_FMT_BGR32_1: |
540 case PIX_FMT_RGB32_1: | |
19872
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
541 case PIX_FMT_BGR32: |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
542 case PIX_FMT_RGB32: return yuv2rgb_c_32; |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
543 case PIX_FMT_RGB24: return yuv2rgb_c_24_rgb; |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
544 case PIX_FMT_BGR24: return yuv2rgb_c_24_bgr; |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
545 case PIX_FMT_RGB565: |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
546 case PIX_FMT_BGR565: |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
547 case PIX_FMT_RGB555: |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
548 case PIX_FMT_BGR555: return yuv2rgb_c_16; |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
549 case PIX_FMT_RGB8: |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
550 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
|
551 case PIX_FMT_RGB4: |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
552 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
|
553 case PIX_FMT_RGB4_BYTE: |
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
554 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
|
555 case PIX_FMT_MONOBLACK: return yuv2rgb_c_1_ordered_dither; |
18861 | 556 default: |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
557 assert(0); |
18861 | 558 } |
559 return NULL; | |
560 } | |
561 | |
562 static int div_round (int dividend, int divisor) | |
563 { | |
564 if (dividend > 0) | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
565 return (dividend + (divisor>>1)) / divisor; |
18861 | 566 else |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
567 return -((-dividend + (divisor>>1)) / divisor); |
18861 | 568 } |
569 | |
570 int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation) | |
23129 | 571 { |
27484 | 572 const int isRgb = c->dstFormat==PIX_FMT_RGB32 |
27490 | 573 || c->dstFormat==PIX_FMT_RGB32_1 |
27484 | 574 || c->dstFormat==PIX_FMT_BGR24 |
575 || c->dstFormat==PIX_FMT_RGB565 | |
576 || c->dstFormat==PIX_FMT_RGB555 | |
577 || c->dstFormat==PIX_FMT_RGB8 | |
578 || c->dstFormat==PIX_FMT_RGB4 | |
579 || c->dstFormat==PIX_FMT_RGB4_BYTE | |
580 || c->dstFormat==PIX_FMT_MONOBLACK; | |
19872
8e50cba9fe03
Remove the dependency of libswscale on img_format.h
lucabe
parents:
19431
diff
changeset
|
581 const int bpp = fmt_depth(c->dstFormat); |
27490 | 582 int i, base; |
18861 | 583 uint8_t table_Y[1024]; |
584 uint32_t *table_32 = 0; | |
585 uint16_t *table_16 = 0; | |
586 uint8_t *table_8 = 0; | |
587 uint8_t *table_332 = 0; | |
588 uint8_t *table_121 = 0; | |
589 uint8_t *table_1 = 0; | |
590 int entry_size = 0; | |
591 void *table_r = 0, *table_g = 0, *table_b = 0; | |
592 void *table_start; | |
593 | |
594 int64_t crv = inv_table[0]; | |
595 int64_t cbu = inv_table[1]; | |
596 int64_t cgu = -inv_table[2]; | |
597 int64_t cgv = -inv_table[3]; | |
598 int64_t cy = 1<<16; | |
599 int64_t oy = 0; | |
600 | |
601 //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
|
602 if (!fullRange){ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
603 cy= (cy*255) / 219; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
604 oy= 16<<16; |
22695 | 605 }else{ |
606 crv= (crv*224) / 255; | |
607 cbu= (cbu*224) / 255; | |
608 cgu= (cgu*224) / 255; | |
609 cgv= (cgv*224) / 255; | |
18861 | 610 } |
23129 | 611 |
18861 | 612 cy = (cy *contrast )>>16; |
613 crv= (crv*contrast * saturation)>>32; | |
614 cbu= (cbu*contrast * saturation)>>32; | |
615 cgu= (cgu*contrast * saturation)>>32; | |
616 cgv= (cgv*contrast * saturation)>>32; | |
617 //printf("%lld %lld %lld %lld %lld\n", cy, crv, cbu, cgu, cgv); | |
618 oy -= 256*brightness; | |
619 | |
620 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
|
621 int j; |
18861 | 622 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
623 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
|
624 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
|
625 table_Y[i] = j; |
18861 | 626 } |
627 | |
628 switch (bpp) { | |
629 case 32: | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
630 table_start= table_32 = av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint32_t)); |
27490 | 631 base= (c->dstFormat == PIX_FMT_RGB32_1 || c->dstFormat == PIX_FMT_BGR32_1) ? 8 : 0; |
18861 | 632 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
633 entry_size = sizeof (uint32_t); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
634 table_r = table_32 + 197; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
635 table_b = table_32 + 197 + 685; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
636 table_g = table_32 + 197 + 2*682; |
18861 | 637 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
638 for (i = -197; i < 256+197; i++) |
27490 | 639 ((uint32_t *)table_r)[i] = table_Y[i+384] << ((isRgb ? 16 : 0) + base); |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
640 for (i = -132; i < 256+132; i++) |
27490 | 641 ((uint32_t *)table_g)[i] = table_Y[i+384] << (8 + base); |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
642 for (i = -232; i < 256+232; i++) |
27490 | 643 ((uint32_t *)table_b)[i] = table_Y[i+384] << ((isRgb ? 0 : 16) + base); |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
644 break; |
18861 | 645 |
646 case 24: | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
647 table_start= table_8 = av_malloc ((256 + 2*232) * sizeof (uint8_t)); |
18861 | 648 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
649 entry_size = sizeof (uint8_t); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
650 table_r = table_g = table_b = table_8 + 232; |
18861 | 651 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
652 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
|
653 ((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
|
654 break; |
18861 | 655 |
656 case 15: | |
657 case 16: | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
658 table_start= table_16 = av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint16_t)); |
18861 | 659 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
660 entry_size = sizeof (uint16_t); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
661 table_r = table_16 + 197; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
662 table_b = table_16 + 197 + 685; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
663 table_g = table_16 + 197 + 2*682; |
18861 | 664 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
665 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
|
666 int j = table_Y[i+384] >> 3; |
18861 | 667 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
668 if (isRgb) |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
669 j <<= ((bpp==16) ? 11 : 10); |
18861 | 670 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
671 ((uint16_t *)table_r)[i] = j; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
672 } |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
673 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
|
674 int j = table_Y[i+384] >> ((bpp==16) ? 2 : 3); |
18861 | 675 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
676 ((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
|
677 } |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
678 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
|
679 int j = table_Y[i+384] >> 3; |
18861 | 680 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
681 if (!isRgb) |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
682 j <<= ((bpp==16) ? 11 : 10); |
18861 | 683 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
684 ((uint16_t *)table_b)[i] = j; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
685 } |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
686 break; |
18861 | 687 |
688 case 8: | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
689 table_start= table_332 = av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint8_t)); |
18861 | 690 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
691 entry_size = sizeof (uint8_t); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
692 table_r = table_332 + 197; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
693 table_b = table_332 + 197 + 685; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
694 table_g = table_332 + 197 + 2*682; |
18861 | 695 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
696 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
|
697 int j = (table_Y[i+384 - 16] + 18)/36; |
18861 | 698 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
699 if (isRgb) |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
700 j <<= 5; |
18861 | 701 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
702 ((uint8_t *)table_r)[i] = j; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
703 } |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
704 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
|
705 int j = (table_Y[i+384 - 16] + 18)/36; |
18861 | 706 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
707 if (!isRgb) |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
708 j <<= 1; |
18861 | 709 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
710 ((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
|
711 } |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
712 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
|
713 int j = (table_Y[i+384 - 37] + 43)/85; |
18861 | 714 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
715 if (!isRgb) |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
716 j <<= 6; |
18861 | 717 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
718 ((uint8_t *)table_b)[i] = j; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
719 } |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
720 break; |
18861 | 721 case 4: |
722 case 4|128: | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
723 table_start= table_121 = av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint8_t)); |
18861 | 724 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
725 entry_size = sizeof (uint8_t); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
726 table_r = table_121 + 197; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
727 table_b = table_121 + 197 + 685; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
728 table_g = table_121 + 197 + 2*682; |
18861 | 729 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
730 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
|
731 int j = table_Y[i+384 - 110] >> 7; |
18861 | 732 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
733 if (isRgb) |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
734 j <<= 3; |
18861 | 735 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
736 ((uint8_t *)table_r)[i] = j; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
737 } |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
738 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
|
739 int j = (table_Y[i+384 - 37]+ 43)/85; |
18861 | 740 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
741 ((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
|
742 } |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
743 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
|
744 int j =table_Y[i+384 - 110] >> 7; |
18861 | 745 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
746 if (!isRgb) |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
747 j <<= 3; |
18861 | 748 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
749 ((uint8_t *)table_b)[i] = j; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
750 } |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
751 break; |
18861 | 752 |
753 case 1: | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
754 table_start= table_1 = av_malloc (256*2 * sizeof (uint8_t)); |
18861 | 755 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
756 entry_size = sizeof (uint8_t); |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
757 table_g = table_1; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
758 table_r = table_b = NULL; |
18861 | 759 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
760 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
|
761 int j = table_Y[i + 384 - 110]>>7; |
18861 | 762 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
763 ((uint8_t *)table_g)[i] = j; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
764 } |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
765 break; |
18861 | 766 |
767 default: | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
768 table_start= NULL; |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
769 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
|
770 //free mem? |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
771 return -1; |
18861 | 772 } |
773 | |
774 for (i = 0; i < 256; i++) { | |
27544
e69bd178104a
Fix chroma yuv->rgb tables for jpeg style yuv, this was missed as it
michael
parents:
27490
diff
changeset
|
775 c->table_rV[i] = (uint8_t *)table_r + entry_size * div_round (crv * (i-128), cy); |
e69bd178104a
Fix chroma yuv->rgb tables for jpeg style yuv, this was missed as it
michael
parents:
27490
diff
changeset
|
776 c->table_gU[i] = (uint8_t *)table_g + entry_size * div_round (cgu * (i-128), cy); |
e69bd178104a
Fix chroma yuv->rgb tables for jpeg style yuv, this was missed as it
michael
parents:
27490
diff
changeset
|
777 c->table_gV[i] = entry_size * div_round (cgv * (i-128), cy); |
e69bd178104a
Fix chroma yuv->rgb tables for jpeg style yuv, this was missed as it
michael
parents:
27490
diff
changeset
|
778 c->table_bU[i] = (uint8_t *)table_b + entry_size * div_round (cbu * (i-128), cy); |
18861 | 779 } |
780 | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
781 av_free(c->yuvTable); |
18861 | 782 c->yuvTable= table_start; |
783 return 0; | |
784 } |