annotate postproc/yuv2rgb.c @ 7176:42222161de9b

2*10l to me
author arpi
date Fri, 30 Aug 2002 20:59:21 +0000
parents bd242a56b563
children 96bc9b4a0287
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
1 /*
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
2 * yuv2rgb.c, Software YUV to RGB coverter
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
3 *
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
4 * Copyright (C) 1999, Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
5 * All Rights Reserved.
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
6 *
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
7 * Functions broken out from display_x11.c and several new modes
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
8 * added by Håkan Hjort <d95hjort@dtek.chalmers.se>
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
9 *
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
10 * 15 & 16 bpp support by Franck Sicard <Franck.Sicard@solsoft.fr>
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
11 *
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
12 * This file is part of mpeg2dec, a free MPEG-2 video decoder
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
13 *
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
14 * mpeg2dec is free software; you can redistribute it and/or modify
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
15 * it under the terms of the GNU General Public License as published by
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
16 * the Free Software Foundation; either version 2, or (at your option)
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
17 * any later version.
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
18 *
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
19 * mpeg2dec is distributed in the hope that it will be useful,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
22 * GNU General Public License for more details.
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
23 *
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
24 * You should have received a copy of the GNU General Public License
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
25 * along with GNU Make; see the file COPYING. If not, write to
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
26 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
27 *
3143
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
28 * MMX/MMX2 Template stuff from Michael Niedermayer (michaelni@gmx.at) (needed for fast movntq support)
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
29 * 1,4,8bpp support by Michael Niedermayer (michaelni@gmx.at)
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
30 */
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
31
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
32 #include <stdio.h>
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
33 #include <stdlib.h>
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
34 #include <inttypes.h>
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
35
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
36 #include "config.h"
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
37 //#include "video_out.h"
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
38 #include "rgb2rgb.h"
3143
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
39 #include "../cpudetect.h"
4285
20806e535b96 add mangling
atmos4
parents: 3143
diff changeset
40 #include "../mangle.h"
5937
4b18bf35f153 printf to mp_msg
albeu
parents: 4285
diff changeset
41 #include "../mp_msg.h"
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
42
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
43 #ifdef HAVE_MLIB
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
44 #include "yuv2rgb_mlib.c"
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
45 #endif
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
46
3143
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
47 #define DITHER1XBPP // only for mmx
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
48
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
49 #ifdef ARCH_X86
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
50 #define CAN_COMPILE_X86_ASM
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
51 #endif
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
52
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
53 const uint8_t __attribute__((aligned(8))) dither_2x2_4[2][8]={
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
54 { 1, 3, 1, 3, 1, 3, 1, 3, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
55 { 2, 0, 2, 0, 2, 0, 2, 0, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
56 };
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
57
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
58 const uint8_t __attribute__((aligned(8))) dither_2x2_8[2][8]={
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
59 { 6, 2, 6, 2, 6, 2, 6, 2, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
60 { 0, 4, 0, 4, 0, 4, 0, 4, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
61 };
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
62
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
63 const uint8_t __attribute__((aligned(8))) dither_8x8_32[8][8]={
6458
michael
parents: 6456
diff changeset
64 { 17, 9, 23, 15, 16, 8, 22, 14, },
michael
parents: 6456
diff changeset
65 { 5, 29, 3, 27, 4, 28, 2, 26, },
michael
parents: 6456
diff changeset
66 { 21, 13, 19, 11, 20, 12, 18, 10, },
michael
parents: 6456
diff changeset
67 { 0, 24, 6, 30, 1, 25, 7, 31, },
michael
parents: 6456
diff changeset
68 { 16, 8, 22, 14, 17, 9, 23, 15, },
michael
parents: 6456
diff changeset
69 { 4, 28, 2, 26, 5, 29, 3, 27, },
michael
parents: 6456
diff changeset
70 { 20, 12, 18, 10, 21, 13, 19, 11, },
michael
parents: 6456
diff changeset
71 { 1, 25, 7, 31, 0, 24, 6, 30, },
michael
parents: 6456
diff changeset
72 };
michael
parents: 6456
diff changeset
73
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
74 #if 0
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
75 const uint8_t __attribute__((aligned(8))) dither_8x8_64[8][8]={
6458
michael
parents: 6456
diff changeset
76 { 0, 48, 12, 60, 3, 51, 15, 63, },
michael
parents: 6456
diff changeset
77 { 32, 16, 44, 28, 35, 19, 47, 31, },
michael
parents: 6456
diff changeset
78 { 8, 56, 4, 52, 11, 59, 7, 55, },
michael
parents: 6456
diff changeset
79 { 40, 24, 36, 20, 43, 27, 39, 23, },
michael
parents: 6456
diff changeset
80 { 2, 50, 14, 62, 1, 49, 13, 61, },
michael
parents: 6456
diff changeset
81 { 34, 18, 46, 30, 33, 17, 45, 29, },
michael
parents: 6456
diff changeset
82 { 10, 58, 6, 54, 9, 57, 5, 53, },
michael
parents: 6456
diff changeset
83 { 42, 26, 38, 22, 41, 25, 37, 21, },
michael
parents: 6456
diff changeset
84 };
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
85 #endif
6458
michael
parents: 6456
diff changeset
86
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
87 const uint8_t __attribute__((aligned(8))) dither_8x8_73[8][8]={
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
88 { 0, 55, 14, 68, 3, 58, 17, 72, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
89 { 37, 18, 50, 32, 40, 22, 54, 35, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
90 { 9, 64, 5, 59, 13, 67, 8, 63, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
91 { 46, 27, 41, 23, 49, 31, 44, 26, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
92 { 2, 57, 16, 71, 1, 56, 15, 70, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
93 { 39, 21, 52, 34, 38, 19, 51, 33, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
94 { 11, 66, 7, 62, 10, 65, 6, 60, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
95 { 48, 30, 43, 25, 47, 29, 42, 24, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
96 };
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
97
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
98 #if 0
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
99 const uint8_t __attribute__((aligned(8))) dither_8x8_128[8][8]={
6458
michael
parents: 6456
diff changeset
100 { 68, 36, 92, 60, 66, 34, 90, 58, },
michael
parents: 6456
diff changeset
101 { 20, 116, 12, 108, 18, 114, 10, 106, },
michael
parents: 6456
diff changeset
102 { 84, 52, 76, 44, 82, 50, 74, 42, },
michael
parents: 6456
diff changeset
103 { 0, 96, 24, 120, 6, 102, 30, 126, },
michael
parents: 6456
diff changeset
104 { 64, 32, 88, 56, 70, 38, 94, 62, },
michael
parents: 6456
diff changeset
105 { 16, 112, 8, 104, 22, 118, 14, 110, },
michael
parents: 6456
diff changeset
106 { 80, 48, 72, 40, 86, 54, 78, 46, },
michael
parents: 6456
diff changeset
107 { 4, 100, 28, 124, 2, 98, 26, 122, },
michael
parents: 6456
diff changeset
108 };
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
109 #endif
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
110
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
111 #if 1
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
112 const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
113 {117, 62, 158, 103, 113, 58, 155, 100, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
114 { 34, 199, 21, 186, 31, 196, 17, 182, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
115 {144, 89, 131, 76, 141, 86, 127, 72, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
116 { 0, 165, 41, 206, 10, 175, 52, 217, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
117 {110, 55, 151, 96, 120, 65, 162, 107, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
118 { 28, 193, 14, 179, 38, 203, 24, 189, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
119 {138, 83, 124, 69, 148, 93, 134, 79, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
120 { 7, 172, 48, 213, 3, 168, 45, 210, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
121 };
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
122 #elif 1
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
123 // tries to correct a gamma of 1.5
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
124 const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
125 { 0, 143, 18, 200, 2, 156, 25, 215, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
126 { 78, 28, 125, 64, 89, 36, 138, 74, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
127 { 10, 180, 3, 161, 16, 195, 8, 175, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
128 {109, 51, 93, 38, 121, 60, 105, 47, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
129 { 1, 152, 23, 210, 0, 147, 20, 205, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
130 { 85, 33, 134, 71, 81, 30, 130, 67, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
131 { 14, 190, 6, 171, 12, 185, 5, 166, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
132 {117, 57, 101, 44, 113, 54, 97, 41, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
133 };
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
134 #elif 1
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
135 // tries to correct a gamma of 2.0
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
136 const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
137 { 0, 124, 8, 193, 0, 140, 12, 213, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
138 { 55, 14, 104, 42, 66, 19, 119, 52, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
139 { 3, 168, 1, 145, 6, 187, 3, 162, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
140 { 86, 31, 70, 21, 99, 39, 82, 28, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
141 { 0, 134, 11, 206, 0, 129, 9, 200, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
142 { 62, 17, 114, 48, 58, 16, 109, 45, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
143 { 5, 181, 2, 157, 4, 175, 1, 151, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
144 { 95, 36, 78, 26, 90, 34, 74, 24, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
145 };
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
146 #else
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
147 // tries to correct a gamma of 2.5
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
148 const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
149 { 0, 107, 3, 187, 0, 125, 6, 212, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
150 { 39, 7, 86, 28, 49, 11, 102, 36, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
151 { 1, 158, 0, 131, 3, 180, 1, 151, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
152 { 68, 19, 52, 12, 81, 25, 64, 17, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
153 { 0, 119, 5, 203, 0, 113, 4, 195, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
154 { 45, 9, 96, 33, 42, 8, 91, 30, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
155 { 2, 172, 1, 144, 2, 165, 0, 137, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
156 { 77, 23, 60, 15, 72, 21, 56, 14, },
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
157 };
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
158 #endif
6458
michael
parents: 6456
diff changeset
159
3143
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
160 #ifdef CAN_COMPILE_X86_ASM
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
161
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
162 /* hope these constant values are cache line aligned */
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
163 uint64_t __attribute__((aligned(8))) mmx_80w = 0x0080008000800080;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
164 uint64_t __attribute__((aligned(8))) mmx_10w = 0x1010101010101010;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
165 uint64_t __attribute__((aligned(8))) mmx_00ffw = 0x00ff00ff00ff00ff;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
166 uint64_t __attribute__((aligned(8))) mmx_Y_coeff = 0x253f253f253f253f;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
167
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
168 /* hope these constant values are cache line aligned */
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
169 uint64_t __attribute__((aligned(8))) mmx_U_green = 0xf37df37df37df37d;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
170 uint64_t __attribute__((aligned(8))) mmx_U_blue = 0x4093409340934093;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
171 uint64_t __attribute__((aligned(8))) mmx_V_red = 0x3312331233123312;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
172 uint64_t __attribute__((aligned(8))) mmx_V_green = 0xe5fce5fce5fce5fc;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
173
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
174 /* hope these constant values are cache line aligned */
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
175 uint64_t __attribute__((aligned(8))) mmx_redmask = 0xf8f8f8f8f8f8f8f8;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
176 uint64_t __attribute__((aligned(8))) mmx_grnmask = 0xfcfcfcfcfcfcfcfc;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
177
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
178 uint64_t __attribute__((aligned(8))) M24A= 0x00FF0000FF0000FFLL;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
179 uint64_t __attribute__((aligned(8))) M24B= 0xFF0000FF0000FF00LL;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
180 uint64_t __attribute__((aligned(8))) M24C= 0x0000FF0000FF0000LL;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
181
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
182 // the volatile is required because gcc otherwise optimizes some writes away not knowing that these
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
183 // are read in the asm block
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
184 volatile uint64_t __attribute__((aligned(8))) b5Dither;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
185 volatile uint64_t __attribute__((aligned(8))) g5Dither;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
186 volatile uint64_t __attribute__((aligned(8))) g6Dither;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
187 volatile uint64_t __attribute__((aligned(8))) r5Dither;
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
188
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
189 uint64_t __attribute__((aligned(8))) dither4[2]={
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
190 0x0103010301030103LL,
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
191 0x0200020002000200LL,};
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
192
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
193 uint64_t __attribute__((aligned(8))) dither8[2]={
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
194 0x0602060206020602LL,
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
195 0x0004000400040004LL,};
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
196
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
197 #undef HAVE_MMX
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
198 #undef ARCH_X86
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
199
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
200 //MMX versions
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
201 #undef RENAME
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
202 #define HAVE_MMX
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
203 #undef HAVE_MMX2
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
204 #undef HAVE_3DNOW
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
205 #define ARCH_X86
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
206 #define RENAME(a) a ## _MMX
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
207 #include "yuv2rgb_template.c"
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
208
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
209 //MMX2 versions
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
210 #undef RENAME
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
211 #define HAVE_MMX
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
212 #define HAVE_MMX2
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
213 #undef HAVE_3DNOW
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
214 #define ARCH_X86
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
215 #define RENAME(a) a ## _MMX2
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
216 #include "yuv2rgb_template.c"
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
217
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
218 #endif // CAN_COMPILE_X86_ASM
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
219
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
220 uint32_t matrix_coefficients = 6;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
221
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
222 const int32_t Inverse_Table_6_9[8][4] = {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
223 {117504, 138453, 13954, 34903}, /* no sequence_display_extension */
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
224 {117504, 138453, 13954, 34903}, /* ITU-R Rec. 709 (1990) */
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
225 {104597, 132201, 25675, 53279}, /* unspecified */
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
226 {104597, 132201, 25675, 53279}, /* reserved */
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
227 {104448, 132798, 24759, 53109}, /* FCC */
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
228 {104597, 132201, 25675, 53279}, /* ITU-R Rec. 624-4 System B, G */
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
229 {104597, 132201, 25675, 53279}, /* SMPTE 170M */
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
230 {117579, 136230, 16907, 35559} /* SMPTE 240M (1987) */
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
231 };
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
232
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
233 void *yuv2rgb_c_init (unsigned bpp, int mode, void *table_rV[256], void *table_gU[256], int table_gV[256], void *table_bU[256]);
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
234
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
235 yuv2rgb_fun yuv2rgb;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
236
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
237 static void (* yuv2rgb_c_internal) (uint8_t *, uint8_t *,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
238 uint8_t *, uint8_t *,
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
239 void *, void *, int, int);
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
240
3143
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
241 static void yuv2rgb_c (void * dst, uint8_t * py,
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
242 uint8_t * pu, uint8_t * pv,
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6458
diff changeset
243 unsigned h_size, unsigned v_size,
e7635c03910f sync with mplayer xp
arpi
parents: 6458
diff changeset
244 unsigned rgb_stride, unsigned y_stride, unsigned uv_stride)
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
245 {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
246 v_size >>= 1;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6458
diff changeset
247
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
248 while (v_size--) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
249 yuv2rgb_c_internal (py, py + y_stride, pu, pv, dst, dst + rgb_stride,
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
250 h_size, v_size<<1);
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
251
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
252 py += 2 * y_stride;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
253 pu += uv_stride;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
254 pv += uv_stride;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
255 dst += 2 * rgb_stride;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
256 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
257 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
258
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
259 void * table_rV[256];
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
260 void * table_gU[256];
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
261 int table_gV[256];
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
262 void * table_bU[256];
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
263
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6458
diff changeset
264 void yuv2rgb_init (unsigned bpp, int mode)
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
265 {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
266 yuv2rgb = NULL;
3143
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
267 #ifdef CAN_COMPILE_X86_ASM
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
268 if(gCpuCaps.hasMMX2)
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
269 {
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
270 if (yuv2rgb == NULL /*&& (config.flags & VO_MMX_ENABLE)*/) {
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
271 yuv2rgb = yuv2rgb_init_MMX2 (bpp, mode);
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
272 if (yuv2rgb != NULL)
5937
4b18bf35f153 printf to mp_msg
albeu
parents: 4285
diff changeset
273 mp_msg(MSGT_SWS,MSGL_INFO,"Using MMX2 for colorspace transform\n");
3143
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
274 else
5937
4b18bf35f153 printf to mp_msg
albeu
parents: 4285
diff changeset
275 mp_msg(MSGT_SWS,MSGL_WARN,"Cannot init MMX2 colorspace transform\n");
3143
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
276 }
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
277 }
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
278 else if(gCpuCaps.hasMMX)
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
279 {
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
280 if (yuv2rgb == NULL /*&& (config.flags & VO_MMX_ENABLE)*/) {
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
281 yuv2rgb = yuv2rgb_init_MMX (bpp, mode);
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
282 if (yuv2rgb != NULL)
5937
4b18bf35f153 printf to mp_msg
albeu
parents: 4285
diff changeset
283 mp_msg(MSGT_SWS,MSGL_INFO,"Using MMX for colorspace transform\n");
3143
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
284 else
5937
4b18bf35f153 printf to mp_msg
albeu
parents: 4285
diff changeset
285 mp_msg(MSGT_SWS,MSGL_WARN,"Cannot init MMX colorspace transform\n");
3143
86910f54c391 runtime cpu detection
michael
parents: 2732
diff changeset
286 }
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
287 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
288 #endif
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
289 #ifdef HAVE_MLIB
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
290 if (yuv2rgb == NULL /*&& (config.flags & VO_MLIB_ENABLE)*/) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
291 yuv2rgb = yuv2rgb_init_mlib (bpp, mode);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
292 if (yuv2rgb != NULL)
5937
4b18bf35f153 printf to mp_msg
albeu
parents: 4285
diff changeset
293 mp_msg(MSGT_SWS,MSGL_INFO,"Using mlib for colorspace transform\n");
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
294 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
295 #endif
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
296 if (yuv2rgb == NULL) {
5937
4b18bf35f153 printf to mp_msg
albeu
parents: 4285
diff changeset
297 mp_msg(MSGT_SWS,MSGL_INFO,"No accelerated colorspace conversion found\n");
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
298 yuv2rgb_c_init (bpp, mode, table_rV, table_gU, table_gV, table_bU);
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
299 yuv2rgb = (yuv2rgb_fun)yuv2rgb_c;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
300 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
301 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
302
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
303 #define RGB(i) \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
304 U = pu[i]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
305 V = pv[i]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
306 r = table_rV[V]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
307 g = table_gU[U] + table_gV[V]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
308 b = table_bU[U];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
309
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
310 #define DST1(i) \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
311 Y = py_1[2*i]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
312 dst_1[2*i] = r[Y] + g[Y] + b[Y]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
313 Y = py_1[2*i+1]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
314 dst_1[2*i+1] = r[Y] + g[Y] + b[Y];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
315
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
316 #define DST2(i) \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
317 Y = py_2[2*i]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
318 dst_2[2*i] = r[Y] + g[Y] + b[Y]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
319 Y = py_2[2*i+1]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
320 dst_2[2*i+1] = r[Y] + g[Y] + b[Y];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
321
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
322 #define DST1RGB(i) \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
323 Y = py_1[2*i]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
324 dst_1[6*i] = r[Y]; dst_1[6*i+1] = g[Y]; dst_1[6*i+2] = b[Y]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
325 Y = py_1[2*i+1]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
326 dst_1[6*i+3] = r[Y]; dst_1[6*i+4] = g[Y]; dst_1[6*i+5] = b[Y];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
327
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
328 #define DST2RGB(i) \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
329 Y = py_2[2*i]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
330 dst_2[6*i] = r[Y]; dst_2[6*i+1] = g[Y]; dst_2[6*i+2] = b[Y]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
331 Y = py_2[2*i+1]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
332 dst_2[6*i+3] = r[Y]; dst_2[6*i+4] = g[Y]; dst_2[6*i+5] = b[Y];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
333
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
334 #define DST1BGR(i) \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
335 Y = py_1[2*i]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
336 dst_1[6*i] = b[Y]; dst_1[6*i+1] = g[Y]; dst_1[6*i+2] = r[Y]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
337 Y = py_1[2*i+1]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
338 dst_1[6*i+3] = b[Y]; dst_1[6*i+4] = g[Y]; dst_1[6*i+5] = r[Y];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
339
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
340 #define DST2BGR(i) \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
341 Y = py_2[2*i]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
342 dst_2[6*i] = b[Y]; dst_2[6*i+1] = g[Y]; dst_2[6*i+2] = r[Y]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
343 Y = py_2[2*i+1]; \
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
344 dst_2[6*i+3] = b[Y]; dst_2[6*i+4] = g[Y]; dst_2[6*i+5] = r[Y];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
345
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
346 static void yuv2rgb_c_32 (uint8_t * py_1, uint8_t * py_2,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
347 uint8_t * pu, uint8_t * pv,
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
348 void * _dst_1, void * _dst_2, int h_size, int v_pos)
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
349 {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
350 int U, V, Y;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
351 uint32_t * r, * g, * b;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
352 uint32_t * dst_1, * dst_2;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
353
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
354 h_size >>= 3;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
355 dst_1 = _dst_1;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
356 dst_2 = _dst_2;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
357
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
358 while (h_size--) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
359 RGB(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
360 DST1(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
361 DST2(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
362
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
363 RGB(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
364 DST2(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
365 DST1(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
366
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
367 RGB(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
368 DST1(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
369 DST2(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
370
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
371 RGB(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
372 DST2(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
373 DST1(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
374
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
375 pu += 4;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
376 pv += 4;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
377 py_1 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
378 py_2 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
379 dst_1 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
380 dst_2 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
381 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
382 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
383
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
384 // This is very near from the yuv2rgb_c_32 code
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
385 static void yuv2rgb_c_24_rgb (uint8_t * py_1, uint8_t * py_2,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
386 uint8_t * pu, uint8_t * pv,
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
387 void * _dst_1, void * _dst_2, int h_size, int v_pos)
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
388 {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
389 int U, V, Y;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
390 uint8_t * r, * g, * b;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
391 uint8_t * dst_1, * dst_2;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
392
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
393 h_size >>= 3;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
394 dst_1 = _dst_1;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
395 dst_2 = _dst_2;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
396
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
397 while (h_size--) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
398 RGB(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
399 DST1RGB(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
400 DST2RGB(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
401
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
402 RGB(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
403 DST2RGB(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
404 DST1RGB(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
405
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
406 RGB(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
407 DST1RGB(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
408 DST2RGB(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
409
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
410 RGB(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
411 DST2RGB(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
412 DST1RGB(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
413
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
414 pu += 4;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
415 pv += 4;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
416 py_1 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
417 py_2 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
418 dst_1 += 24;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
419 dst_2 += 24;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
420 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
421 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
422
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
423 // only trivial mods from yuv2rgb_c_24_rgb
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
424 static void yuv2rgb_c_24_bgr (uint8_t * py_1, uint8_t * py_2,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
425 uint8_t * pu, uint8_t * pv,
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
426 void * _dst_1, void * _dst_2, int h_size, int v_pos)
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
427 {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
428 int U, V, Y;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
429 uint8_t * r, * g, * b;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
430 uint8_t * dst_1, * dst_2;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
431
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
432 h_size >>= 3;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
433 dst_1 = _dst_1;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
434 dst_2 = _dst_2;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
435
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
436 while (h_size--) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
437 RGB(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
438 DST1BGR(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
439 DST2BGR(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
440
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
441 RGB(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
442 DST2BGR(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
443 DST1BGR(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
444
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
445 RGB(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
446 DST1BGR(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
447 DST2BGR(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
448
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
449 RGB(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
450 DST2BGR(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
451 DST1BGR(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
452
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
453 pu += 4;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
454 pv += 4;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
455 py_1 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
456 py_2 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
457 dst_1 += 24;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
458 dst_2 += 24;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
459 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
460 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
461
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
462 // This is exactly the same code as yuv2rgb_c_32 except for the types of
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
463 // r, g, b, dst_1, dst_2
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
464 static void yuv2rgb_c_16 (uint8_t * py_1, uint8_t * py_2,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
465 uint8_t * pu, uint8_t * pv,
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
466 void * _dst_1, void * _dst_2, int h_size, int v_pos)
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
467 {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
468 int U, V, Y;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
469 uint16_t * r, * g, * b;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
470 uint16_t * dst_1, * dst_2;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
471
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
472 h_size >>= 3;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
473 dst_1 = _dst_1;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
474 dst_2 = _dst_2;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
475
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
476 while (h_size--) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
477 RGB(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
478 DST1(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
479 DST2(0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
480
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
481 RGB(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
482 DST2(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
483 DST1(1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
484
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
485 RGB(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
486 DST1(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
487 DST2(2);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
488
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
489 RGB(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
490 DST2(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
491 DST1(3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
492
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
493 pu += 4;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
494 pv += 4;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
495 py_1 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
496 py_2 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
497 dst_1 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
498 dst_2 += 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
499 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
500 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
501
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
502 // This is exactly the same code as yuv2rgb_c_32 except for the types of
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
503 // r, g, b, dst_1, dst_2
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
504 static void yuv2rgb_c_8 (uint8_t * py_1, uint8_t * py_2,
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
505 uint8_t * pu, uint8_t * pv,
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
506 void * _dst_1, void * _dst_2, int h_size, int v_pos)
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
507 {
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
508 int U, V, Y;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
509 uint8_t * r, * g, * b;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
510 uint8_t * dst_1, * dst_2;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
511
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
512 h_size >>= 3;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
513 dst_1 = _dst_1;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
514 dst_2 = _dst_2;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
515
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
516 while (h_size--) {
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
517 RGB(0);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
518 DST1(0);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
519 DST2(0);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
520
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
521 RGB(1);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
522 DST2(1);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
523 DST1(1);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
524
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
525 RGB(2);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
526 DST1(2);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
527 DST2(2);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
528
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
529 RGB(3);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
530 DST2(3);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
531 DST1(3);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
532
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
533 pu += 4;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
534 pv += 4;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
535 py_1 += 8;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
536 py_2 += 8;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
537 dst_1 += 8;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
538 dst_2 += 8;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
539 }
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
540 }
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
541
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
542 // r, g, b, dst_1, dst_2
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
543 static void yuv2rgb_c_8_ordered_dither (uint8_t * py_1, uint8_t * py_2,
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
544 uint8_t * pu, uint8_t * pv,
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
545 void * _dst_1, void * _dst_2, int h_size, int v_pos)
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
546 {
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
547 int U, V, Y;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
548 uint8_t * r, * g, * b;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
549 uint8_t * dst_1, * dst_2;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
550
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
551 h_size >>= 3;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
552 dst_1 = _dst_1;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
553 dst_2 = _dst_2;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
554
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
555 while (h_size--) {
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
556 const uint8_t *d32= dither_8x8_32[v_pos&7];
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
557 const uint8_t *d64= dither_8x8_73[v_pos&7];
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
558 #define DST1bpp8(i,o) \
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
559 Y = py_1[2*i]; \
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
560 dst_1[2*i] = r[Y+d32[0+o]] + g[Y+d32[0+o]] + b[Y+d64[0+o]]; \
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
561 Y = py_1[2*i+1]; \
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
562 dst_1[2*i+1] = r[Y+d32[1+o]] + g[Y+d32[1+o]] + b[Y+d64[1+o]];
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
563
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
564 #define DST2bpp8(i,o) \
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
565 Y = py_2[2*i]; \
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
566 dst_2[2*i] = r[Y+d32[8+o]] + g[Y+d32[8+o]] + b[Y+d64[8+o]]; \
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
567 Y = py_2[2*i+1]; \
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
568 dst_2[2*i+1] = r[Y+d32[9+o]] + g[Y+d32[9+o]] + b[Y+d64[9+o]];
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
569
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
570
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
571 RGB(0);
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
572 DST1bpp8(0,0);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
573 DST2bpp8(0,0);
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
574
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
575 RGB(1);
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
576 DST2bpp8(1,2);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
577 DST1bpp8(1,2);
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
578
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
579 RGB(2);
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
580 DST1bpp8(2,4);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
581 DST2bpp8(2,4);
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
582
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
583 RGB(3);
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
584 DST2bpp8(3,6);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
585 DST1bpp8(3,6);
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
586
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
587 pu += 4;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
588 pv += 4;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
589 py_1 += 8;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
590 py_2 += 8;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
591 dst_1 += 8;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
592 dst_2 += 8;
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
593 }
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
594 }
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
595
6453
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
596
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
597 // This is exactly the same code as yuv2rgb_c_32 except for the types of
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
598 // r, g, b, dst_1, dst_2
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
599 static void yuv2rgb_c_4 (uint8_t * py_1, uint8_t * py_2,
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
600 uint8_t * pu, uint8_t * pv,
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
601 void * _dst_1, void * _dst_2, int h_size, int v_pos)
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
602 {
6991
bd242a56b563 remove unused varibles patch by (Eric Sesterhenn <SnakeByte at gmx dot de>)
michael
parents: 6577
diff changeset
603 int U, V, Y;
6453
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
604 uint8_t * r, * g, * b;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
605 uint8_t * dst_1, * dst_2;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
606
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
607 h_size >>= 3;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
608 dst_1 = _dst_1;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
609 dst_2 = _dst_2;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
610
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
611 while (h_size--) {
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
612 RGB(0);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
613 DST1(0);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
614 DST2(0);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
615
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
616 RGB(1);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
617 DST2(1);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
618 DST1(1);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
619
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
620 RGB(2);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
621 DST1(2);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
622 DST2(2);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
623
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
624 RGB(3);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
625 DST2(3);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
626 DST1(3);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
627
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
628 pu += 4;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
629 pv += 4;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
630 py_1 += 8;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
631 py_2 += 8;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
632 dst_1 += 8;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
633 dst_2 += 8;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
634 }
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
635 }
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
636
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
637 static void yuv2rgb_c_4_ordered_dither (uint8_t * py_1, uint8_t * py_2,
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
638 uint8_t * pu, uint8_t * pv,
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
639 void * _dst_1, void * _dst_2, int h_size, int v_pos)
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
640 {
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
641 int U, V, Y;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
642 uint8_t * r, * g, * b;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
643 uint8_t * dst_1, * dst_2;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
644
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
645 h_size >>= 3;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
646 dst_1 = _dst_1;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
647 dst_2 = _dst_2;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
648
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
649 while (h_size--) {
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
650 const uint8_t *d64= dither_8x8_73[v_pos&7];
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
651 const uint8_t *d128=dither_8x8_220[v_pos&7];
6453
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
652
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
653 #define DST1bpp4(i,o) \
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
654 Y = py_1[2*i]; \
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
655 dst_1[2*i] = r[Y+d128[0+o]] + g[Y+d64[0+o]] + b[Y+d128[0+o]]; \
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
656 Y = py_1[2*i+1]; \
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
657 dst_1[2*i+1] = r[Y+d128[1+o]] + g[Y+d64[1+o]] + b[Y+d128[1+o]];
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
658
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
659 #define DST2bpp4(i,o) \
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
660 Y = py_2[2*i]; \
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
661 dst_2[2*i] = r[Y+d128[8+o]] + g[Y+d64[8+o]] + b[Y+d128[8+o]]; \
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
662 Y = py_2[2*i+1]; \
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
663 dst_2[2*i+1] = r[Y+d128[9+o]] + g[Y+d64[9+o]] + b[Y+d128[9+o]];
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
664
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
665
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
666 RGB(0);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
667 DST1bpp4(0,0);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
668 DST2bpp4(0,0);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
669
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
670 RGB(1);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
671 DST2bpp4(1,2);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
672 DST1bpp4(1,2);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
673
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
674 RGB(2);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
675 DST1bpp4(2,4);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
676 DST2bpp4(2,4);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
677
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
678 RGB(3);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
679 DST2bpp4(3,6);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
680 DST1bpp4(3,6);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
681
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
682 pu += 4;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
683 pv += 4;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
684 py_1 += 8;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
685 py_2 += 8;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
686 dst_1 += 8;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
687 dst_2 += 8;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
688 }
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
689 }
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
690
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
691 static void yuv2rgb_c_1_ordered_dither (uint8_t * py_1, uint8_t * py_2,
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
692 uint8_t * pu, uint8_t * pv,
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
693 void * _dst_1, void * _dst_2, int h_size, int v_pos)
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
694 {
6991
bd242a56b563 remove unused varibles patch by (Eric Sesterhenn <SnakeByte at gmx dot de>)
michael
parents: 6577
diff changeset
695 int Y;
bd242a56b563 remove unused varibles patch by (Eric Sesterhenn <SnakeByte at gmx dot de>)
michael
parents: 6577
diff changeset
696 uint8_t * g;
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
697 uint8_t * dst_1, * dst_2;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
698
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
699 h_size >>= 3;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
700 dst_1 = _dst_1;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
701 dst_2 = _dst_2;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
702 g= table_gU[128] + table_gV[128];
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
703
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
704 while (h_size--) {
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
705 const uint8_t *d128=dither_8x8_220[v_pos&7];
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
706 char out_1=0, out_2=0;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
707
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
708 #define DST1bpp1(i,o) \
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
709 Y = py_1[2*i]; \
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
710 out_1+= out_1 + g[Y+d128[0+o]]; \
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
711 Y = py_1[2*i+1]; \
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
712 out_1+= out_1 + g[Y+d128[1+o]];
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
713
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
714 #define DST2bpp1(i,o) \
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
715 Y = py_2[2*i]; \
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
716 out_2+= out_2 + g[Y+d128[8+o]]; \
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
717 Y = py_2[2*i+1]; \
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
718 out_2+= out_2 + g[Y+d128[9+o]];
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
719
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
720 DST1bpp1(0,0);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
721 DST2bpp1(0,0);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
722
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
723 DST2bpp1(1,2);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
724 DST1bpp1(1,2);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
725
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
726 DST1bpp1(2,4);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
727 DST2bpp1(2,4);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
728
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
729 DST2bpp1(3,6);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
730 DST1bpp1(3,6);
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
731
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
732 dst_1[0]= out_1;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
733 dst_2[0]= out_2;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
734
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
735 pu += 4;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
736 pv += 4;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
737 py_1 += 8;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
738 py_2 += 8;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
739 dst_1 ++;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
740 dst_2 ++;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
741 }
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
742 }
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
743
6453
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
744
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
745 static int div_round (int dividend, int divisor)
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
746 {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
747 if (dividend > 0)
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
748 return (dividend + (divisor>>1)) / divisor;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
749 else
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
750 return -((-dividend + (divisor>>1)) / divisor);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
751 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
752
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
753 void *yuv2rgb_c_init (unsigned bpp, int mode, void *table_rV[256], void *table_gU[256], int table_gV[256], void *table_bU[256])
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
754 {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
755 int i;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
756 uint8_t table_Y[1024];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
757 uint32_t *table_32 = 0;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
758 uint16_t *table_16 = 0;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
759 uint8_t *table_8 = 0;
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
760 uint8_t *table_332 = 0;
6453
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
761 uint8_t *table_121 = 0;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
762 uint8_t *table_1 = 0;
6140
44dcc49a0d80 64bit incompatibility bug, patch by Artur Grabowski <art@blahonga.org>
arpi
parents: 5937
diff changeset
763 int entry_size = 0;
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
764 void *table_r = 0, *table_g = 0, *table_b = 0;
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
765 void *table_start;
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
766
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
767 int crv = Inverse_Table_6_9[matrix_coefficients][0];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
768 int cbu = Inverse_Table_6_9[matrix_coefficients][1];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
769 int cgu = -Inverse_Table_6_9[matrix_coefficients][2];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
770 int cgv = -Inverse_Table_6_9[matrix_coefficients][3];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
771
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
772 for (i = 0; i < 1024; i++) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
773 int j;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
774
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
775 j = (76309 * (i - 384 - 16) + 32768) >> 16;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
776 j = (j < 0) ? 0 : ((j > 255) ? 255 : j);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
777 table_Y[i] = j;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
778 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
779
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
780 switch (bpp) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
781 case 32:
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
782 yuv2rgb_c_internal = yuv2rgb_c_32;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
783
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
784 table_start= table_32 = malloc ((197 + 2*682 + 256 + 132) * sizeof (uint32_t));
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
785
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
786 entry_size = sizeof (uint32_t);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
787 table_r = table_32 + 197;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
788 table_b = table_32 + 197 + 685;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
789 table_g = table_32 + 197 + 2*682;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
790
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
791 for (i = -197; i < 256+197; i++)
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
792 ((uint32_t *)table_r)[i] = table_Y[i+384] << ((mode==MODE_RGB) ? 16 : 0);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
793 for (i = -132; i < 256+132; i++)
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
794 ((uint32_t *)table_g)[i] = table_Y[i+384] << 8;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
795 for (i = -232; i < 256+232; i++)
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
796 ((uint32_t *)table_b)[i] = table_Y[i+384] << ((mode==MODE_RGB) ? 0 : 16);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
797 break;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
798
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
799 case 24:
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
800 // yuv2rgb_c_internal = (mode==MODE_RGB) ? yuv2rgb_c_24_rgb : yuv2rgb_c_24_bgr;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
801 yuv2rgb_c_internal = (mode!=MODE_RGB) ? yuv2rgb_c_24_rgb : yuv2rgb_c_24_bgr;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
802
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
803 table_start= table_8 = malloc ((256 + 2*232) * sizeof (uint8_t));
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
804
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
805 entry_size = sizeof (uint8_t);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
806 table_r = table_g = table_b = table_8 + 232;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
807
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
808 for (i = -232; i < 256+232; i++)
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
809 ((uint8_t * )table_b)[i] = table_Y[i+384];
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
810 break;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
811
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
812 case 15:
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
813 case 16:
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
814 yuv2rgb_c_internal = yuv2rgb_c_16;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
815
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
816 table_start= table_16 = malloc ((197 + 2*682 + 256 + 132) * sizeof (uint16_t));
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
817
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
818 entry_size = sizeof (uint16_t);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
819 table_r = table_16 + 197;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
820 table_b = table_16 + 197 + 685;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
821 table_g = table_16 + 197 + 2*682;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
822
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
823 for (i = -197; i < 256+197; i++) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
824 int j = table_Y[i+384] >> 3;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
825
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
826 if (mode == MODE_RGB)
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
827 j <<= ((bpp==16) ? 11 : 10);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
828
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
829 ((uint16_t *)table_r)[i] = j;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
830 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
831 for (i = -132; i < 256+132; i++) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
832 int j = table_Y[i+384] >> ((bpp==16) ? 2 : 3);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
833
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
834 ((uint16_t *)table_g)[i] = j << 5;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
835 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
836 for (i = -232; i < 256+232; i++) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
837 int j = table_Y[i+384] >> 3;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
838
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
839 if (mode == MODE_BGR)
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
840 j <<= ((bpp==16) ? 11 : 10);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
841
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
842 ((uint16_t *)table_b)[i] = j;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
843 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
844 break;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
845
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
846 case 8:
6452
dae4143c636b ordered dither for 8bpp
michael
parents: 6451
diff changeset
847 yuv2rgb_c_internal = yuv2rgb_c_8_ordered_dither; //yuv2rgb_c_8;
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
848
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
849 table_start= table_332 = malloc ((197 + 2*682 + 256 + 132) * sizeof (uint8_t));
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
850
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
851 entry_size = sizeof (uint8_t);
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
852 table_r = table_332 + 197;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
853 table_b = table_332 + 197 + 685;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
854 table_g = table_332 + 197 + 2*682;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
855
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
856 for (i = -197; i < 256+197; i++) {
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
857 int j = (table_Y[i+384 - 16] + 18)/36;
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
858
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
859 if (mode == MODE_RGB)
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
860 j <<= 5;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
861
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
862 ((uint8_t *)table_r)[i] = j;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
863 }
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
864 for (i = -132; i < 256+132; i++) {
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
865 int j = (table_Y[i+384 - 16] + 18)/36;
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
866
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
867 if (mode == MODE_BGR)
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
868 j <<= 1;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
869
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
870 ((uint8_t *)table_g)[i] = j << 2;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
871 }
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
872 for (i = -232; i < 256+232; i++) {
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
873 int j = (table_Y[i+384 - 37] + 43)/85;
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
874
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
875 if (mode == MODE_BGR)
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
876 j <<= 6;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
877
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
878 ((uint8_t *)table_b)[i] = j;
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
879 }
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
880 break;
6453
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
881 case 4:
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
882 yuv2rgb_c_internal = yuv2rgb_c_4_ordered_dither; //yuv2rgb_c_4;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
883
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
884 table_start= table_121 = malloc ((197 + 2*682 + 256 + 132) * sizeof (uint8_t));
6453
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
885
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
886 entry_size = sizeof (uint8_t);
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
887 table_r = table_121 + 197;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
888 table_b = table_121 + 197 + 685;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
889 table_g = table_121 + 197 + 2*682;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
890
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
891 for (i = -197; i < 256+197; i++) {
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
892 int j = table_Y[i+384 - 110] >> 7;
6453
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
893
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
894 if (mode == MODE_RGB)
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
895 j <<= 3;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
896
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
897 ((uint8_t *)table_r)[i] = j;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
898 }
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
899 for (i = -132; i < 256+132; i++) {
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
900 int j = (table_Y[i+384 - 37]+ 43)/85;
6453
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
901
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
902 ((uint8_t *)table_g)[i] = j << 1;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
903 }
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
904 for (i = -232; i < 256+232; i++) {
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
905 int j =table_Y[i+384 - 110] >> 7;
6453
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
906
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
907 if (mode == MODE_BGR)
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
908 j <<= 3;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
909
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
910 ((uint8_t *)table_b)[i] = j;
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
911 }
7f06ef0d58a6 8bpp bugfixes (brightness, contrast ...)
michael
parents: 6452
diff changeset
912 break;
6451
ed906af317da 8bpp support (no dithering yet, use -vop noise for now)
michael
parents: 6140
diff changeset
913
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
914 case 1:
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
915 yuv2rgb_c_internal = yuv2rgb_c_1_ordered_dither;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
916
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
917 table_start= table_1 = malloc (256*2 * sizeof (uint8_t));
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
918
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
919 entry_size = sizeof (uint8_t);
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
920 table_g = table_1;
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
921 table_r = table_b = NULL;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
922
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
923 for (i = 0; i < 256+256; i++) {
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
924 int j = table_Y[i + 384 - 110]>>7;
6456
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
925
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
926 ((uint8_t *)table_g)[i] = j;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
927 }
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
928 break;
f0b64210ce97 1bpp support
michael
parents: 6453
diff changeset
929
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
930 default:
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
931 table_start= NULL;
5937
4b18bf35f153 printf to mp_msg
albeu
parents: 4285
diff changeset
932 mp_msg(MSGT_SWS,MSGL_ERR,"%ibpp not supported by yuv2rgb\n", bpp);
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
933 //exit (1);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
934 }
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
935
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
936 for (i = 0; i < 256; i++) {
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
937 table_rV[i] = table_r + entry_size * div_round (crv * (i-128), 76309);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
938 table_gU[i] = table_g + entry_size * div_round (cgu * (i-128), 76309);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
939 table_gV[i] = entry_size * div_round (cgv * (i-128), 76309);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
940 table_bU[i] = table_b + entry_size * div_round (cbu * (i-128), 76309);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
941 }
6577
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
942
aad616b63bed fixing scaling/contrast for 1/4/8 bpp
michael
parents: 6492
diff changeset
943 return table_start;
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents:
diff changeset
944 }