Mercurial > mplayer.hg
annotate libswscale/rgb2rgb.c @ 29248:6ebc9e7ffa12
Get rid of some more trailing whitespace
author | reynaldo |
---|---|
date | Tue, 12 May 2009 02:29:29 +0000 |
parents | a7e795e068ad |
children | 2d985cc879c9 |
rev | line source |
---|---|
18861 | 1 /* |
27158 | 2 * software RGB to RGB converter |
3 * pluralize by software PAL8 to RGB converter | |
4 * software YUV to YUV converter | |
5 * software YUV to RGB converter | |
6 * Written by Nick Kurshev. | |
7 * palette & YUV & runtime CPU stuff by Michael (michaelni@gmx.at) | |
19703
ad7f49a1ba95
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
diego
parents:
19361
diff
changeset
|
8 * |
20094
aca9e9783f67
Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents:
19703
diff
changeset
|
9 * This file is part of FFmpeg. |
aca9e9783f67
Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents:
19703
diff
changeset
|
10 * |
aca9e9783f67
Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents:
19703
diff
changeset
|
11 * FFmpeg is free software; you can redistribute it and/or modify |
19703
ad7f49a1ba95
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
diego
parents:
19361
diff
changeset
|
12 * it under the terms of the GNU General Public License as published by |
ad7f49a1ba95
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
diego
parents:
19361
diff
changeset
|
13 * the Free Software Foundation; either version 2 of the License, or |
ad7f49a1ba95
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
diego
parents:
19361
diff
changeset
|
14 * (at your option) any later version. |
ad7f49a1ba95
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
diego
parents:
19361
diff
changeset
|
15 * |
20094
aca9e9783f67
Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents:
19703
diff
changeset
|
16 * FFmpeg is distributed in the hope that it will be useful, |
19703
ad7f49a1ba95
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
diego
parents:
19361
diff
changeset
|
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
ad7f49a1ba95
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
diego
parents:
19361
diff
changeset
|
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ad7f49a1ba95
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
diego
parents:
19361
diff
changeset
|
19 * GNU General Public License for more details. |
ad7f49a1ba95
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
diego
parents:
19361
diff
changeset
|
20 * |
ad7f49a1ba95
Add official GPL header to make license explicit as discussed on ffmpeg-devel.
diego
parents:
19361
diff
changeset
|
21 * You should have received a copy of the GNU General Public License |
20094
aca9e9783f67
Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents:
19703
diff
changeset
|
22 * along with FFmpeg; if not, write to the Free Software |
23702 | 23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
23129 | 24 * |
27158 | 25 * The C code (not assembly, MMX, ...) of this file can be used |
26 * under the LGPL license. | |
18861 | 27 */ |
28 #include <inttypes.h> | |
29 #include "config.h" | |
26670
e6774798e913
Use full path for #includes from another directory.
diego
parents:
25882
diff
changeset
|
30 #include "libavutil/x86_cpu.h" |
e6774798e913
Use full path for #includes from another directory.
diego
parents:
25882
diff
changeset
|
31 #include "libavutil/bswap.h" |
18861 | 32 #include "rgb2rgb.h" |
33 #include "swscale.h" | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
34 #include "swscale_internal.h" |
18861 | 35 |
27158 | 36 #define FAST_BGR2YV12 // use 7-bit instead of 15-bit coefficients |
18861 | 37 |
27486 | 38 void (*rgb24tobgr32)(const uint8_t *src, uint8_t *dst, long src_size); |
39 void (*rgb24tobgr16)(const uint8_t *src, uint8_t *dst, long src_size); | |
40 void (*rgb24tobgr15)(const uint8_t *src, uint8_t *dst, long src_size); | |
41 void (*rgb32tobgr24)(const uint8_t *src, uint8_t *dst, long src_size); | |
25750 | 42 void (*rgb32to16)(const uint8_t *src, uint8_t *dst, long src_size); |
43 void (*rgb32to15)(const uint8_t *src, uint8_t *dst, long src_size); | |
44 void (*rgb15to16)(const uint8_t *src, uint8_t *dst, long src_size); | |
27486 | 45 void (*rgb15tobgr24)(const uint8_t *src, uint8_t *dst, long src_size); |
25750 | 46 void (*rgb15to32)(const uint8_t *src, uint8_t *dst, long src_size); |
47 void (*rgb16to15)(const uint8_t *src, uint8_t *dst, long src_size); | |
27486 | 48 void (*rgb16tobgr24)(const uint8_t *src, uint8_t *dst, long src_size); |
25750 | 49 void (*rgb16to32)(const uint8_t *src, uint8_t *dst, long src_size); |
18861 | 50 void (*rgb24tobgr24)(const uint8_t *src, uint8_t *dst, long src_size); |
27486 | 51 void (*rgb24to16)(const uint8_t *src, uint8_t *dst, long src_size); |
52 void (*rgb24to15)(const uint8_t *src, uint8_t *dst, long src_size); | |
18861 | 53 void (*rgb32tobgr32)(const uint8_t *src, uint8_t *dst, long src_size); |
54 void (*rgb32tobgr16)(const uint8_t *src, uint8_t *dst, long src_size); | |
55 void (*rgb32tobgr15)(const uint8_t *src, uint8_t *dst, long src_size); | |
56 | |
57 void (*yv12toyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
58 long width, long height, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
59 long lumStride, long chromStride, long dstStride); |
18861 | 60 void (*yv12touyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
61 long width, long height, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
62 long lumStride, long chromStride, long dstStride); |
18861 | 63 void (*yuv422ptoyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
64 long width, long height, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
65 long lumStride, long chromStride, long dstStride); |
27495 | 66 void (*yuv422ptouyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, |
67 long width, long height, | |
68 long lumStride, long chromStride, long dstStride); | |
18861 | 69 void (*yuy2toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst, |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
70 long width, long height, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
71 long lumStride, long chromStride, long srcStride); |
18861 | 72 void (*rgb24toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst, |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
73 long width, long height, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
74 long lumStride, long chromStride, long srcStride); |
18861 | 75 void (*planar2x)(const uint8_t *src, uint8_t *dst, long width, long height, |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
76 long srcStride, long dstStride); |
18861 | 77 void (*interleaveBytes)(uint8_t *src1, uint8_t *src2, uint8_t *dst, |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
78 long width, long height, long src1Stride, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
79 long src2Stride, long dstStride); |
18861 | 80 void (*vu9_to_vu12)(const uint8_t *src1, const uint8_t *src2, |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
81 uint8_t *dst1, uint8_t *dst2, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
82 long width, long height, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
83 long srcStride1, long srcStride2, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
84 long dstStride1, long dstStride2); |
18861 | 85 void (*yvu9_to_yuy2)(const uint8_t *src1, const uint8_t *src2, const uint8_t *src3, |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
86 uint8_t *dst, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
87 long width, long height, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
88 long srcStride1, long srcStride2, |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
89 long srcStride3, long dstStride); |
28962 | 90 void (*uyvytoyuv420)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src, |
91 long width, long height, | |
92 long lumStride, long chromStride, long srcStride); | |
93 void (*uyvytoyuv422)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src, | |
94 long width, long height, | |
95 long lumStride, long chromStride, long srcStride); | |
96 void (*yuyvtoyuv420)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src, | |
97 long width, long height, | |
98 long lumStride, long chromStride, long srcStride); | |
99 void (*yuyvtoyuv422)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src, | |
100 long width, long height, | |
101 long lumStride, long chromStride, long srcStride); | |
102 | |
18861 | 103 |
28276 | 104 #if ARCH_X86 && CONFIG_GPL |
25875
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
105 DECLARE_ASM_CONST(8, uint64_t, mmx_null) = 0x0000000000000000ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
106 DECLARE_ASM_CONST(8, uint64_t, mmx_one) = 0xFFFFFFFFFFFFFFFFULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
107 DECLARE_ASM_CONST(8, uint64_t, mask32b) = 0x000000FF000000FFULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
108 DECLARE_ASM_CONST(8, uint64_t, mask32g) = 0x0000FF000000FF00ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
109 DECLARE_ASM_CONST(8, uint64_t, mask32r) = 0x00FF000000FF0000ULL; |
28721
267dd38c800e
When converting from a non alpha format to an alpha format, defaults to all ones rather than all zeroes
sdrik
parents:
28323
diff
changeset
|
110 DECLARE_ASM_CONST(8, uint64_t, mask32a) = 0xFF000000FF000000ULL; |
25875
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
111 DECLARE_ASM_CONST(8, uint64_t, mask32) = 0x00FFFFFF00FFFFFFULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
112 DECLARE_ASM_CONST(8, uint64_t, mask3216br) = 0x00F800F800F800F8ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
113 DECLARE_ASM_CONST(8, uint64_t, mask3216g) = 0x0000FC000000FC00ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
114 DECLARE_ASM_CONST(8, uint64_t, mask3215g) = 0x0000F8000000F800ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
115 DECLARE_ASM_CONST(8, uint64_t, mul3216) = 0x2000000420000004ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
116 DECLARE_ASM_CONST(8, uint64_t, mul3215) = 0x2000000820000008ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
117 DECLARE_ASM_CONST(8, uint64_t, mask24b) = 0x00FF0000FF0000FFULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
118 DECLARE_ASM_CONST(8, uint64_t, mask24g) = 0xFF0000FF0000FF00ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
119 DECLARE_ASM_CONST(8, uint64_t, mask24r) = 0x0000FF0000FF0000ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
120 DECLARE_ASM_CONST(8, uint64_t, mask24l) = 0x0000000000FFFFFFULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
121 DECLARE_ASM_CONST(8, uint64_t, mask24h) = 0x0000FFFFFF000000ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
122 DECLARE_ASM_CONST(8, uint64_t, mask24hh) = 0xffff000000000000ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
123 DECLARE_ASM_CONST(8, uint64_t, mask24hhh) = 0xffffffff00000000ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
124 DECLARE_ASM_CONST(8, uint64_t, mask24hhhh) = 0xffffffffffff0000ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
125 DECLARE_ASM_CONST(8, uint64_t, mask15b) = 0x001F001F001F001FULL; /* 00000000 00011111 xxB */ |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
126 DECLARE_ASM_CONST(8, uint64_t, mask15rg) = 0x7FE07FE07FE07FE0ULL; /* 01111111 11100000 RGx */ |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
127 DECLARE_ASM_CONST(8, uint64_t, mask15s) = 0xFFE0FFE0FFE0FFE0ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
128 DECLARE_ASM_CONST(8, uint64_t, mask15g) = 0x03E003E003E003E0ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
129 DECLARE_ASM_CONST(8, uint64_t, mask15r) = 0x7C007C007C007C00ULL; |
18861 | 130 #define mask16b mask15b |
25875
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
131 DECLARE_ASM_CONST(8, uint64_t, mask16g) = 0x07E007E007E007E0ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
132 DECLARE_ASM_CONST(8, uint64_t, mask16r) = 0xF800F800F800F800ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
133 DECLARE_ASM_CONST(8, uint64_t, red_16mask) = 0x0000f8000000f800ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
134 DECLARE_ASM_CONST(8, uint64_t, green_16mask) = 0x000007e0000007e0ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
135 DECLARE_ASM_CONST(8, uint64_t, blue_16mask) = 0x0000001f0000001fULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
136 DECLARE_ASM_CONST(8, uint64_t, red_15mask) = 0x00007c0000007c00ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
137 DECLARE_ASM_CONST(8, uint64_t, green_15mask) = 0x000003e0000003e0ULL; |
2356fe5b7596
Use DECLARE_ASM_CONST where possible in libswscale code
reimar
parents:
25750
diff
changeset
|
138 DECLARE_ASM_CONST(8, uint64_t, blue_15mask) = 0x0000001f0000001fULL; |
28276 | 139 #endif /* ARCH_X86 */ |
18861 | 140 |
141 #define RGB2YUV_SHIFT 8 | |
142 #define BY ((int)( 0.098*(1<<RGB2YUV_SHIFT)+0.5)) | |
143 #define BV ((int)(-0.071*(1<<RGB2YUV_SHIFT)+0.5)) | |
144 #define BU ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5)) | |
145 #define GY ((int)( 0.504*(1<<RGB2YUV_SHIFT)+0.5)) | |
146 #define GV ((int)(-0.368*(1<<RGB2YUV_SHIFT)+0.5)) | |
147 #define GU ((int)(-0.291*(1<<RGB2YUV_SHIFT)+0.5)) | |
148 #define RY ((int)( 0.257*(1<<RGB2YUV_SHIFT)+0.5)) | |
149 #define RV ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5)) | |
150 #define RU ((int)(-0.148*(1<<RGB2YUV_SHIFT)+0.5)) | |
151 | |
27158 | 152 //Note: We have C, MMX, MMX2, 3DNOW versions, there is no 3DNOW + MMX2 one. |
153 //plain C versions | |
18861 | 154 #undef HAVE_MMX |
155 #undef HAVE_MMX2 | |
28323
99c49467ebbc
HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.
diego
parents:
28276
diff
changeset
|
156 #undef HAVE_AMD3DNOW |
18861 | 157 #undef HAVE_SSE2 |
28276 | 158 #define HAVE_MMX 0 |
159 #define HAVE_MMX2 0 | |
28323
99c49467ebbc
HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.
diego
parents:
28276
diff
changeset
|
160 #define HAVE_AMD3DNOW 0 |
28276 | 161 #define HAVE_SSE2 0 |
18861 | 162 #define RENAME(a) a ## _C |
163 #include "rgb2rgb_template.c" | |
164 | |
28276 | 165 #if ARCH_X86 && CONFIG_GPL |
18861 | 166 |
167 //MMX versions | |
168 #undef RENAME | |
28276 | 169 #undef HAVE_MMX |
170 #define HAVE_MMX 1 | |
18861 | 171 #define RENAME(a) a ## _MMX |
172 #include "rgb2rgb_template.c" | |
173 | |
174 //MMX2 versions | |
175 #undef RENAME | |
28276 | 176 #undef HAVE_MMX2 |
177 #define HAVE_MMX2 1 | |
18861 | 178 #define RENAME(a) a ## _MMX2 |
179 #include "rgb2rgb_template.c" | |
180 | |
181 //3DNOW versions | |
182 #undef RENAME | |
183 #undef HAVE_MMX2 | |
28323
99c49467ebbc
HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.
diego
parents:
28276
diff
changeset
|
184 #undef HAVE_AMD3DNOW |
28276 | 185 #define HAVE_MMX2 0 |
28323
99c49467ebbc
HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.
diego
parents:
28276
diff
changeset
|
186 #define HAVE_AMD3DNOW 1 |
18861 | 187 #define RENAME(a) a ## _3DNOW |
188 #include "rgb2rgb_template.c" | |
189 | |
190 #endif //ARCH_X86 || ARCH_X86_64 | |
191 | |
192 /* | |
27158 | 193 RGB15->RGB16 original by Strepto/Astral |
18861 | 194 ported to gcc & bugfixed : A'rpi |
195 MMX2, 3DNOW optimization by Nick Kurshev | |
27158 | 196 32-bit C version, and and&add trick by Michael Niedermayer |
18861 | 197 */ |
198 | |
199 void sws_rgb2rgb_init(int flags){ | |
28323
99c49467ebbc
HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.
diego
parents:
28276
diff
changeset
|
200 #if (HAVE_MMX2 || HAVE_AMD3DNOW || HAVE_MMX) && CONFIG_GPL |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
201 if (flags & SWS_CPU_CAPS_MMX2) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
202 rgb2rgb_init_MMX2(); |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
203 else if (flags & SWS_CPU_CAPS_3DNOW) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
204 rgb2rgb_init_3DNOW(); |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
205 else if (flags & SWS_CPU_CAPS_MMX) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
206 rgb2rgb_init_MMX(); |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
207 else |
28323
99c49467ebbc
HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.
diego
parents:
28276
diff
changeset
|
208 #endif /* HAVE_MMX2 || HAVE_AMD3DNOW || HAVE_MMX */ |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
209 rgb2rgb_init_C(); |
18861 | 210 } |
211 | |
212 /** | |
27783 | 213 * Convert the palette to the same packet 32-bit format as the palette |
18861 | 214 */ |
27783 | 215 void palette8topacked32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette) |
18861 | 216 { |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
217 long i; |
18861 | 218 |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
219 for (i=0; i<num_pixels; i++) |
27783 | 220 ((uint32_t *) dst)[i] = ((const uint32_t *) palette)[src[i]]; |
18861 | 221 } |
222 | |
223 /** | |
27783 | 224 * Palette format: ABCD -> dst format: ABC |
18861 | 225 */ |
27783 | 226 void palette8topacked24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette) |
18861 | 227 { |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
228 long i; |
18861 | 229 |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
230 for (i=0; i<num_pixels; i++) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
231 { |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
232 //FIXME slow? |
25750 | 233 dst[0]= palette[src[i]*4+0]; |
234 dst[1]= palette[src[i]*4+1]; | |
235 dst[2]= palette[src[i]*4+2]; | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
236 dst+= 3; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
237 } |
18861 | 238 } |
239 | |
240 /** | |
27158 | 241 * Palette is assumed to contain BGR16, see rgb32to16 to convert the palette. |
18861 | 242 */ |
243 void palette8torgb16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette) | |
244 { | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
245 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
246 for (i=0; i<num_pixels; i++) |
26911 | 247 ((uint16_t *)dst)[i] = ((const uint16_t *)palette)[src[i]]; |
18861 | 248 } |
249 void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette) | |
250 { | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
251 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
252 for (i=0; i<num_pixels; i++) |
26911 | 253 ((uint16_t *)dst)[i] = bswap_16(((const uint16_t *)palette)[src[i]]); |
18861 | 254 } |
255 | |
256 /** | |
21874 | 257 * Palette is assumed to contain BGR15, see rgb32to15 to convert the palette. |
18861 | 258 */ |
259 void palette8torgb15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette) | |
260 { | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
261 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
262 for (i=0; i<num_pixels; i++) |
26911 | 263 ((uint16_t *)dst)[i] = ((const uint16_t *)palette)[src[i]]; |
18861 | 264 } |
265 void palette8tobgr15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette) | |
266 { | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
267 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
268 for (i=0; i<num_pixels; i++) |
26911 | 269 ((uint16_t *)dst)[i] = bswap_16(((const uint16_t *)palette)[src[i]]); |
18861 | 270 } |
271 | |
27486 | 272 void rgb32to24(const uint8_t *src, uint8_t *dst, long src_size) |
18861 | 273 { |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
274 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
275 long num_pixels = src_size >> 2; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
276 for (i=0; i<num_pixels; i++) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
277 { |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
278 #ifdef WORDS_BIGENDIAN |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
279 /* RGB32 (= A,B,G,R) -> BGR24 (= B,G,R) */ |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
280 dst[3*i + 0] = src[4*i + 1]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
281 dst[3*i + 1] = src[4*i + 2]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
282 dst[3*i + 2] = src[4*i + 3]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
283 #else |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
284 dst[3*i + 0] = src[4*i + 2]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
285 dst[3*i + 1] = src[4*i + 1]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
286 dst[3*i + 2] = src[4*i + 0]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
287 #endif |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
288 } |
18861 | 289 } |
290 | |
27486 | 291 void rgb24to32(const uint8_t *src, uint8_t *dst, long src_size) |
18861 | 292 { |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
293 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
294 for (i=0; 3*i<src_size; i++) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
295 { |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
296 #ifdef WORDS_BIGENDIAN |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
297 /* RGB24 (= R,G,B) -> BGR32 (= A,R,G,B) */ |
28721
267dd38c800e
When converting from a non alpha format to an alpha format, defaults to all ones rather than all zeroes
sdrik
parents:
28323
diff
changeset
|
298 dst[4*i + 0] = 255; |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
299 dst[4*i + 1] = src[3*i + 0]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
300 dst[4*i + 2] = src[3*i + 1]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
301 dst[4*i + 3] = src[3*i + 2]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
302 #else |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
303 dst[4*i + 0] = src[3*i + 2]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
304 dst[4*i + 1] = src[3*i + 1]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
305 dst[4*i + 2] = src[3*i + 0]; |
28721
267dd38c800e
When converting from a non alpha format to an alpha format, defaults to all ones rather than all zeroes
sdrik
parents:
28323
diff
changeset
|
306 dst[4*i + 3] = 255; |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
307 #endif |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
308 } |
18861 | 309 } |
310 | |
311 void rgb16tobgr32(const uint8_t *src, uint8_t *dst, long src_size) | |
312 { | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
313 const uint16_t *end; |
26912 | 314 uint8_t *d = dst; |
26911 | 315 const uint16_t *s = (const uint16_t *)src; |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
316 end = s + src_size/2; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
317 while (s < end) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
318 { |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
319 register uint16_t bgr; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
320 bgr = *s++; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
321 #ifdef WORDS_BIGENDIAN |
28721
267dd38c800e
When converting from a non alpha format to an alpha format, defaults to all ones rather than all zeroes
sdrik
parents:
28323
diff
changeset
|
322 *d++ = 255; |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
323 *d++ = (bgr&0x1F)<<3; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
324 *d++ = (bgr&0x7E0)>>3; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
325 *d++ = (bgr&0xF800)>>8; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
326 #else |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
327 *d++ = (bgr&0xF800)>>8; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
328 *d++ = (bgr&0x7E0)>>3; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
329 *d++ = (bgr&0x1F)<<3; |
28721
267dd38c800e
When converting from a non alpha format to an alpha format, defaults to all ones rather than all zeroes
sdrik
parents:
28323
diff
changeset
|
330 *d++ = 255; |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
331 #endif |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
332 } |
18861 | 333 } |
334 | |
27486 | 335 void rgb16to24(const uint8_t *src, uint8_t *dst, long src_size) |
18861 | 336 { |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
337 const uint16_t *end; |
26912 | 338 uint8_t *d = dst; |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
339 const uint16_t *s = (const uint16_t *)src; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
340 end = s + src_size/2; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
341 while (s < end) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
342 { |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
343 register uint16_t bgr; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
344 bgr = *s++; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
345 *d++ = (bgr&0xF800)>>8; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
346 *d++ = (bgr&0x7E0)>>3; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
347 *d++ = (bgr&0x1F)<<3; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
348 } |
18861 | 349 } |
350 | |
351 void rgb16tobgr16(const uint8_t *src, uint8_t *dst, long src_size) | |
352 { | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
353 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
354 long num_pixels = src_size >> 1; |
23129 | 355 |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
356 for (i=0; i<num_pixels; i++) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
357 { |
27487
31ac930fd1d4
Fix 4 of the unscaled rgb15/16 converters, each of these contained
michael
parents:
27486
diff
changeset
|
358 unsigned rgb = ((const uint16_t*)src)[i]; |
31ac930fd1d4
Fix 4 of the unscaled rgb15/16 converters, each of these contained
michael
parents:
27486
diff
changeset
|
359 ((uint16_t*)dst)[i] = (rgb>>11) | (rgb&0x7E0) | (rgb<<11); |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
360 } |
18861 | 361 } |
362 | |
363 void rgb16tobgr15(const uint8_t *src, uint8_t *dst, long src_size) | |
364 { | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
365 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
366 long num_pixels = src_size >> 1; |
23129 | 367 |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
368 for (i=0; i<num_pixels; i++) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
369 { |
27487
31ac930fd1d4
Fix 4 of the unscaled rgb15/16 converters, each of these contained
michael
parents:
27486
diff
changeset
|
370 unsigned rgb = ((const uint16_t*)src)[i]; |
31ac930fd1d4
Fix 4 of the unscaled rgb15/16 converters, each of these contained
michael
parents:
27486
diff
changeset
|
371 ((uint16_t*)dst)[i] = (rgb>>11) | ((rgb&0x7C0)>>1) | ((rgb&0x1F)<<10); |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
372 } |
18861 | 373 } |
374 | |
375 void rgb15tobgr32(const uint8_t *src, uint8_t *dst, long src_size) | |
376 { | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
377 const uint16_t *end; |
26912 | 378 uint8_t *d = dst; |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
379 const uint16_t *s = (const uint16_t *)src; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
380 end = s + src_size/2; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
381 while (s < end) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
382 { |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
383 register uint16_t bgr; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
384 bgr = *s++; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
385 #ifdef WORDS_BIGENDIAN |
28721
267dd38c800e
When converting from a non alpha format to an alpha format, defaults to all ones rather than all zeroes
sdrik
parents:
28323
diff
changeset
|
386 *d++ = 255; |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
387 *d++ = (bgr&0x1F)<<3; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
388 *d++ = (bgr&0x3E0)>>2; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
389 *d++ = (bgr&0x7C00)>>7; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
390 #else |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
391 *d++ = (bgr&0x7C00)>>7; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
392 *d++ = (bgr&0x3E0)>>2; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
393 *d++ = (bgr&0x1F)<<3; |
28721
267dd38c800e
When converting from a non alpha format to an alpha format, defaults to all ones rather than all zeroes
sdrik
parents:
28323
diff
changeset
|
394 *d++ = 255; |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
395 #endif |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
396 } |
18861 | 397 } |
398 | |
27486 | 399 void rgb15to24(const uint8_t *src, uint8_t *dst, long src_size) |
18861 | 400 { |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
401 const uint16_t *end; |
26912 | 402 uint8_t *d = dst; |
26911 | 403 const uint16_t *s = (const uint16_t *)src; |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
404 end = s + src_size/2; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
405 while (s < end) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
406 { |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
407 register uint16_t bgr; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
408 bgr = *s++; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
409 *d++ = (bgr&0x7C00)>>7; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
410 *d++ = (bgr&0x3E0)>>2; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
411 *d++ = (bgr&0x1F)<<3; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
412 } |
18861 | 413 } |
414 | |
415 void rgb15tobgr16(const uint8_t *src, uint8_t *dst, long src_size) | |
416 { | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
417 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
418 long num_pixels = src_size >> 1; |
23129 | 419 |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
420 for (i=0; i<num_pixels; i++) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
421 { |
27487
31ac930fd1d4
Fix 4 of the unscaled rgb15/16 converters, each of these contained
michael
parents:
27486
diff
changeset
|
422 unsigned rgb = ((const uint16_t*)src)[i]; |
31ac930fd1d4
Fix 4 of the unscaled rgb15/16 converters, each of these contained
michael
parents:
27486
diff
changeset
|
423 ((uint16_t*)dst)[i] = ((rgb&0x7C00)>>10) | ((rgb&0x3E0)<<1) | (rgb<<11); |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
424 } |
18861 | 425 } |
426 | |
427 void rgb15tobgr15(const uint8_t *src, uint8_t *dst, long src_size) | |
428 { | |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
429 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
430 long num_pixels = src_size >> 1; |
23129 | 431 |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
432 for (i=0; i<num_pixels; i++) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
433 { |
27487
31ac930fd1d4
Fix 4 of the unscaled rgb15/16 converters, each of these contained
michael
parents:
27486
diff
changeset
|
434 unsigned br; |
31ac930fd1d4
Fix 4 of the unscaled rgb15/16 converters, each of these contained
michael
parents:
27486
diff
changeset
|
435 unsigned rgb = ((const uint16_t*)src)[i]; |
31ac930fd1d4
Fix 4 of the unscaled rgb15/16 converters, each of these contained
michael
parents:
27486
diff
changeset
|
436 br = rgb&0x7c1F; |
31ac930fd1d4
Fix 4 of the unscaled rgb15/16 converters, each of these contained
michael
parents:
27486
diff
changeset
|
437 ((uint16_t*)dst)[i] = (br>>10) | (rgb&0x3E0) | (br<<10); |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
438 } |
18861 | 439 } |
440 | |
27486 | 441 void bgr8torgb8(const uint8_t *src, uint8_t *dst, long src_size) |
18861 | 442 { |
23140
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
443 long i; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
444 long num_pixels = src_size; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
445 for (i=0; i<num_pixels; i++) |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
446 { |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
447 unsigned b,g,r; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
448 register uint8_t rgb; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
449 rgb = src[i]; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
450 r = (rgb&0x07); |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
451 g = (rgb&0x38)>>3; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
452 b = (rgb&0xC0)>>6; |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
453 dst[i] = ((b<<1)&0x07) | ((g&0x07)<<3) | ((r&0x03)<<6); |
4d3870361b73
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
454 } |
18861 | 455 } |