annotate libswscale/yuv2rgb.c @ 28466:b70a583014e4

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