Mercurial > libavcodec.hg
annotate huffyuv.c @ 2470:06aafb585f69 libavcodec
require a few valid and equal mp3 headers for resync
author | michael |
---|---|
date | Sat, 29 Jan 2005 23:59:32 +0000 |
parents | f67b63ed036d |
children | 236562127b89 |
rev | line source |
---|---|
866 | 1 /* |
2 * huffyuv codec for libavcodec | |
3 * | |
1006 | 4 * Copyright (c) 2002-2003 Michael Niedermayer <michaelni@gmx.at> |
866 | 5 * |
6 * This library is free software; you can redistribute it and/or | |
7 * modify it under the terms of the GNU Lesser General Public | |
8 * License as published by the Free Software Foundation; either | |
9 * version 2 of the License, or (at your option) any later version. | |
10 * | |
11 * This library is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 * Lesser General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU Lesser General Public | |
17 * License along with this library; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 * | |
20 * see http://www.pcisys.net/~melanson/codecs/huffyuv.txt for a description of | |
21 * the algorithm used | |
22 */ | |
1106 | 23 |
24 /** | |
25 * @file huffyuv.c | |
26 * huffyuv codec for libavcodec. | |
27 */ | |
866 | 28 |
29 #include "common.h" | |
2398
582e635cfa08
common.c -> bitstream.c (and the single non bitstream func -> utils.c)
michael
parents:
2374
diff
changeset
|
30 #include "bitstream.h" |
866 | 31 #include "avcodec.h" |
32 #include "dsputil.h" | |
33 | |
34 #define VLC_BITS 11 | |
903 | 35 |
2176 | 36 #ifdef WORDS_BIGENDIAN |
37 #define B 3 | |
38 #define G 2 | |
39 #define R 1 | |
40 #else | |
41 #define B 0 | |
42 #define G 1 | |
43 #define R 2 | |
44 #endif | |
45 | |
866 | 46 typedef enum Predictor{ |
47 LEFT= 0, | |
48 PLANE, | |
49 MEDIAN, | |
50 } Predictor; | |
51 | |
52 typedef struct HYuvContext{ | |
53 AVCodecContext *avctx; | |
54 Predictor predictor; | |
55 GetBitContext gb; | |
56 PutBitContext pb; | |
57 int interlaced; | |
58 int decorrelate; | |
59 int bitstream_bpp; | |
60 int version; | |
61 int yuy2; //use yuy2 instead of 422P | |
62 int bgr32; //use bgr32 instead of bgr24 | |
63 int width, height; | |
64 int flags; | |
2369 | 65 int context; |
866 | 66 int picture_number; |
871 | 67 int last_slice_end; |
2422 | 68 uint8_t *temp[3]; |
866 | 69 uint64_t stats[3][256]; |
70 uint8_t len[3][256]; | |
71 uint32_t bits[3][256]; | |
72 VLC vlc[3]; | |
925 | 73 AVFrame picture; |
2422 | 74 uint8_t *bitstream_buffer; |
75 int bitstream_buffer_size; | |
866 | 76 DSPContext dsp; |
77 }HYuvContext; | |
78 | |
1082 | 79 static const unsigned char classic_shift_luma[] = { |
1080
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
80 34,36,35,69,135,232,9,16,10,24,11,23,12,16,13,10,14,8,15,8, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
81 16,8,17,20,16,10,207,206,205,236,11,8,10,21,9,23,8,8,199,70, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
82 69,68, 0 |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
83 }; |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
84 |
1082 | 85 static const unsigned char classic_shift_chroma[] = { |
1080
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
86 66,36,37,38,39,40,41,75,76,77,110,239,144,81,82,83,84,85,118,183, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
87 56,57,88,89,56,89,154,57,58,57,26,141,57,56,58,57,58,57,184,119, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
88 214,245,116,83,82,49,80,79,78,77,44,75,41,40,39,38,37,36,34, 0 |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
89 }; |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
90 |
1082 | 91 static const unsigned char classic_add_luma[256] = { |
1080
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
92 3, 9, 5, 12, 10, 35, 32, 29, 27, 50, 48, 45, 44, 41, 39, 37, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
93 73, 70, 68, 65, 64, 61, 58, 56, 53, 50, 49, 46, 44, 41, 38, 36, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
94 68, 65, 63, 61, 58, 55, 53, 51, 48, 46, 45, 43, 41, 39, 38, 36, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
95 35, 33, 32, 30, 29, 27, 26, 25, 48, 47, 46, 44, 43, 41, 40, 39, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
96 37, 36, 35, 34, 32, 31, 30, 28, 27, 26, 24, 23, 22, 20, 19, 37, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
97 35, 34, 33, 31, 30, 29, 27, 26, 24, 23, 21, 20, 18, 17, 15, 29, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
98 27, 26, 24, 22, 21, 19, 17, 16, 14, 26, 25, 23, 21, 19, 18, 16, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
99 15, 27, 25, 23, 21, 19, 17, 16, 14, 26, 25, 23, 21, 18, 17, 14, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
100 12, 17, 19, 13, 4, 9, 2, 11, 1, 7, 8, 0, 16, 3, 14, 6, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
101 12, 10, 5, 15, 18, 11, 10, 13, 15, 16, 19, 20, 22, 24, 27, 15, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
102 18, 20, 22, 24, 26, 14, 17, 20, 22, 24, 27, 15, 18, 20, 23, 25, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
103 28, 16, 19, 22, 25, 28, 32, 36, 21, 25, 29, 33, 38, 42, 45, 49, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
104 28, 31, 34, 37, 40, 42, 44, 47, 49, 50, 52, 54, 56, 57, 59, 60, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
105 62, 64, 66, 67, 69, 35, 37, 39, 40, 42, 43, 45, 47, 48, 51, 52, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
106 54, 55, 57, 59, 60, 62, 63, 66, 67, 69, 71, 72, 38, 40, 42, 43, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
107 46, 47, 49, 51, 26, 28, 30, 31, 33, 34, 18, 19, 11, 13, 7, 8, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
108 }; |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
109 |
1082 | 110 static const unsigned char classic_add_chroma[256] = { |
1080
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
111 3, 1, 2, 2, 2, 2, 3, 3, 7, 5, 7, 5, 8, 6, 11, 9, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
112 7, 13, 11, 10, 9, 8, 7, 5, 9, 7, 6, 4, 7, 5, 8, 7, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
113 11, 8, 13, 11, 19, 15, 22, 23, 20, 33, 32, 28, 27, 29, 51, 77, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
114 43, 45, 76, 81, 46, 82, 75, 55, 56,144, 58, 80, 60, 74,147, 63, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
115 143, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
116 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 27, 30, 21, 22, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
117 17, 14, 5, 6,100, 54, 47, 50, 51, 53,106,107,108,109,110,111, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
118 112,113,114,115, 4,117,118, 92, 94,121,122, 3,124,103, 2, 1, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
119 0,129,130,131,120,119,126,125,136,137,138,139,140,141,142,134, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
120 135,132,133,104, 64,101, 62, 57,102, 95, 93, 59, 61, 28, 97, 96, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
121 52, 49, 48, 29, 32, 25, 24, 46, 23, 98, 45, 44, 43, 20, 42, 41, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
122 19, 18, 99, 40, 15, 39, 38, 16, 13, 12, 11, 37, 10, 9, 8, 36, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
123 7,128,127,105,123,116, 35, 34, 33,145, 31, 79, 42,146, 78, 26, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
124 83, 48, 49, 50, 44, 47, 26, 31, 30, 18, 17, 19, 21, 24, 25, 13, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
125 14, 16, 17, 18, 20, 21, 12, 14, 15, 9, 10, 6, 9, 6, 5, 8, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
126 6, 12, 8, 10, 7, 9, 6, 4, 6, 2, 2, 3, 3, 3, 3, 2, |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
127 }; |
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
128 |
866 | 129 static inline int add_left_prediction(uint8_t *dst, uint8_t *src, int w, int acc){ |
130 int i; | |
131 | |
132 for(i=0; i<w-1; i++){ | |
133 acc+= src[i]; | |
134 dst[i]= acc; | |
135 i++; | |
136 acc+= src[i]; | |
137 dst[i]= acc; | |
138 } | |
139 | |
140 for(; i<w; i++){ | |
141 acc+= src[i]; | |
142 dst[i]= acc; | |
143 } | |
144 | |
145 return acc; | |
146 } | |
147 | |
148 static inline void add_median_prediction(uint8_t *dst, uint8_t *src1, uint8_t *diff, int w, int *left, int *left_top){ | |
149 int i; | |
150 uint8_t l, lt; | |
151 | |
152 l= *left; | |
153 lt= *left_top; | |
154 | |
155 for(i=0; i<w; i++){ | |
156 l= mid_pred(l, src1[i], (l + src1[i] - lt)&0xFF) + diff[i]; | |
157 lt= src1[i]; | |
158 dst[i]= l; | |
159 } | |
160 | |
161 *left= l; | |
162 *left_top= lt; | |
163 } | |
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
164 |
866 | 165 static inline void add_left_prediction_bgr32(uint8_t *dst, uint8_t *src, int w, int *red, int *green, int *blue){ |
166 int i; | |
167 int r,g,b; | |
168 r= *red; | |
169 g= *green; | |
170 b= *blue; | |
171 | |
172 for(i=0; i<w; i++){ | |
2176 | 173 b+= src[4*i+B]; |
174 g+= src[4*i+G]; | |
175 r+= src[4*i+R]; | |
866 | 176 |
2176 | 177 dst[4*i+B]= b; |
178 dst[4*i+G]= g; | |
179 dst[4*i+R]= r; | |
866 | 180 } |
181 | |
182 *red= r; | |
183 *green= g; | |
184 *blue= b; | |
185 } | |
186 | |
871 | 187 static inline int sub_left_prediction(HYuvContext *s, uint8_t *dst, uint8_t *src, int w, int left){ |
866 | 188 int i; |
871 | 189 if(w<32){ |
190 for(i=0; i<w; i++){ | |
191 const int temp= src[i]; | |
192 dst[i]= temp - left; | |
193 left= temp; | |
194 } | |
195 return left; | |
196 }else{ | |
197 for(i=0; i<16; i++){ | |
198 const int temp= src[i]; | |
199 dst[i]= temp - left; | |
200 left= temp; | |
201 } | |
202 s->dsp.diff_bytes(dst+16, src+16, src+15, w-16); | |
203 return src[w-1]; | |
866 | 204 } |
205 } | |
1325 | 206 |
866 | 207 static void read_len_table(uint8_t *dst, GetBitContext *gb){ |
208 int i, val, repeat; | |
209 | |
210 for(i=0; i<256;){ | |
211 repeat= get_bits(gb, 3); | |
212 val = get_bits(gb, 5); | |
213 if(repeat==0) | |
214 repeat= get_bits(gb, 8); | |
215 //printf("%d %d\n", val, repeat); | |
216 while (repeat--) | |
217 dst[i++] = val; | |
218 } | |
219 } | |
220 | |
221 static int generate_bits_table(uint32_t *dst, uint8_t *len_table){ | |
222 int len, index; | |
223 uint32_t bits=0; | |
224 | |
225 for(len=32; len>0; len--){ | |
226 for(index=0; index<256; index++){ | |
1279 | 227 if(len_table[index]==len) |
228 dst[index]= bits++; | |
866 | 229 } |
1279 | 230 if(bits & 1){ |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
231 av_log(NULL, AV_LOG_ERROR, "Error generating huffman table\n"); |
1279 | 232 return -1; |
233 } | |
234 bits >>= 1; | |
866 | 235 } |
236 return 0; | |
237 } | |
238 | |
239 static void generate_len_table(uint8_t *dst, uint64_t *stats, int size){ | |
240 uint64_t counts[2*size]; | |
241 int up[2*size]; | |
242 int offset, i, next; | |
243 | |
244 for(offset=1; ; offset<<=1){ | |
245 for(i=0; i<size; i++){ | |
246 counts[i]= stats[i] + offset - 1; | |
247 } | |
248 | |
249 for(next=size; next<size*2; next++){ | |
250 uint64_t min1, min2; | |
251 int min1_i, min2_i; | |
252 | |
253 min1=min2= INT64_MAX; | |
254 min1_i= min2_i=-1; | |
255 | |
256 for(i=0; i<next; i++){ | |
257 if(min2 > counts[i]){ | |
258 if(min1 > counts[i]){ | |
259 min2= min1; | |
260 min2_i= min1_i; | |
261 min1= counts[i]; | |
262 min1_i= i; | |
263 }else{ | |
264 min2= counts[i]; | |
265 min2_i= i; | |
266 } | |
267 } | |
268 } | |
269 | |
270 if(min2==INT64_MAX) break; | |
271 | |
272 counts[next]= min1 + min2; | |
273 counts[min1_i]= | |
869 | 274 counts[min2_i]= INT64_MAX; |
866 | 275 up[min1_i]= |
276 up[min2_i]= next; | |
277 up[next]= -1; | |
278 } | |
279 | |
280 for(i=0; i<size; i++){ | |
281 int len; | |
282 int index=i; | |
283 | |
284 for(len=0; up[index] != -1; len++) | |
285 index= up[index]; | |
286 | |
2233 | 287 if(len >= 32) break; |
866 | 288 |
289 dst[i]= len; | |
290 } | |
291 if(i==size) break; | |
292 } | |
293 } | |
294 | |
295 static int read_huffman_tables(HYuvContext *s, uint8_t *src, int length){ | |
296 GetBitContext gb; | |
297 int i; | |
298 | |
1025
1f9afd8b9131
GetBitContext.size is allways multiplied by 8 -> use size_in_bits to avoid useless *8 in a few inner loops
michaelni
parents:
1006
diff
changeset
|
299 init_get_bits(&gb, src, length*8); |
866 | 300 |
301 for(i=0; i<3; i++){ | |
302 read_len_table(s->len[i], &gb); | |
303 | |
304 if(generate_bits_table(s->bits[i], s->len[i])<0){ | |
305 return -1; | |
306 } | |
307 #if 0 | |
308 for(j=0; j<256; j++){ | |
309 printf("%6X, %2d, %3d\n", s->bits[i][j], s->len[i][j], j); | |
310 } | |
311 #endif | |
2369 | 312 free_vlc(&s->vlc[i]); |
2370
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2369
diff
changeset
|
313 init_vlc(&s->vlc[i], VLC_BITS, 256, s->len[i], 1, 1, s->bits[i], 4, 4, 0); |
866 | 314 } |
315 | |
2369 | 316 return (get_bits_count(&gb)+7)/8; |
866 | 317 } |
318 | |
319 static int read_old_huffman_tables(HYuvContext *s){ | |
1080
a150aba978de
huffyuv v1 tables, as they are essential and the only possible way for decding of v1 files they very likely cant be copyrighted ...
michaelni
parents:
1078
diff
changeset
|
320 #if 1 |
866 | 321 GetBitContext gb; |
322 int i; | |
323 | |
1025
1f9afd8b9131
GetBitContext.size is allways multiplied by 8 -> use size_in_bits to avoid useless *8 in a few inner loops
michaelni
parents:
1006
diff
changeset
|
324 init_get_bits(&gb, classic_shift_luma, sizeof(classic_shift_luma)*8); |
866 | 325 read_len_table(s->len[0], &gb); |
1025
1f9afd8b9131
GetBitContext.size is allways multiplied by 8 -> use size_in_bits to avoid useless *8 in a few inner loops
michaelni
parents:
1006
diff
changeset
|
326 init_get_bits(&gb, classic_shift_chroma, sizeof(classic_shift_chroma)*8); |
866 | 327 read_len_table(s->len[1], &gb); |
328 | |
329 for(i=0; i<256; i++) s->bits[0][i] = classic_add_luma [i]; | |
330 for(i=0; i<256; i++) s->bits[1][i] = classic_add_chroma[i]; | |
331 | |
332 if(s->bitstream_bpp >= 24){ | |
333 memcpy(s->bits[1], s->bits[0], 256*sizeof(uint32_t)); | |
334 memcpy(s->len[1] , s->len [0], 256*sizeof(uint8_t)); | |
335 } | |
336 memcpy(s->bits[2], s->bits[1], 256*sizeof(uint32_t)); | |
337 memcpy(s->len[2] , s->len [1], 256*sizeof(uint8_t)); | |
338 | |
2369 | 339 for(i=0; i<3; i++){ |
340 free_vlc(&s->vlc[i]); | |
2370
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2369
diff
changeset
|
341 init_vlc(&s->vlc[i], VLC_BITS, 256, s->len[i], 1, 1, s->bits[i], 4, 4, 0); |
2369 | 342 } |
866 | 343 |
344 return 0; | |
345 #else | |
346 fprintf(stderr, "v1 huffyuv is not supported \n"); | |
347 return -1; | |
348 #endif | |
349 } | |
350 | |
2422 | 351 static int common_init(AVCodecContext *avctx){ |
866 | 352 HYuvContext *s = avctx->priv_data; |
2422 | 353 int i; |
866 | 354 |
355 s->avctx= avctx; | |
356 s->flags= avctx->flags; | |
357 | |
1097 | 358 dsputil_init(&s->dsp, avctx); |
2422 | 359 |
360 s->width= avctx->width; | |
361 s->height= avctx->height; | |
362 assert(s->width>0 && s->height>0); | |
363 | |
364 for(i=0; i<3; i++){ | |
365 s->temp[i]= av_malloc(avctx->width + 16); | |
366 } | |
367 return 0; | |
368 } | |
369 | |
370 static int decode_init(AVCodecContext *avctx) | |
371 { | |
372 HYuvContext *s = avctx->priv_data; | |
373 | |
374 common_init(avctx); | |
2369 | 375 memset(s->vlc, 0, 3*sizeof(VLC)); |
866 | 376 |
925 | 377 avctx->coded_frame= &s->picture; |
2422 | 378 s->interlaced= s->height > 288; |
903 | 379 |
866 | 380 s->bgr32=1; |
381 //if(avctx->extradata) | |
382 // printf("extradata:%X, extradata_size:%d\n", *(uint32_t*)avctx->extradata, avctx->extradata_size); | |
383 if(avctx->extradata_size){ | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
384 if((avctx->bits_per_sample&7) && avctx->bits_per_sample != 12) |
866 | 385 s->version=1; // do such files exist at all? |
386 else | |
387 s->version=2; | |
388 }else | |
389 s->version=0; | |
390 | |
391 if(s->version==2){ | |
2374 | 392 int method, interlace; |
866 | 393 |
394 method= ((uint8_t*)avctx->extradata)[0]; | |
395 s->decorrelate= method&64 ? 1 : 0; | |
396 s->predictor= method&63; | |
397 s->bitstream_bpp= ((uint8_t*)avctx->extradata)[1]; | |
398 if(s->bitstream_bpp==0) | |
399 s->bitstream_bpp= avctx->bits_per_sample&~7; | |
2374 | 400 interlace= (((uint8_t*)avctx->extradata)[2] & 0x30) >> 4; |
401 s->interlaced= (interlace==1) ? 1 : (interlace==2) ? 0 : s->interlaced; | |
2369 | 402 s->context= ((uint8_t*)avctx->extradata)[2] & 0x40 ? 1 : 0; |
866 | 403 |
404 if(read_huffman_tables(s, ((uint8_t*)avctx->extradata)+4, avctx->extradata_size) < 0) | |
405 return -1; | |
406 }else{ | |
407 switch(avctx->bits_per_sample&7){ | |
408 case 1: | |
409 s->predictor= LEFT; | |
410 s->decorrelate= 0; | |
411 break; | |
412 case 2: | |
413 s->predictor= LEFT; | |
414 s->decorrelate= 1; | |
415 break; | |
416 case 3: | |
417 s->predictor= PLANE; | |
418 s->decorrelate= avctx->bits_per_sample >= 24; | |
419 break; | |
420 case 4: | |
421 s->predictor= MEDIAN; | |
422 s->decorrelate= 0; | |
423 break; | |
424 default: | |
425 s->predictor= LEFT; //OLD | |
426 s->decorrelate= 0; | |
427 break; | |
428 } | |
429 s->bitstream_bpp= avctx->bits_per_sample & ~7; | |
2369 | 430 s->context= 0; |
866 | 431 |
432 if(read_old_huffman_tables(s) < 0) | |
433 return -1; | |
434 } | |
435 | |
436 switch(s->bitstream_bpp){ | |
437 case 12: | |
438 avctx->pix_fmt = PIX_FMT_YUV420P; | |
439 break; | |
440 case 16: | |
441 if(s->yuy2){ | |
442 avctx->pix_fmt = PIX_FMT_YUV422; | |
443 }else{ | |
444 avctx->pix_fmt = PIX_FMT_YUV422P; | |
445 } | |
446 break; | |
447 case 24: | |
448 case 32: | |
449 if(s->bgr32){ | |
990
165064f921ee
changed BGRA32 to RGBA32. XXX: clarify expected behaviour on big endian cpu
bellard
parents:
925
diff
changeset
|
450 avctx->pix_fmt = PIX_FMT_RGBA32; |
866 | 451 }else{ |
452 avctx->pix_fmt = PIX_FMT_BGR24; | |
453 } | |
454 break; | |
455 default: | |
456 assert(0); | |
457 } | |
458 | |
2190 | 459 // av_log(NULL, AV_LOG_DEBUG, "pred:%d bpp:%d hbpp:%d il:%d\n", s->predictor, s->bitstream_bpp, avctx->bits_per_sample, s->interlaced); |
460 | |
866 | 461 return 0; |
462 } | |
463 | |
2369 | 464 static int store_table(HYuvContext *s, uint8_t *len, uint8_t *buf){ |
866 | 465 int i; |
2369 | 466 int index= 0; |
866 | 467 |
468 for(i=0; i<256;){ | |
469 int val= len[i]; | |
1529
cb523a2ca00f
fix the case where all vlc codes are 8 bits long (repeat=256)
michael
parents:
1528
diff
changeset
|
470 int repeat=0; |
866 | 471 |
1529
cb523a2ca00f
fix the case where all vlc codes are 8 bits long (repeat=256)
michael
parents:
1528
diff
changeset
|
472 for(; i<256 && len[i]==val && repeat<255; i++) |
cb523a2ca00f
fix the case where all vlc codes are 8 bits long (repeat=256)
michael
parents:
1528
diff
changeset
|
473 repeat++; |
866 | 474 |
1529
cb523a2ca00f
fix the case where all vlc codes are 8 bits long (repeat=256)
michael
parents:
1528
diff
changeset
|
475 assert(val < 32 && val >0 && repeat<256 && repeat>0); |
866 | 476 if(repeat>7){ |
2369 | 477 buf[index++]= val; |
478 buf[index++]= repeat; | |
866 | 479 }else{ |
2369 | 480 buf[index++]= val | (repeat<<5); |
866 | 481 } |
482 } | |
483 | |
2369 | 484 return index; |
866 | 485 } |
486 | |
487 static int encode_init(AVCodecContext *avctx) | |
488 { | |
489 HYuvContext *s = avctx->priv_data; | |
2422 | 490 int i, j; |
866 | 491 |
2422 | 492 common_init(avctx); |
866 | 493 |
2422 | 494 avctx->extradata= av_mallocz(1024*30); // 256*3+4 == 772 |
495 avctx->stats_out= av_mallocz(1024*30); // 21*256*3(%llu ) + 3(\n) + 1(0) = 16132 | |
866 | 496 s->version=2; |
497 | |
925 | 498 avctx->coded_frame= &s->picture; |
903 | 499 |
866 | 500 switch(avctx->pix_fmt){ |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
501 case PIX_FMT_YUV420P: |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
502 s->bitstream_bpp= 12; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
503 break; |
866 | 504 case PIX_FMT_YUV422P: |
505 s->bitstream_bpp= 16; | |
506 break; | |
507 default: | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
508 av_log(avctx, AV_LOG_ERROR, "format not supported\n"); |
866 | 509 return -1; |
510 } | |
511 avctx->bits_per_sample= s->bitstream_bpp; | |
512 s->decorrelate= s->bitstream_bpp >= 24; | |
513 s->predictor= avctx->prediction_method; | |
2237
d43321e67acd
(non)interlaced huffyuv patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
2233
diff
changeset
|
514 s->interlaced= avctx->flags&CODEC_FLAG_INTERLACED_ME ? 1 : 0; |
2369 | 515 if(avctx->context_model==1){ |
516 s->context= avctx->context_model; | |
517 if(s->flags & (CODEC_FLAG_PASS1|CODEC_FLAG_PASS2)){ | |
518 av_log(avctx, AV_LOG_ERROR, "context=1 is not compatible with 2 pass huffyuv encoding\n"); | |
519 return -1; | |
520 } | |
521 }else s->context= 0; | |
866 | 522 |
2373 | 523 if(avctx->codec->id==CODEC_ID_HUFFYUV){ |
524 if(avctx->pix_fmt==PIX_FMT_YUV420P){ | |
525 av_log(avctx, AV_LOG_ERROR, "Error: YV12 is not supported by huffyuv; use vcodec=ffvhuff or format=422p\n"); | |
526 return -1; | |
527 } | |
528 if(avctx->context_model){ | |
529 av_log(avctx, AV_LOG_ERROR, "Error: per-frame huffman tables are not supported by huffyuv; use vcodec=ffvhuff\n"); | |
530 return -1; | |
531 } | |
2422 | 532 if(s->interlaced != ( s->height > 288 )) |
2373 | 533 av_log(avctx, AV_LOG_INFO, "using huffyuv 2.2.0 or newer interlacing flag\n"); |
534 }else if(avctx->strict_std_compliance>=0){ | |
535 av_log(avctx, AV_LOG_ERROR, "This codec is under development; files encoded with it may not be decodeable with future versions!!! Set vstrict=-1 to use it anyway.\n"); | |
536 return -1; | |
537 } | |
538 | |
866 | 539 ((uint8_t*)avctx->extradata)[0]= s->predictor; |
540 ((uint8_t*)avctx->extradata)[1]= s->bitstream_bpp; | |
2374 | 541 ((uint8_t*)avctx->extradata)[2]= s->interlaced ? 0x10 : 0x20; |
2369 | 542 if(s->context) |
543 ((uint8_t*)avctx->extradata)[2]|= 0x40; | |
866 | 544 ((uint8_t*)avctx->extradata)[3]= 0; |
545 s->avctx->extradata_size= 4; | |
546 | |
547 if(avctx->stats_in){ | |
548 char *p= avctx->stats_in; | |
549 | |
550 for(i=0; i<3; i++) | |
551 for(j=0; j<256; j++) | |
552 s->stats[i][j]= 1; | |
553 | |
554 for(;;){ | |
555 for(i=0; i<3; i++){ | |
556 char *next; | |
557 | |
558 for(j=0; j<256; j++){ | |
559 s->stats[i][j]+= strtol(p, &next, 0); | |
560 if(next==p) return -1; | |
561 p=next; | |
562 } | |
563 } | |
564 if(p[0]==0 || p[1]==0 || p[2]==0) break; | |
565 } | |
566 }else{ | |
567 for(i=0; i<3; i++) | |
568 for(j=0; j<256; j++){ | |
569 int d= FFMIN(j, 256-j); | |
570 | |
571 s->stats[i][j]= 100000000/(d+1); | |
572 } | |
573 } | |
574 | |
575 for(i=0; i<3; i++){ | |
576 generate_len_table(s->len[i], s->stats[i], 256); | |
577 | |
578 if(generate_bits_table(s->bits[i], s->len[i])<0){ | |
579 return -1; | |
580 } | |
581 | |
2369 | 582 s->avctx->extradata_size+= |
583 store_table(s, s->len[i], &((uint8_t*)s->avctx->extradata)[s->avctx->extradata_size]); | |
866 | 584 } |
585 | |
2369 | 586 if(s->context){ |
587 for(i=0; i<3; i++){ | |
2422 | 588 int pels = s->width*s->height / (i?40:10); |
2369 | 589 for(j=0; j<256; j++){ |
590 int d= FFMIN(j, 256-j); | |
591 s->stats[i][j]= pels/(d+1); | |
592 } | |
593 } | |
594 }else{ | |
595 for(i=0; i<3; i++) | |
596 for(j=0; j<256; j++) | |
597 s->stats[i][j]= 0; | |
598 } | |
866 | 599 |
600 // printf("pred:%d bpp:%d hbpp:%d il:%d\n", s->predictor, s->bitstream_bpp, avctx->bits_per_sample, s->interlaced); | |
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
601 |
866 | 602 s->picture_number=0; |
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
603 |
866 | 604 return 0; |
605 } | |
606 | |
607 static void decode_422_bitstream(HYuvContext *s, int count){ | |
608 int i; | |
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
609 |
866 | 610 count/=2; |
611 | |
612 for(i=0; i<count; i++){ | |
613 s->temp[0][2*i ]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); | |
614 s->temp[1][ i ]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); | |
615 s->temp[0][2*i+1]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); | |
616 s->temp[2][ i ]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); | |
617 } | |
618 } | |
619 | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
620 static void decode_gray_bitstream(HYuvContext *s, int count){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
621 int i; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
622 |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
623 count/=2; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
624 |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
625 for(i=0; i<count; i++){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
626 s->temp[0][2*i ]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
627 s->temp[0][2*i+1]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
628 } |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
629 } |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
630 |
2422 | 631 static int encode_422_bitstream(HYuvContext *s, int count){ |
866 | 632 int i; |
633 | |
2422 | 634 if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < 2*4*count){ |
635 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n"); | |
636 return -1; | |
637 } | |
638 | |
866 | 639 count/=2; |
640 if(s->flags&CODEC_FLAG_PASS1){ | |
641 for(i=0; i<count; i++){ | |
642 s->stats[0][ s->temp[0][2*i ] ]++; | |
643 s->stats[1][ s->temp[1][ i ] ]++; | |
644 s->stats[0][ s->temp[0][2*i+1] ]++; | |
645 s->stats[2][ s->temp[2][ i ] ]++; | |
646 } | |
2369 | 647 }else if(s->context){ |
648 for(i=0; i<count; i++){ | |
649 s->stats[0][ s->temp[0][2*i ] ]++; | |
650 put_bits(&s->pb, s->len[0][ s->temp[0][2*i ] ], s->bits[0][ s->temp[0][2*i ] ]); | |
651 s->stats[1][ s->temp[1][ i ] ]++; | |
652 put_bits(&s->pb, s->len[1][ s->temp[1][ i ] ], s->bits[1][ s->temp[1][ i ] ]); | |
653 s->stats[0][ s->temp[0][2*i+1] ]++; | |
654 put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]); | |
655 s->stats[2][ s->temp[2][ i ] ]++; | |
656 put_bits(&s->pb, s->len[2][ s->temp[2][ i ] ], s->bits[2][ s->temp[2][ i ] ]); | |
657 } | |
866 | 658 }else{ |
659 for(i=0; i<count; i++){ | |
660 put_bits(&s->pb, s->len[0][ s->temp[0][2*i ] ], s->bits[0][ s->temp[0][2*i ] ]); | |
661 put_bits(&s->pb, s->len[1][ s->temp[1][ i ] ], s->bits[1][ s->temp[1][ i ] ]); | |
662 put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]); | |
663 put_bits(&s->pb, s->len[2][ s->temp[2][ i ] ], s->bits[2][ s->temp[2][ i ] ]); | |
664 } | |
665 } | |
2422 | 666 return 0; |
866 | 667 } |
668 | |
2422 | 669 static int encode_gray_bitstream(HYuvContext *s, int count){ |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
670 int i; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
671 |
2422 | 672 if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < 4*count){ |
673 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n"); | |
674 return -1; | |
675 } | |
676 | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
677 count/=2; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
678 if(s->flags&CODEC_FLAG_PASS1){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
679 for(i=0; i<count; i++){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
680 s->stats[0][ s->temp[0][2*i ] ]++; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
681 s->stats[0][ s->temp[0][2*i+1] ]++; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
682 } |
2369 | 683 }else if(s->context){ |
684 for(i=0; i<count; i++){ | |
685 s->stats[0][ s->temp[0][2*i ] ]++; | |
686 put_bits(&s->pb, s->len[0][ s->temp[0][2*i ] ], s->bits[0][ s->temp[0][2*i ] ]); | |
687 s->stats[0][ s->temp[0][2*i+1] ]++; | |
688 put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]); | |
689 } | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
690 }else{ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
691 for(i=0; i<count; i++){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
692 put_bits(&s->pb, s->len[0][ s->temp[0][2*i ] ], s->bits[0][ s->temp[0][2*i ] ]); |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
693 put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]); |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
694 } |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
695 } |
2422 | 696 return 0; |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
697 } |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
698 |
866 | 699 static void decode_bgr_bitstream(HYuvContext *s, int count){ |
700 int i; | |
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
701 |
866 | 702 if(s->decorrelate){ |
703 if(s->bitstream_bpp==24){ | |
704 for(i=0; i<count; i++){ | |
2177 | 705 s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); |
706 s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3) + s->temp[0][4*i+G]; | |
707 s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3) + s->temp[0][4*i+G]; | |
866 | 708 } |
709 }else{ | |
710 for(i=0; i<count; i++){ | |
2176 | 711 s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); |
712 s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3) + s->temp[0][4*i+G]; | |
713 s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3) + s->temp[0][4*i+G]; | |
866 | 714 get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); //?! |
715 } | |
716 } | |
717 }else{ | |
718 if(s->bitstream_bpp==24){ | |
719 for(i=0; i<count; i++){ | |
2177 | 720 s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); |
721 s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); | |
722 s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); | |
866 | 723 } |
724 }else{ | |
725 for(i=0; i<count; i++){ | |
2176 | 726 s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); |
727 s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); | |
728 s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); | |
866 | 729 get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); //?! |
730 } | |
731 } | |
732 } | |
733 } | |
734 | |
871 | 735 static void draw_slice(HYuvContext *s, int y){ |
736 int h, cy; | |
1368 | 737 int offset[4]; |
871 | 738 |
739 if(s->avctx->draw_horiz_band==NULL) | |
740 return; | |
741 | |
742 h= y - s->last_slice_end; | |
743 y -= h; | |
744 | |
745 if(s->bitstream_bpp==12){ | |
746 cy= y>>1; | |
747 }else{ | |
748 cy= y; | |
749 } | |
1368 | 750 |
751 offset[0] = s->picture.linesize[0]*y; | |
752 offset[1] = s->picture.linesize[1]*cy; | |
753 offset[2] = s->picture.linesize[2]*cy; | |
754 offset[3] = 0; | |
871 | 755 emms_c(); |
756 | |
1370 | 757 s->avctx->draw_horiz_band(s->avctx, &s->picture, offset, y, 3, h); |
871 | 758 |
759 s->last_slice_end= y + h; | |
760 } | |
761 | |
866 | 762 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size){ |
763 HYuvContext *s = avctx->priv_data; | |
764 const int width= s->width; | |
765 const int width2= s->width>>1; | |
766 const int height= s->height; | |
870 | 767 int fake_ystride, fake_ustride, fake_vstride; |
925 | 768 AVFrame * const p= &s->picture; |
2369 | 769 int table_size= 0; |
866 | 770 |
925 | 771 AVFrame *picture = data; |
866 | 772 |
2422 | 773 s->bitstream_buffer= av_fast_realloc(s->bitstream_buffer, &s->bitstream_buffer_size, buf_size + FF_INPUT_BUFFER_PADDING_SIZE); |
866 | 774 |
1273 | 775 s->dsp.bswap_buf((uint32_t*)s->bitstream_buffer, (uint32_t*)buf, buf_size/4); |
866 | 776 |
1228 | 777 if(p->data[0]) |
778 avctx->release_buffer(avctx, p); | |
779 | |
903 | 780 p->reference= 0; |
781 if(avctx->get_buffer(avctx, p) < 0){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
782 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
903 | 783 return -1; |
784 } | |
2369 | 785 |
786 if(s->context){ | |
787 table_size = read_huffman_tables(s, s->bitstream_buffer, buf_size); | |
788 if(table_size < 0) | |
789 return -1; | |
790 } | |
791 | |
792 init_get_bits(&s->gb, s->bitstream_buffer+table_size, (buf_size-table_size)*8); | |
870 | 793 |
903 | 794 fake_ystride= s->interlaced ? p->linesize[0]*2 : p->linesize[0]; |
795 fake_ustride= s->interlaced ? p->linesize[1]*2 : p->linesize[1]; | |
796 fake_vstride= s->interlaced ? p->linesize[2]*2 : p->linesize[2]; | |
871 | 797 |
798 s->last_slice_end= 0; | |
870 | 799 |
866 | 800 if(s->bitstream_bpp<24){ |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
801 int y, cy; |
866 | 802 int lefty, leftu, leftv; |
803 int lefttopy, lefttopu, lefttopv; | |
804 | |
805 if(s->yuy2){ | |
903 | 806 p->data[0][3]= get_bits(&s->gb, 8); |
807 p->data[0][2]= get_bits(&s->gb, 8); | |
808 p->data[0][1]= get_bits(&s->gb, 8); | |
809 p->data[0][0]= get_bits(&s->gb, 8); | |
866 | 810 |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
811 av_log(avctx, AV_LOG_ERROR, "YUY2 output isnt implemenetd yet\n"); |
866 | 812 return -1; |
813 }else{ | |
814 | |
903 | 815 leftv= p->data[2][0]= get_bits(&s->gb, 8); |
816 lefty= p->data[0][1]= get_bits(&s->gb, 8); | |
817 leftu= p->data[1][0]= get_bits(&s->gb, 8); | |
818 p->data[0][0]= get_bits(&s->gb, 8); | |
866 | 819 |
820 switch(s->predictor){ | |
821 case LEFT: | |
822 case PLANE: | |
823 decode_422_bitstream(s, width-2); | |
903 | 824 lefty= add_left_prediction(p->data[0] + 2, s->temp[0], width-2, lefty); |
866 | 825 if(!(s->flags&CODEC_FLAG_GRAY)){ |
903 | 826 leftu= add_left_prediction(p->data[1] + 1, s->temp[1], width2-1, leftu); |
827 leftv= add_left_prediction(p->data[2] + 1, s->temp[2], width2-1, leftv); | |
866 | 828 } |
829 | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
830 for(cy=y=1; y<s->height; y++,cy++){ |
866 | 831 uint8_t *ydst, *udst, *vdst; |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
832 |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
833 if(s->bitstream_bpp==12){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
834 decode_gray_bitstream(s, width); |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
835 |
903 | 836 ydst= p->data[0] + p->linesize[0]*y; |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
837 |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
838 lefty= add_left_prediction(ydst, s->temp[0], width, lefty); |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
839 if(s->predictor == PLANE){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
840 if(y>s->interlaced) |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
841 s->dsp.add_bytes(ydst, ydst - fake_ystride, width); |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
842 } |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
843 y++; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
844 if(y>=s->height) break; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
845 } |
866 | 846 |
871 | 847 draw_slice(s, y); |
848 | |
903 | 849 ydst= p->data[0] + p->linesize[0]*y; |
850 udst= p->data[1] + p->linesize[1]*cy; | |
851 vdst= p->data[2] + p->linesize[2]*cy; | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
852 |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
853 decode_422_bitstream(s, width); |
866 | 854 lefty= add_left_prediction(ydst, s->temp[0], width, lefty); |
855 if(!(s->flags&CODEC_FLAG_GRAY)){ | |
856 leftu= add_left_prediction(udst, s->temp[1], width2, leftu); | |
857 leftv= add_left_prediction(vdst, s->temp[2], width2, leftv); | |
858 } | |
859 if(s->predictor == PLANE){ | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
860 if(cy>s->interlaced){ |
866 | 861 s->dsp.add_bytes(ydst, ydst - fake_ystride, width); |
862 if(!(s->flags&CODEC_FLAG_GRAY)){ | |
863 s->dsp.add_bytes(udst, udst - fake_ustride, width2); | |
864 s->dsp.add_bytes(vdst, vdst - fake_vstride, width2); | |
865 } | |
866 } | |
867 } | |
868 } | |
871 | 869 draw_slice(s, height); |
870 | |
866 | 871 break; |
872 case MEDIAN: | |
873 /* first line except first 2 pixels is left predicted */ | |
874 decode_422_bitstream(s, width-2); | |
903 | 875 lefty= add_left_prediction(p->data[0] + 2, s->temp[0], width-2, lefty); |
866 | 876 if(!(s->flags&CODEC_FLAG_GRAY)){ |
903 | 877 leftu= add_left_prediction(p->data[1] + 1, s->temp[1], width2-1, leftu); |
878 leftv= add_left_prediction(p->data[2] + 1, s->temp[2], width2-1, leftv); | |
866 | 879 } |
880 | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
881 cy=y=1; |
866 | 882 |
883 /* second line is left predicted for interlaced case */ | |
884 if(s->interlaced){ | |
885 decode_422_bitstream(s, width); | |
903 | 886 lefty= add_left_prediction(p->data[0] + p->linesize[0], s->temp[0], width, lefty); |
866 | 887 if(!(s->flags&CODEC_FLAG_GRAY)){ |
903 | 888 leftu= add_left_prediction(p->data[1] + p->linesize[2], s->temp[1], width2, leftu); |
889 leftv= add_left_prediction(p->data[2] + p->linesize[1], s->temp[2], width2, leftv); | |
866 | 890 } |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
891 y++; cy++; |
866 | 892 } |
893 | |
894 /* next 4 pixels are left predicted too */ | |
895 decode_422_bitstream(s, 4); | |
903 | 896 lefty= add_left_prediction(p->data[0] + fake_ystride, s->temp[0], 4, lefty); |
866 | 897 if(!(s->flags&CODEC_FLAG_GRAY)){ |
903 | 898 leftu= add_left_prediction(p->data[1] + fake_ustride, s->temp[1], 2, leftu); |
899 leftv= add_left_prediction(p->data[2] + fake_vstride, s->temp[2], 2, leftv); | |
866 | 900 } |
901 | |
902 /* next line except the first 4 pixels is median predicted */ | |
903 | 903 lefttopy= p->data[0][3]; |
866 | 904 decode_422_bitstream(s, width-4); |
903 | 905 add_median_prediction(p->data[0] + fake_ystride+4, p->data[0]+4, s->temp[0], width-4, &lefty, &lefttopy); |
866 | 906 if(!(s->flags&CODEC_FLAG_GRAY)){ |
903 | 907 lefttopu= p->data[1][1]; |
908 lefttopv= p->data[2][1]; | |
909 add_median_prediction(p->data[1] + fake_ustride+2, p->data[1]+2, s->temp[1], width2-2, &leftu, &lefttopu); | |
910 add_median_prediction(p->data[2] + fake_vstride+2, p->data[2]+2, s->temp[2], width2-2, &leftv, &lefttopv); | |
866 | 911 } |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
912 y++; cy++; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
913 |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
914 for(; y<height; y++,cy++){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
915 uint8_t *ydst, *udst, *vdst; |
866 | 916 |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
917 if(s->bitstream_bpp==12){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
918 while(2*cy > y){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
919 decode_gray_bitstream(s, width); |
903 | 920 ydst= p->data[0] + p->linesize[0]*y; |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
921 add_median_prediction(ydst, ydst - fake_ystride, s->temp[0], width, &lefty, &lefttopy); |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
922 y++; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
923 } |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
924 if(y>=height) break; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
925 } |
871 | 926 draw_slice(s, y); |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
927 |
866 | 928 decode_422_bitstream(s, width); |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
929 |
903 | 930 ydst= p->data[0] + p->linesize[0]*y; |
931 udst= p->data[1] + p->linesize[1]*cy; | |
932 vdst= p->data[2] + p->linesize[2]*cy; | |
866 | 933 |
934 add_median_prediction(ydst, ydst - fake_ystride, s->temp[0], width, &lefty, &lefttopy); | |
935 if(!(s->flags&CODEC_FLAG_GRAY)){ | |
936 add_median_prediction(udst, udst - fake_ustride, s->temp[1], width2, &leftu, &lefttopu); | |
937 add_median_prediction(vdst, vdst - fake_vstride, s->temp[2], width2, &leftv, &lefttopv); | |
938 } | |
939 } | |
871 | 940 |
941 draw_slice(s, height); | |
866 | 942 break; |
943 } | |
944 } | |
945 }else{ | |
946 int y; | |
947 int leftr, leftg, leftb; | |
903 | 948 const int last_line= (height-1)*p->linesize[0]; |
866 | 949 |
950 if(s->bitstream_bpp==32){ | |
2177 | 951 skip_bits(&s->gb, 8); |
952 leftr= p->data[0][last_line+R]= get_bits(&s->gb, 8); | |
953 leftg= p->data[0][last_line+G]= get_bits(&s->gb, 8); | |
954 leftb= p->data[0][last_line+B]= get_bits(&s->gb, 8); | |
866 | 955 }else{ |
2177 | 956 leftr= p->data[0][last_line+R]= get_bits(&s->gb, 8); |
957 leftg= p->data[0][last_line+G]= get_bits(&s->gb, 8); | |
958 leftb= p->data[0][last_line+B]= get_bits(&s->gb, 8); | |
866 | 959 skip_bits(&s->gb, 8); |
960 } | |
961 | |
962 if(s->bgr32){ | |
963 switch(s->predictor){ | |
964 case LEFT: | |
965 case PLANE: | |
966 decode_bgr_bitstream(s, width-1); | |
903 | 967 add_left_prediction_bgr32(p->data[0] + last_line+4, s->temp[0], width-1, &leftr, &leftg, &leftb); |
866 | 968 |
969 for(y=s->height-2; y>=0; y--){ //yes its stored upside down | |
970 decode_bgr_bitstream(s, width); | |
971 | |
903 | 972 add_left_prediction_bgr32(p->data[0] + p->linesize[0]*y, s->temp[0], width, &leftr, &leftg, &leftb); |
866 | 973 if(s->predictor == PLANE){ |
2351 | 974 if((y&s->interlaced)==0 && y<s->height-1-s->interlaced){ |
903 | 975 s->dsp.add_bytes(p->data[0] + p->linesize[0]*y, |
976 p->data[0] + p->linesize[0]*y + fake_ystride, fake_ystride); | |
866 | 977 } |
978 } | |
979 } | |
871 | 980 draw_slice(s, height); // just 1 large slice as this isnt possible in reverse order |
866 | 981 break; |
982 default: | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
983 av_log(avctx, AV_LOG_ERROR, "prediction type not supported!\n"); |
866 | 984 } |
985 }else{ | |
986 | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
987 av_log(avctx, AV_LOG_ERROR, "BGR24 output isnt implemenetd yet\n"); |
866 | 988 return -1; |
989 } | |
990 } | |
991 emms_c(); | |
992 | |
903 | 993 *picture= *p; |
925 | 994 *data_size = sizeof(AVFrame); |
866 | 995 |
1078
c55bffc3b84e
round readed bits up to next 32bits, as orginal huffyuv cant handle less then 32bit blocks
michaelni
parents:
1064
diff
changeset
|
996 return (get_bits_count(&s->gb)+31)/32*4; |
866 | 997 } |
998 | |
2422 | 999 static int common_end(HYuvContext *s){ |
1000 int i; | |
1001 | |
1002 for(i=0; i<3; i++){ | |
1003 av_freep(&s->temp[i]); | |
1004 } | |
1005 return 0; | |
1006 } | |
1007 | |
866 | 1008 static int decode_end(AVCodecContext *avctx) |
1009 { | |
1010 HYuvContext *s = avctx->priv_data; | |
1011 int i; | |
1012 | |
2422 | 1013 common_end(s); |
1014 av_freep(&s->bitstream_buffer); | |
1015 | |
866 | 1016 for(i=0; i<3; i++){ |
903 | 1017 free_vlc(&s->vlc[i]); |
1018 } | |
866 | 1019 |
1020 return 0; | |
1021 } | |
1022 | |
1023 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ | |
1024 HYuvContext *s = avctx->priv_data; | |
925 | 1025 AVFrame *pict = data; |
866 | 1026 const int width= s->width; |
1027 const int width2= s->width>>1; | |
1028 const int height= s->height; | |
1029 const int fake_ystride= s->interlaced ? pict->linesize[0]*2 : pict->linesize[0]; | |
1030 const int fake_ustride= s->interlaced ? pict->linesize[1]*2 : pict->linesize[1]; | |
1031 const int fake_vstride= s->interlaced ? pict->linesize[2]*2 : pict->linesize[2]; | |
925 | 1032 AVFrame * const p= &s->picture; |
2369 | 1033 int i, j, size=0; |
866 | 1034 |
903 | 1035 *p = *pict; |
1006 | 1036 p->pict_type= FF_I_TYPE; |
1037 p->key_frame= 1; | |
866 | 1038 |
2369 | 1039 if(s->context){ |
1040 for(i=0; i<3; i++){ | |
1041 generate_len_table(s->len[i], s->stats[i], 256); | |
1042 if(generate_bits_table(s->bits[i], s->len[i])<0) | |
1043 return -1; | |
1044 size+= store_table(s, s->len[i], &buf[size]); | |
1045 } | |
1046 | |
1047 for(i=0; i<3; i++) | |
1048 for(j=0; j<256; j++) | |
1049 s->stats[i][j] >>= 1; | |
1050 } | |
1051 | |
1052 init_put_bits(&s->pb, buf+size, buf_size-size); | |
1053 | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1054 if(avctx->pix_fmt == PIX_FMT_YUV422P || avctx->pix_fmt == PIX_FMT_YUV420P){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1055 int lefty, leftu, leftv, y, cy; |
866 | 1056 |
903 | 1057 put_bits(&s->pb, 8, leftv= p->data[2][0]); |
1058 put_bits(&s->pb, 8, lefty= p->data[0][1]); | |
1059 put_bits(&s->pb, 8, leftu= p->data[1][0]); | |
1060 put_bits(&s->pb, 8, p->data[0][0]); | |
866 | 1061 |
903 | 1062 lefty= sub_left_prediction(s, s->temp[0], p->data[0]+2, width-2 , lefty); |
1063 leftu= sub_left_prediction(s, s->temp[1], p->data[1]+1, width2-1, leftu); | |
1064 leftv= sub_left_prediction(s, s->temp[2], p->data[2]+1, width2-1, leftv); | |
866 | 1065 |
1066 encode_422_bitstream(s, width-2); | |
1067 | |
1068 if(s->predictor==MEDIAN){ | |
1069 int lefttopy, lefttopu, lefttopv; | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1070 cy=y=1; |
866 | 1071 if(s->interlaced){ |
903 | 1072 lefty= sub_left_prediction(s, s->temp[0], p->data[0]+p->linesize[0], width , lefty); |
1073 leftu= sub_left_prediction(s, s->temp[1], p->data[1]+p->linesize[1], width2, leftu); | |
1074 leftv= sub_left_prediction(s, s->temp[2], p->data[2]+p->linesize[2], width2, leftv); | |
866 | 1075 |
1076 encode_422_bitstream(s, width); | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1077 y++; cy++; |
866 | 1078 } |
1079 | |
903 | 1080 lefty= sub_left_prediction(s, s->temp[0], p->data[0]+fake_ystride, 4, lefty); |
2190 | 1081 leftu= sub_left_prediction(s, s->temp[1], p->data[1]+fake_ustride, 2, leftu); |
1082 leftv= sub_left_prediction(s, s->temp[2], p->data[2]+fake_vstride, 2, leftv); | |
866 | 1083 |
1084 encode_422_bitstream(s, 4); | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1085 |
903 | 1086 lefttopy= p->data[0][3]; |
1087 lefttopu= p->data[1][1]; | |
1088 lefttopv= p->data[2][1]; | |
1527 | 1089 s->dsp.sub_hfyu_median_prediction(s->temp[0], p->data[0]+4, p->data[0] + fake_ystride+4, width-4 , &lefty, &lefttopy); |
1090 s->dsp.sub_hfyu_median_prediction(s->temp[1], p->data[1]+2, p->data[1] + fake_ustride+2, width2-2, &leftu, &lefttopu); | |
1091 s->dsp.sub_hfyu_median_prediction(s->temp[2], p->data[2]+2, p->data[2] + fake_vstride+2, width2-2, &leftv, &lefttopv); | |
866 | 1092 encode_422_bitstream(s, width-4); |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1093 y++; cy++; |
866 | 1094 |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1095 for(; y<height; y++,cy++){ |
866 | 1096 uint8_t *ydst, *udst, *vdst; |
1097 | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1098 if(s->bitstream_bpp==12){ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1099 while(2*cy > y){ |
903 | 1100 ydst= p->data[0] + p->linesize[0]*y; |
1527 | 1101 s->dsp.sub_hfyu_median_prediction(s->temp[0], ydst - fake_ystride, ydst, width , &lefty, &lefttopy); |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1102 encode_gray_bitstream(s, width); |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1103 y++; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1104 } |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1105 if(y>=height) break; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1106 } |
903 | 1107 ydst= p->data[0] + p->linesize[0]*y; |
1108 udst= p->data[1] + p->linesize[1]*cy; | |
1109 vdst= p->data[2] + p->linesize[2]*cy; | |
866 | 1110 |
1527 | 1111 s->dsp.sub_hfyu_median_prediction(s->temp[0], ydst - fake_ystride, ydst, width , &lefty, &lefttopy); |
1112 s->dsp.sub_hfyu_median_prediction(s->temp[1], udst - fake_ustride, udst, width2, &leftu, &lefttopu); | |
1113 s->dsp.sub_hfyu_median_prediction(s->temp[2], vdst - fake_vstride, vdst, width2, &leftv, &lefttopv); | |
866 | 1114 |
1115 encode_422_bitstream(s, width); | |
1116 } | |
1117 }else{ | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1118 for(cy=y=1; y<height; y++,cy++){ |
866 | 1119 uint8_t *ydst, *udst, *vdst; |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1120 |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1121 /* encode a luma only line & y++ */ |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1122 if(s->bitstream_bpp==12){ |
903 | 1123 ydst= p->data[0] + p->linesize[0]*y; |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1124 |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1125 if(s->predictor == PLANE && s->interlaced < y){ |
871 | 1126 s->dsp.diff_bytes(s->temp[1], ydst, ydst - fake_ystride, width); |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1127 |
871 | 1128 lefty= sub_left_prediction(s, s->temp[0], s->temp[1], width , lefty); |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1129 }else{ |
871 | 1130 lefty= sub_left_prediction(s, s->temp[0], ydst, width , lefty); |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1131 } |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1132 encode_gray_bitstream(s, width); |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1133 y++; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1134 if(y>=height) break; |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1135 } |
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1136 |
903 | 1137 ydst= p->data[0] + p->linesize[0]*y; |
1138 udst= p->data[1] + p->linesize[1]*cy; | |
1139 vdst= p->data[2] + p->linesize[2]*cy; | |
866 | 1140 |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1141 if(s->predictor == PLANE && s->interlaced < cy){ |
871 | 1142 s->dsp.diff_bytes(s->temp[1], ydst, ydst - fake_ystride, width); |
1143 s->dsp.diff_bytes(s->temp[2], udst, udst - fake_ustride, width2); | |
1526 | 1144 s->dsp.diff_bytes(s->temp[2] + 1250, vdst, vdst - fake_vstride, width2); |
866 | 1145 |
871 | 1146 lefty= sub_left_prediction(s, s->temp[0], s->temp[1], width , lefty); |
1147 leftu= sub_left_prediction(s, s->temp[1], s->temp[2], width2, leftu); | |
1526 | 1148 leftv= sub_left_prediction(s, s->temp[2], s->temp[2] + 1250, width2, leftv); |
866 | 1149 }else{ |
871 | 1150 lefty= sub_left_prediction(s, s->temp[0], ydst, width , lefty); |
1151 leftu= sub_left_prediction(s, s->temp[1], udst, width2, leftu); | |
1152 leftv= sub_left_prediction(s, s->temp[2], vdst, width2, leftv); | |
866 | 1153 } |
1154 | |
1155 encode_422_bitstream(s, width); | |
1156 } | |
1157 } | |
1158 }else{ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
1159 av_log(avctx, AV_LOG_ERROR, "Format not supported!\n"); |
866 | 1160 } |
1161 emms_c(); | |
1162 | |
2369 | 1163 size+= (put_bits_count(&s->pb)+31)/8; |
1164 size/= 4; | |
866 | 1165 |
1166 if((s->flags&CODEC_FLAG_PASS1) && (s->picture_number&31)==0){ | |
1167 int j; | |
1168 char *p= avctx->stats_out; | |
2423 | 1169 char *end= p + 1024*30; |
866 | 1170 for(i=0; i<3; i++){ |
1171 for(j=0; j<256; j++){ | |
2423 | 1172 snprintf(p, end-p, "%llu ", s->stats[i][j]); |
866 | 1173 p+= strlen(p); |
1174 s->stats[i][j]= 0; | |
1175 } | |
2423 | 1176 snprintf(p, end-p, "\n"); |
866 | 1177 p++; |
1178 } | |
1179 }else{ | |
868
dfe7d66da6f0
YV12 support (warning this is experimental & wont work with offical huffyuv but there is a approx. 20% speed & compression gain)
michaelni
parents:
866
diff
changeset
|
1180 flush_put_bits(&s->pb); |
1273 | 1181 s->dsp.bswap_buf((uint32_t*)buf, (uint32_t*)buf, size); |
2239
506fdbb9d19c
huffyuv writes to AVCodecContext.stats_out only once every 32 frames,
michael
parents:
2238
diff
changeset
|
1182 avctx->stats_out[0] = '\0'; |
866 | 1183 } |
1184 | |
1185 s->picture_number++; | |
903 | 1186 |
866 | 1187 return size*4; |
1188 } | |
1189 | |
1190 static int encode_end(AVCodecContext *avctx) | |
1191 { | |
2422 | 1192 HYuvContext *s = avctx->priv_data; |
1193 | |
1194 common_end(s); | |
866 | 1195 |
1196 av_freep(&avctx->extradata); | |
1197 av_freep(&avctx->stats_out); | |
1198 | |
1199 return 0; | |
1200 } | |
1201 | |
1130 | 1202 static const AVOption huffyuv_options[] = |
1203 { | |
1204 AVOPTION_CODEC_INT("prediction_method", "prediction_method", prediction_method, 0, 2, 0), | |
1205 AVOPTION_END() | |
1206 }; | |
1207 | |
2373 | 1208 static const AVOption ffvhuff_options[] = |
1209 { | |
1210 AVOPTION_CODEC_INT("prediction_method", "prediction_method", prediction_method, 0, 2, 0), | |
1211 AVOPTION_CODEC_INT("context_model", "context_model", context_model, 0, 2, 0), | |
1212 AVOPTION_END() | |
1213 }; | |
1214 | |
1215 | |
866 | 1216 AVCodec huffyuv_decoder = { |
1217 "huffyuv", | |
1218 CODEC_TYPE_VIDEO, | |
1219 CODEC_ID_HUFFYUV, | |
1220 sizeof(HYuvContext), | |
1221 decode_init, | |
1222 NULL, | |
1223 decode_end, | |
1224 decode_frame, | |
871 | 1225 CODEC_CAP_DR1 | CODEC_CAP_DRAW_HORIZ_BAND, |
866 | 1226 NULL |
1227 }; | |
1228 | |
2373 | 1229 AVCodec ffvhuff_decoder = { |
1230 "ffvhuff", | |
1231 CODEC_TYPE_VIDEO, | |
1232 CODEC_ID_FFVHUFF, | |
1233 sizeof(HYuvContext), | |
1234 decode_init, | |
1235 NULL, | |
1236 decode_end, | |
1237 decode_frame, | |
1238 CODEC_CAP_DR1 | CODEC_CAP_DRAW_HORIZ_BAND, | |
1239 NULL | |
1240 }; | |
1241 | |
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
1242 #ifdef CONFIG_ENCODERS |
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
1243 |
866 | 1244 AVCodec huffyuv_encoder = { |
1245 "huffyuv", | |
1246 CODEC_TYPE_VIDEO, | |
1247 CODEC_ID_HUFFYUV, | |
1248 sizeof(HYuvContext), | |
1249 encode_init, | |
1250 encode_frame, | |
1251 encode_end, | |
1130 | 1252 .options = huffyuv_options, |
866 | 1253 }; |
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
1254 |
2373 | 1255 AVCodec ffvhuff_encoder = { |
1256 "ffvhuff", | |
1257 CODEC_TYPE_VIDEO, | |
1258 CODEC_ID_FFVHUFF, | |
1259 sizeof(HYuvContext), | |
1260 encode_init, | |
1261 encode_frame, | |
1262 encode_end, | |
1263 .options = ffvhuff_options, | |
1264 }; | |
1265 | |
1246 | 1266 #endif //CONFIG_ENCODERS |