Mercurial > libavcodec.hg
annotate huffyuv.c @ 2511:366e8a09eb6e libavcodec
buffer overflows
one found by Milan Cutka
one by me
| author | michael |
|---|---|
| date | Thu, 17 Feb 2005 19:00:42 +0000 |
| parents | 236562127b89 |
| children | d3885f927bc7 |
| 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 | |
| 2511 | 351 static void alloc_temp(HYuvContext *s){ |
| 352 int i; | |
| 353 | |
| 354 if(s->bitstream_bpp<24){ | |
| 355 for(i=0; i<3; i++){ | |
| 356 s->temp[i]= av_malloc(s->width + 16); | |
| 357 } | |
| 358 }else{ | |
| 359 s->temp[0]= av_malloc(4*s->width + 16); | |
| 360 } | |
| 361 } | |
| 362 | |
| 2422 | 363 static int common_init(AVCodecContext *avctx){ |
| 866 | 364 HYuvContext *s = avctx->priv_data; |
| 365 | |
| 366 s->avctx= avctx; | |
| 367 s->flags= avctx->flags; | |
| 368 | |
| 1097 | 369 dsputil_init(&s->dsp, avctx); |
| 2422 | 370 |
| 371 s->width= avctx->width; | |
| 372 s->height= avctx->height; | |
| 373 assert(s->width>0 && s->height>0); | |
| 2511 | 374 |
| 2422 | 375 return 0; |
| 376 } | |
| 377 | |
| 378 static int decode_init(AVCodecContext *avctx) | |
| 379 { | |
| 380 HYuvContext *s = avctx->priv_data; | |
| 381 | |
| 382 common_init(avctx); | |
| 2369 | 383 memset(s->vlc, 0, 3*sizeof(VLC)); |
| 866 | 384 |
| 925 | 385 avctx->coded_frame= &s->picture; |
| 2422 | 386 s->interlaced= s->height > 288; |
| 903 | 387 |
| 866 | 388 s->bgr32=1; |
| 389 //if(avctx->extradata) | |
| 390 // printf("extradata:%X, extradata_size:%d\n", *(uint32_t*)avctx->extradata, avctx->extradata_size); | |
| 391 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
|
392 if((avctx->bits_per_sample&7) && avctx->bits_per_sample != 12) |
| 866 | 393 s->version=1; // do such files exist at all? |
| 394 else | |
| 395 s->version=2; | |
| 396 }else | |
| 397 s->version=0; | |
| 398 | |
| 399 if(s->version==2){ | |
| 2374 | 400 int method, interlace; |
| 866 | 401 |
| 402 method= ((uint8_t*)avctx->extradata)[0]; | |
| 403 s->decorrelate= method&64 ? 1 : 0; | |
| 404 s->predictor= method&63; | |
| 405 s->bitstream_bpp= ((uint8_t*)avctx->extradata)[1]; | |
| 406 if(s->bitstream_bpp==0) | |
| 407 s->bitstream_bpp= avctx->bits_per_sample&~7; | |
| 2374 | 408 interlace= (((uint8_t*)avctx->extradata)[2] & 0x30) >> 4; |
| 409 s->interlaced= (interlace==1) ? 1 : (interlace==2) ? 0 : s->interlaced; | |
| 2369 | 410 s->context= ((uint8_t*)avctx->extradata)[2] & 0x40 ? 1 : 0; |
| 866 | 411 |
| 412 if(read_huffman_tables(s, ((uint8_t*)avctx->extradata)+4, avctx->extradata_size) < 0) | |
| 413 return -1; | |
| 414 }else{ | |
| 415 switch(avctx->bits_per_sample&7){ | |
| 416 case 1: | |
| 417 s->predictor= LEFT; | |
| 418 s->decorrelate= 0; | |
| 419 break; | |
| 420 case 2: | |
| 421 s->predictor= LEFT; | |
| 422 s->decorrelate= 1; | |
| 423 break; | |
| 424 case 3: | |
| 425 s->predictor= PLANE; | |
| 426 s->decorrelate= avctx->bits_per_sample >= 24; | |
| 427 break; | |
| 428 case 4: | |
| 429 s->predictor= MEDIAN; | |
| 430 s->decorrelate= 0; | |
| 431 break; | |
| 432 default: | |
| 433 s->predictor= LEFT; //OLD | |
| 434 s->decorrelate= 0; | |
| 435 break; | |
| 436 } | |
| 437 s->bitstream_bpp= avctx->bits_per_sample & ~7; | |
| 2369 | 438 s->context= 0; |
| 866 | 439 |
| 440 if(read_old_huffman_tables(s) < 0) | |
| 441 return -1; | |
| 442 } | |
| 443 | |
| 444 switch(s->bitstream_bpp){ | |
| 445 case 12: | |
| 446 avctx->pix_fmt = PIX_FMT_YUV420P; | |
| 447 break; | |
| 448 case 16: | |
| 449 if(s->yuy2){ | |
| 450 avctx->pix_fmt = PIX_FMT_YUV422; | |
| 451 }else{ | |
| 452 avctx->pix_fmt = PIX_FMT_YUV422P; | |
| 453 } | |
| 454 break; | |
| 455 case 24: | |
| 456 case 32: | |
| 457 if(s->bgr32){ | |
|
990
165064f921ee
changed BGRA32 to RGBA32. XXX: clarify expected behaviour on big endian cpu
bellard
parents:
925
diff
changeset
|
458 avctx->pix_fmt = PIX_FMT_RGBA32; |
| 866 | 459 }else{ |
| 460 avctx->pix_fmt = PIX_FMT_BGR24; | |
| 461 } | |
| 462 break; | |
| 463 default: | |
| 464 assert(0); | |
| 465 } | |
| 466 | |
| 2511 | 467 alloc_temp(s); |
| 468 | |
| 2190 | 469 // 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); |
| 470 | |
| 866 | 471 return 0; |
| 472 } | |
| 473 | |
| 2369 | 474 static int store_table(HYuvContext *s, uint8_t *len, uint8_t *buf){ |
| 866 | 475 int i; |
| 2369 | 476 int index= 0; |
| 866 | 477 |
| 478 for(i=0; i<256;){ | |
| 479 int val= len[i]; | |
|
1529
cb523a2ca00f
fix the case where all vlc codes are 8 bits long (repeat=256)
michael
parents:
1528
diff
changeset
|
480 int repeat=0; |
| 866 | 481 |
|
1529
cb523a2ca00f
fix the case where all vlc codes are 8 bits long (repeat=256)
michael
parents:
1528
diff
changeset
|
482 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
|
483 repeat++; |
| 866 | 484 |
|
1529
cb523a2ca00f
fix the case where all vlc codes are 8 bits long (repeat=256)
michael
parents:
1528
diff
changeset
|
485 assert(val < 32 && val >0 && repeat<256 && repeat>0); |
| 866 | 486 if(repeat>7){ |
| 2369 | 487 buf[index++]= val; |
| 488 buf[index++]= repeat; | |
| 866 | 489 }else{ |
| 2369 | 490 buf[index++]= val | (repeat<<5); |
| 866 | 491 } |
| 492 } | |
| 493 | |
| 2369 | 494 return index; |
| 866 | 495 } |
| 496 | |
| 497 static int encode_init(AVCodecContext *avctx) | |
| 498 { | |
| 499 HYuvContext *s = avctx->priv_data; | |
| 2422 | 500 int i, j; |
| 866 | 501 |
| 2422 | 502 common_init(avctx); |
| 866 | 503 |
| 2422 | 504 avctx->extradata= av_mallocz(1024*30); // 256*3+4 == 772 |
| 505 avctx->stats_out= av_mallocz(1024*30); // 21*256*3(%llu ) + 3(\n) + 1(0) = 16132 | |
| 866 | 506 s->version=2; |
| 507 | |
| 925 | 508 avctx->coded_frame= &s->picture; |
| 903 | 509 |
| 866 | 510 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
|
511 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
|
512 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
|
513 break; |
| 866 | 514 case PIX_FMT_YUV422P: |
| 515 s->bitstream_bpp= 16; | |
| 516 break; | |
| 517 default: | |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
518 av_log(avctx, AV_LOG_ERROR, "format not supported\n"); |
| 866 | 519 return -1; |
| 520 } | |
| 521 avctx->bits_per_sample= s->bitstream_bpp; | |
| 522 s->decorrelate= s->bitstream_bpp >= 24; | |
| 523 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
|
524 s->interlaced= avctx->flags&CODEC_FLAG_INTERLACED_ME ? 1 : 0; |
| 2369 | 525 if(avctx->context_model==1){ |
| 526 s->context= avctx->context_model; | |
| 527 if(s->flags & (CODEC_FLAG_PASS1|CODEC_FLAG_PASS2)){ | |
| 528 av_log(avctx, AV_LOG_ERROR, "context=1 is not compatible with 2 pass huffyuv encoding\n"); | |
| 529 return -1; | |
| 530 } | |
| 531 }else s->context= 0; | |
| 866 | 532 |
| 2373 | 533 if(avctx->codec->id==CODEC_ID_HUFFYUV){ |
| 534 if(avctx->pix_fmt==PIX_FMT_YUV420P){ | |
| 535 av_log(avctx, AV_LOG_ERROR, "Error: YV12 is not supported by huffyuv; use vcodec=ffvhuff or format=422p\n"); | |
| 536 return -1; | |
| 537 } | |
| 538 if(avctx->context_model){ | |
| 539 av_log(avctx, AV_LOG_ERROR, "Error: per-frame huffman tables are not supported by huffyuv; use vcodec=ffvhuff\n"); | |
| 540 return -1; | |
| 541 } | |
| 2422 | 542 if(s->interlaced != ( s->height > 288 )) |
| 2373 | 543 av_log(avctx, AV_LOG_INFO, "using huffyuv 2.2.0 or newer interlacing flag\n"); |
| 544 }else if(avctx->strict_std_compliance>=0){ | |
| 545 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"); | |
| 546 return -1; | |
| 547 } | |
| 548 | |
| 866 | 549 ((uint8_t*)avctx->extradata)[0]= s->predictor; |
| 550 ((uint8_t*)avctx->extradata)[1]= s->bitstream_bpp; | |
| 2374 | 551 ((uint8_t*)avctx->extradata)[2]= s->interlaced ? 0x10 : 0x20; |
| 2369 | 552 if(s->context) |
| 553 ((uint8_t*)avctx->extradata)[2]|= 0x40; | |
| 866 | 554 ((uint8_t*)avctx->extradata)[3]= 0; |
| 555 s->avctx->extradata_size= 4; | |
| 556 | |
| 557 if(avctx->stats_in){ | |
| 558 char *p= avctx->stats_in; | |
| 559 | |
| 560 for(i=0; i<3; i++) | |
| 561 for(j=0; j<256; j++) | |
| 562 s->stats[i][j]= 1; | |
| 563 | |
| 564 for(;;){ | |
| 565 for(i=0; i<3; i++){ | |
| 566 char *next; | |
| 567 | |
| 568 for(j=0; j<256; j++){ | |
| 569 s->stats[i][j]+= strtol(p, &next, 0); | |
| 570 if(next==p) return -1; | |
| 571 p=next; | |
| 572 } | |
| 573 } | |
| 574 if(p[0]==0 || p[1]==0 || p[2]==0) break; | |
| 575 } | |
| 576 }else{ | |
| 577 for(i=0; i<3; i++) | |
| 578 for(j=0; j<256; j++){ | |
| 579 int d= FFMIN(j, 256-j); | |
| 580 | |
| 581 s->stats[i][j]= 100000000/(d+1); | |
| 582 } | |
| 583 } | |
| 584 | |
| 585 for(i=0; i<3; i++){ | |
| 586 generate_len_table(s->len[i], s->stats[i], 256); | |
| 587 | |
| 588 if(generate_bits_table(s->bits[i], s->len[i])<0){ | |
| 589 return -1; | |
| 590 } | |
| 591 | |
| 2369 | 592 s->avctx->extradata_size+= |
| 593 store_table(s, s->len[i], &((uint8_t*)s->avctx->extradata)[s->avctx->extradata_size]); | |
| 866 | 594 } |
| 595 | |
| 2369 | 596 if(s->context){ |
| 597 for(i=0; i<3; i++){ | |
| 2422 | 598 int pels = s->width*s->height / (i?40:10); |
| 2369 | 599 for(j=0; j<256; j++){ |
| 600 int d= FFMIN(j, 256-j); | |
| 601 s->stats[i][j]= pels/(d+1); | |
| 602 } | |
| 603 } | |
| 604 }else{ | |
| 605 for(i=0; i<3; i++) | |
| 606 for(j=0; j<256; j++) | |
| 607 s->stats[i][j]= 0; | |
| 608 } | |
| 866 | 609 |
| 610 // 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
|
611 |
| 2511 | 612 alloc_temp(s); |
| 613 | |
| 866 | 614 s->picture_number=0; |
|
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
615 |
| 866 | 616 return 0; |
| 617 } | |
| 618 | |
| 619 static void decode_422_bitstream(HYuvContext *s, int count){ | |
| 620 int i; | |
|
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
621 |
| 866 | 622 count/=2; |
| 623 | |
| 624 for(i=0; i<count; i++){ | |
| 625 s->temp[0][2*i ]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); | |
| 626 s->temp[1][ i ]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); | |
| 627 s->temp[0][2*i+1]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); | |
| 628 s->temp[2][ i ]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); | |
| 629 } | |
| 630 } | |
| 631 | |
|
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
|
632 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
|
633 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
|
634 |
|
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
|
635 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
|
636 |
|
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
|
637 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
|
638 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
|
639 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
|
640 } |
|
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
|
641 } |
|
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
|
642 |
| 2422 | 643 static int encode_422_bitstream(HYuvContext *s, int count){ |
| 866 | 644 int i; |
| 645 | |
| 2422 | 646 if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < 2*4*count){ |
| 647 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n"); | |
| 648 return -1; | |
| 649 } | |
| 650 | |
| 866 | 651 count/=2; |
| 652 if(s->flags&CODEC_FLAG_PASS1){ | |
| 653 for(i=0; i<count; i++){ | |
| 654 s->stats[0][ s->temp[0][2*i ] ]++; | |
| 655 s->stats[1][ s->temp[1][ i ] ]++; | |
| 656 s->stats[0][ s->temp[0][2*i+1] ]++; | |
| 657 s->stats[2][ s->temp[2][ i ] ]++; | |
| 658 } | |
| 2501 | 659 } |
| 660 if(s->avctx->flags2&CODEC_FLAG2_NO_OUTPUT) | |
| 661 return 0; | |
| 662 if(s->context){ | |
| 2369 | 663 for(i=0; i<count; i++){ |
| 664 s->stats[0][ s->temp[0][2*i ] ]++; | |
| 665 put_bits(&s->pb, s->len[0][ s->temp[0][2*i ] ], s->bits[0][ s->temp[0][2*i ] ]); | |
| 666 s->stats[1][ s->temp[1][ i ] ]++; | |
| 667 put_bits(&s->pb, s->len[1][ s->temp[1][ i ] ], s->bits[1][ s->temp[1][ i ] ]); | |
| 668 s->stats[0][ s->temp[0][2*i+1] ]++; | |
| 669 put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]); | |
| 670 s->stats[2][ s->temp[2][ i ] ]++; | |
| 671 put_bits(&s->pb, s->len[2][ s->temp[2][ i ] ], s->bits[2][ s->temp[2][ i ] ]); | |
| 672 } | |
| 866 | 673 }else{ |
| 674 for(i=0; i<count; i++){ | |
| 675 put_bits(&s->pb, s->len[0][ s->temp[0][2*i ] ], s->bits[0][ s->temp[0][2*i ] ]); | |
| 676 put_bits(&s->pb, s->len[1][ s->temp[1][ i ] ], s->bits[1][ s->temp[1][ i ] ]); | |
| 677 put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]); | |
| 678 put_bits(&s->pb, s->len[2][ s->temp[2][ i ] ], s->bits[2][ s->temp[2][ i ] ]); | |
| 679 } | |
| 680 } | |
| 2422 | 681 return 0; |
| 866 | 682 } |
| 683 | |
| 2422 | 684 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
|
685 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
|
686 |
| 2422 | 687 if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < 4*count){ |
| 688 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n"); | |
| 689 return -1; | |
| 690 } | |
| 691 | |
|
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
|
692 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
|
693 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
|
694 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
|
695 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
|
696 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
|
697 } |
| 2501 | 698 } |
| 699 if(s->avctx->flags2&CODEC_FLAG2_NO_OUTPUT) | |
| 700 return 0; | |
| 701 | |
| 702 if(s->context){ | |
| 2369 | 703 for(i=0; i<count; i++){ |
| 704 s->stats[0][ s->temp[0][2*i ] ]++; | |
| 705 put_bits(&s->pb, s->len[0][ s->temp[0][2*i ] ], s->bits[0][ s->temp[0][2*i ] ]); | |
| 706 s->stats[0][ s->temp[0][2*i+1] ]++; | |
| 707 put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]); | |
| 708 } | |
|
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
|
709 }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
|
710 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
|
711 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
|
712 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
|
713 } |
|
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
|
714 } |
| 2422 | 715 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
|
716 } |
|
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
|
717 |
| 866 | 718 static void decode_bgr_bitstream(HYuvContext *s, int count){ |
| 719 int i; | |
|
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
720 |
| 866 | 721 if(s->decorrelate){ |
| 722 if(s->bitstream_bpp==24){ | |
| 723 for(i=0; i<count; i++){ | |
| 2177 | 724 s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); |
| 725 s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3) + s->temp[0][4*i+G]; | |
| 726 s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3) + s->temp[0][4*i+G]; | |
| 866 | 727 } |
| 728 }else{ | |
| 729 for(i=0; i<count; i++){ | |
| 2176 | 730 s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); |
| 731 s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3) + s->temp[0][4*i+G]; | |
| 732 s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3) + s->temp[0][4*i+G]; | |
| 866 | 733 get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); //?! |
| 734 } | |
| 735 } | |
| 736 }else{ | |
| 737 if(s->bitstream_bpp==24){ | |
| 738 for(i=0; i<count; i++){ | |
| 2177 | 739 s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); |
| 740 s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); | |
| 741 s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); | |
| 866 | 742 } |
| 743 }else{ | |
| 744 for(i=0; i<count; i++){ | |
| 2176 | 745 s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); |
| 746 s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); | |
| 747 s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); | |
| 866 | 748 get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); //?! |
| 749 } | |
| 750 } | |
| 751 } | |
| 752 } | |
| 753 | |
| 871 | 754 static void draw_slice(HYuvContext *s, int y){ |
| 755 int h, cy; | |
| 1368 | 756 int offset[4]; |
| 871 | 757 |
| 758 if(s->avctx->draw_horiz_band==NULL) | |
| 759 return; | |
| 760 | |
| 761 h= y - s->last_slice_end; | |
| 762 y -= h; | |
| 763 | |
| 764 if(s->bitstream_bpp==12){ | |
| 765 cy= y>>1; | |
| 766 }else{ | |
| 767 cy= y; | |
| 768 } | |
| 1368 | 769 |
| 770 offset[0] = s->picture.linesize[0]*y; | |
| 771 offset[1] = s->picture.linesize[1]*cy; | |
| 772 offset[2] = s->picture.linesize[2]*cy; | |
| 773 offset[3] = 0; | |
| 871 | 774 emms_c(); |
| 775 | |
| 1370 | 776 s->avctx->draw_horiz_band(s->avctx, &s->picture, offset, y, 3, h); |
| 871 | 777 |
| 778 s->last_slice_end= y + h; | |
| 779 } | |
| 780 | |
| 866 | 781 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size){ |
| 782 HYuvContext *s = avctx->priv_data; | |
| 783 const int width= s->width; | |
| 784 const int width2= s->width>>1; | |
| 785 const int height= s->height; | |
| 870 | 786 int fake_ystride, fake_ustride, fake_vstride; |
| 925 | 787 AVFrame * const p= &s->picture; |
| 2369 | 788 int table_size= 0; |
| 866 | 789 |
| 925 | 790 AVFrame *picture = data; |
| 866 | 791 |
| 2422 | 792 s->bitstream_buffer= av_fast_realloc(s->bitstream_buffer, &s->bitstream_buffer_size, buf_size + FF_INPUT_BUFFER_PADDING_SIZE); |
| 866 | 793 |
| 1273 | 794 s->dsp.bswap_buf((uint32_t*)s->bitstream_buffer, (uint32_t*)buf, buf_size/4); |
| 866 | 795 |
| 1228 | 796 if(p->data[0]) |
| 797 avctx->release_buffer(avctx, p); | |
| 798 | |
| 903 | 799 p->reference= 0; |
| 800 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
|
801 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
| 903 | 802 return -1; |
| 803 } | |
| 2369 | 804 |
| 805 if(s->context){ | |
| 806 table_size = read_huffman_tables(s, s->bitstream_buffer, buf_size); | |
| 807 if(table_size < 0) | |
| 808 return -1; | |
| 809 } | |
| 810 | |
| 811 init_get_bits(&s->gb, s->bitstream_buffer+table_size, (buf_size-table_size)*8); | |
| 870 | 812 |
| 903 | 813 fake_ystride= s->interlaced ? p->linesize[0]*2 : p->linesize[0]; |
| 814 fake_ustride= s->interlaced ? p->linesize[1]*2 : p->linesize[1]; | |
| 815 fake_vstride= s->interlaced ? p->linesize[2]*2 : p->linesize[2]; | |
| 871 | 816 |
| 817 s->last_slice_end= 0; | |
| 870 | 818 |
| 866 | 819 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
|
820 int y, cy; |
| 866 | 821 int lefty, leftu, leftv; |
| 822 int lefttopy, lefttopu, lefttopv; | |
| 823 | |
| 824 if(s->yuy2){ | |
| 903 | 825 p->data[0][3]= get_bits(&s->gb, 8); |
| 826 p->data[0][2]= get_bits(&s->gb, 8); | |
| 827 p->data[0][1]= get_bits(&s->gb, 8); | |
| 828 p->data[0][0]= get_bits(&s->gb, 8); | |
| 866 | 829 |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
830 av_log(avctx, AV_LOG_ERROR, "YUY2 output isnt implemenetd yet\n"); |
| 866 | 831 return -1; |
| 832 }else{ | |
| 833 | |
| 903 | 834 leftv= p->data[2][0]= get_bits(&s->gb, 8); |
| 835 lefty= p->data[0][1]= get_bits(&s->gb, 8); | |
| 836 leftu= p->data[1][0]= get_bits(&s->gb, 8); | |
| 837 p->data[0][0]= get_bits(&s->gb, 8); | |
| 866 | 838 |
| 839 switch(s->predictor){ | |
| 840 case LEFT: | |
| 841 case PLANE: | |
| 842 decode_422_bitstream(s, width-2); | |
| 903 | 843 lefty= add_left_prediction(p->data[0] + 2, s->temp[0], width-2, lefty); |
| 866 | 844 if(!(s->flags&CODEC_FLAG_GRAY)){ |
| 903 | 845 leftu= add_left_prediction(p->data[1] + 1, s->temp[1], width2-1, leftu); |
| 846 leftv= add_left_prediction(p->data[2] + 1, s->temp[2], width2-1, leftv); | |
| 866 | 847 } |
| 848 | |
|
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
|
849 for(cy=y=1; y<s->height; y++,cy++){ |
| 866 | 850 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
|
851 |
|
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 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
|
853 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
|
854 |
| 903 | 855 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
|
856 |
|
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
|
857 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
|
858 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
|
859 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
|
860 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
|
861 } |
|
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
|
862 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
|
863 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
|
864 } |
| 866 | 865 |
| 871 | 866 draw_slice(s, y); |
| 867 | |
| 903 | 868 ydst= p->data[0] + p->linesize[0]*y; |
| 869 udst= p->data[1] + p->linesize[1]*cy; | |
| 870 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
|
871 |
|
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
|
872 decode_422_bitstream(s, width); |
| 866 | 873 lefty= add_left_prediction(ydst, s->temp[0], width, lefty); |
| 874 if(!(s->flags&CODEC_FLAG_GRAY)){ | |
| 875 leftu= add_left_prediction(udst, s->temp[1], width2, leftu); | |
| 876 leftv= add_left_prediction(vdst, s->temp[2], width2, leftv); | |
| 877 } | |
| 878 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
|
879 if(cy>s->interlaced){ |
| 866 | 880 s->dsp.add_bytes(ydst, ydst - fake_ystride, width); |
| 881 if(!(s->flags&CODEC_FLAG_GRAY)){ | |
| 882 s->dsp.add_bytes(udst, udst - fake_ustride, width2); | |
| 883 s->dsp.add_bytes(vdst, vdst - fake_vstride, width2); | |
| 884 } | |
| 885 } | |
| 886 } | |
| 887 } | |
| 871 | 888 draw_slice(s, height); |
| 889 | |
| 866 | 890 break; |
| 891 case MEDIAN: | |
| 892 /* first line except first 2 pixels is left predicted */ | |
| 893 decode_422_bitstream(s, width-2); | |
| 903 | 894 lefty= add_left_prediction(p->data[0] + 2, s->temp[0], width-2, lefty); |
| 866 | 895 if(!(s->flags&CODEC_FLAG_GRAY)){ |
| 903 | 896 leftu= add_left_prediction(p->data[1] + 1, s->temp[1], width2-1, leftu); |
| 897 leftv= add_left_prediction(p->data[2] + 1, s->temp[2], width2-1, leftv); | |
| 866 | 898 } |
| 899 | |
|
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
|
900 cy=y=1; |
| 866 | 901 |
| 902 /* second line is left predicted for interlaced case */ | |
| 903 if(s->interlaced){ | |
| 904 decode_422_bitstream(s, width); | |
| 903 | 905 lefty= add_left_prediction(p->data[0] + p->linesize[0], s->temp[0], width, lefty); |
| 866 | 906 if(!(s->flags&CODEC_FLAG_GRAY)){ |
| 903 | 907 leftu= add_left_prediction(p->data[1] + p->linesize[2], s->temp[1], width2, leftu); |
| 908 leftv= add_left_prediction(p->data[2] + p->linesize[1], s->temp[2], width2, leftv); | |
| 866 | 909 } |
|
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
|
910 y++; cy++; |
| 866 | 911 } |
| 912 | |
| 913 /* next 4 pixels are left predicted too */ | |
| 914 decode_422_bitstream(s, 4); | |
| 903 | 915 lefty= add_left_prediction(p->data[0] + fake_ystride, s->temp[0], 4, lefty); |
| 866 | 916 if(!(s->flags&CODEC_FLAG_GRAY)){ |
| 903 | 917 leftu= add_left_prediction(p->data[1] + fake_ustride, s->temp[1], 2, leftu); |
| 918 leftv= add_left_prediction(p->data[2] + fake_vstride, s->temp[2], 2, leftv); | |
| 866 | 919 } |
| 920 | |
| 921 /* next line except the first 4 pixels is median predicted */ | |
| 903 | 922 lefttopy= p->data[0][3]; |
| 866 | 923 decode_422_bitstream(s, width-4); |
| 903 | 924 add_median_prediction(p->data[0] + fake_ystride+4, p->data[0]+4, s->temp[0], width-4, &lefty, &lefttopy); |
| 866 | 925 if(!(s->flags&CODEC_FLAG_GRAY)){ |
| 903 | 926 lefttopu= p->data[1][1]; |
| 927 lefttopv= p->data[2][1]; | |
| 928 add_median_prediction(p->data[1] + fake_ustride+2, p->data[1]+2, s->temp[1], width2-2, &leftu, &lefttopu); | |
| 929 add_median_prediction(p->data[2] + fake_vstride+2, p->data[2]+2, s->temp[2], width2-2, &leftv, &lefttopv); | |
| 866 | 930 } |
|
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
|
931 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
|
932 |
|
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
|
933 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
|
934 uint8_t *ydst, *udst, *vdst; |
| 866 | 935 |
|
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
|
936 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
|
937 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
|
938 decode_gray_bitstream(s, width); |
| 903 | 939 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
|
940 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
|
941 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
|
942 } |
|
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
|
943 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
|
944 } |
| 871 | 945 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
|
946 |
| 866 | 947 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
|
948 |
| 903 | 949 ydst= p->data[0] + p->linesize[0]*y; |
| 950 udst= p->data[1] + p->linesize[1]*cy; | |
| 951 vdst= p->data[2] + p->linesize[2]*cy; | |
| 866 | 952 |
| 953 add_median_prediction(ydst, ydst - fake_ystride, s->temp[0], width, &lefty, &lefttopy); | |
| 954 if(!(s->flags&CODEC_FLAG_GRAY)){ | |
| 955 add_median_prediction(udst, udst - fake_ustride, s->temp[1], width2, &leftu, &lefttopu); | |
| 956 add_median_prediction(vdst, vdst - fake_vstride, s->temp[2], width2, &leftv, &lefttopv); | |
| 957 } | |
| 958 } | |
| 871 | 959 |
| 960 draw_slice(s, height); | |
| 866 | 961 break; |
| 962 } | |
| 963 } | |
| 964 }else{ | |
| 965 int y; | |
| 966 int leftr, leftg, leftb; | |
| 903 | 967 const int last_line= (height-1)*p->linesize[0]; |
| 866 | 968 |
| 969 if(s->bitstream_bpp==32){ | |
| 2177 | 970 skip_bits(&s->gb, 8); |
| 971 leftr= p->data[0][last_line+R]= get_bits(&s->gb, 8); | |
| 972 leftg= p->data[0][last_line+G]= get_bits(&s->gb, 8); | |
| 973 leftb= p->data[0][last_line+B]= get_bits(&s->gb, 8); | |
| 866 | 974 }else{ |
| 2177 | 975 leftr= p->data[0][last_line+R]= get_bits(&s->gb, 8); |
| 976 leftg= p->data[0][last_line+G]= get_bits(&s->gb, 8); | |
| 977 leftb= p->data[0][last_line+B]= get_bits(&s->gb, 8); | |
| 866 | 978 skip_bits(&s->gb, 8); |
| 979 } | |
| 980 | |
| 981 if(s->bgr32){ | |
| 982 switch(s->predictor){ | |
| 983 case LEFT: | |
| 984 case PLANE: | |
| 985 decode_bgr_bitstream(s, width-1); | |
| 903 | 986 add_left_prediction_bgr32(p->data[0] + last_line+4, s->temp[0], width-1, &leftr, &leftg, &leftb); |
| 866 | 987 |
| 988 for(y=s->height-2; y>=0; y--){ //yes its stored upside down | |
| 989 decode_bgr_bitstream(s, width); | |
| 990 | |
| 903 | 991 add_left_prediction_bgr32(p->data[0] + p->linesize[0]*y, s->temp[0], width, &leftr, &leftg, &leftb); |
| 866 | 992 if(s->predictor == PLANE){ |
| 2351 | 993 if((y&s->interlaced)==0 && y<s->height-1-s->interlaced){ |
| 903 | 994 s->dsp.add_bytes(p->data[0] + p->linesize[0]*y, |
| 995 p->data[0] + p->linesize[0]*y + fake_ystride, fake_ystride); | |
| 866 | 996 } |
| 997 } | |
| 998 } | |
| 871 | 999 draw_slice(s, height); // just 1 large slice as this isnt possible in reverse order |
| 866 | 1000 break; |
| 1001 default: | |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
1002 av_log(avctx, AV_LOG_ERROR, "prediction type not supported!\n"); |
| 866 | 1003 } |
| 1004 }else{ | |
| 1005 | |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
1006 av_log(avctx, AV_LOG_ERROR, "BGR24 output isnt implemenetd yet\n"); |
| 866 | 1007 return -1; |
| 1008 } | |
| 1009 } | |
| 1010 emms_c(); | |
| 1011 | |
| 903 | 1012 *picture= *p; |
| 925 | 1013 *data_size = sizeof(AVFrame); |
| 866 | 1014 |
|
1078
c55bffc3b84e
round readed bits up to next 32bits, as orginal huffyuv cant handle less then 32bit blocks
michaelni
parents:
1064
diff
changeset
|
1015 return (get_bits_count(&s->gb)+31)/32*4; |
| 866 | 1016 } |
| 1017 | |
| 2422 | 1018 static int common_end(HYuvContext *s){ |
| 1019 int i; | |
| 1020 | |
| 1021 for(i=0; i<3; i++){ | |
| 1022 av_freep(&s->temp[i]); | |
| 1023 } | |
| 1024 return 0; | |
| 1025 } | |
| 1026 | |
| 866 | 1027 static int decode_end(AVCodecContext *avctx) |
| 1028 { | |
| 1029 HYuvContext *s = avctx->priv_data; | |
| 1030 int i; | |
| 1031 | |
| 2422 | 1032 common_end(s); |
| 1033 av_freep(&s->bitstream_buffer); | |
| 1034 | |
| 866 | 1035 for(i=0; i<3; i++){ |
| 903 | 1036 free_vlc(&s->vlc[i]); |
| 1037 } | |
| 866 | 1038 |
| 1039 return 0; | |
| 1040 } | |
| 1041 | |
| 1042 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ | |
| 1043 HYuvContext *s = avctx->priv_data; | |
| 925 | 1044 AVFrame *pict = data; |
| 866 | 1045 const int width= s->width; |
| 1046 const int width2= s->width>>1; | |
| 1047 const int height= s->height; | |
| 1048 const int fake_ystride= s->interlaced ? pict->linesize[0]*2 : pict->linesize[0]; | |
| 1049 const int fake_ustride= s->interlaced ? pict->linesize[1]*2 : pict->linesize[1]; | |
| 1050 const int fake_vstride= s->interlaced ? pict->linesize[2]*2 : pict->linesize[2]; | |
| 925 | 1051 AVFrame * const p= &s->picture; |
| 2369 | 1052 int i, j, size=0; |
| 866 | 1053 |
| 903 | 1054 *p = *pict; |
| 1006 | 1055 p->pict_type= FF_I_TYPE; |
| 1056 p->key_frame= 1; | |
| 866 | 1057 |
| 2369 | 1058 if(s->context){ |
| 1059 for(i=0; i<3; i++){ | |
| 1060 generate_len_table(s->len[i], s->stats[i], 256); | |
| 1061 if(generate_bits_table(s->bits[i], s->len[i])<0) | |
| 1062 return -1; | |
| 1063 size+= store_table(s, s->len[i], &buf[size]); | |
| 1064 } | |
| 1065 | |
| 1066 for(i=0; i<3; i++) | |
| 1067 for(j=0; j<256; j++) | |
| 1068 s->stats[i][j] >>= 1; | |
| 1069 } | |
| 1070 | |
| 1071 init_put_bits(&s->pb, buf+size, buf_size-size); | |
| 1072 | |
|
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
|
1073 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
|
1074 int lefty, leftu, leftv, y, cy; |
| 866 | 1075 |
| 903 | 1076 put_bits(&s->pb, 8, leftv= p->data[2][0]); |
| 1077 put_bits(&s->pb, 8, lefty= p->data[0][1]); | |
| 1078 put_bits(&s->pb, 8, leftu= p->data[1][0]); | |
| 1079 put_bits(&s->pb, 8, p->data[0][0]); | |
| 866 | 1080 |
| 903 | 1081 lefty= sub_left_prediction(s, s->temp[0], p->data[0]+2, width-2 , lefty); |
| 1082 leftu= sub_left_prediction(s, s->temp[1], p->data[1]+1, width2-1, leftu); | |
| 1083 leftv= sub_left_prediction(s, s->temp[2], p->data[2]+1, width2-1, leftv); | |
| 866 | 1084 |
| 1085 encode_422_bitstream(s, width-2); | |
| 1086 | |
| 1087 if(s->predictor==MEDIAN){ | |
| 1088 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
|
1089 cy=y=1; |
| 866 | 1090 if(s->interlaced){ |
| 903 | 1091 lefty= sub_left_prediction(s, s->temp[0], p->data[0]+p->linesize[0], width , lefty); |
| 1092 leftu= sub_left_prediction(s, s->temp[1], p->data[1]+p->linesize[1], width2, leftu); | |
| 1093 leftv= sub_left_prediction(s, s->temp[2], p->data[2]+p->linesize[2], width2, leftv); | |
| 866 | 1094 |
| 1095 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
|
1096 y++; cy++; |
| 866 | 1097 } |
| 1098 | |
| 903 | 1099 lefty= sub_left_prediction(s, s->temp[0], p->data[0]+fake_ystride, 4, lefty); |
| 2190 | 1100 leftu= sub_left_prediction(s, s->temp[1], p->data[1]+fake_ustride, 2, leftu); |
| 1101 leftv= sub_left_prediction(s, s->temp[2], p->data[2]+fake_vstride, 2, leftv); | |
| 866 | 1102 |
| 1103 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
|
1104 |
| 903 | 1105 lefttopy= p->data[0][3]; |
| 1106 lefttopu= p->data[1][1]; | |
| 1107 lefttopv= p->data[2][1]; | |
| 1527 | 1108 s->dsp.sub_hfyu_median_prediction(s->temp[0], p->data[0]+4, p->data[0] + fake_ystride+4, width-4 , &lefty, &lefttopy); |
| 1109 s->dsp.sub_hfyu_median_prediction(s->temp[1], p->data[1]+2, p->data[1] + fake_ustride+2, width2-2, &leftu, &lefttopu); | |
| 1110 s->dsp.sub_hfyu_median_prediction(s->temp[2], p->data[2]+2, p->data[2] + fake_vstride+2, width2-2, &leftv, &lefttopv); | |
| 866 | 1111 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
|
1112 y++; cy++; |
| 866 | 1113 |
|
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
|
1114 for(; y<height; y++,cy++){ |
| 866 | 1115 uint8_t *ydst, *udst, *vdst; |
| 1116 | |
|
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
|
1117 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
|
1118 while(2*cy > y){ |
| 903 | 1119 ydst= p->data[0] + p->linesize[0]*y; |
| 1527 | 1120 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
|
1121 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
|
1122 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
|
1123 } |
|
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 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
|
1125 } |
| 903 | 1126 ydst= p->data[0] + p->linesize[0]*y; |
| 1127 udst= p->data[1] + p->linesize[1]*cy; | |
| 1128 vdst= p->data[2] + p->linesize[2]*cy; | |
| 866 | 1129 |
| 1527 | 1130 s->dsp.sub_hfyu_median_prediction(s->temp[0], ydst - fake_ystride, ydst, width , &lefty, &lefttopy); |
| 1131 s->dsp.sub_hfyu_median_prediction(s->temp[1], udst - fake_ustride, udst, width2, &leftu, &lefttopu); | |
| 1132 s->dsp.sub_hfyu_median_prediction(s->temp[2], vdst - fake_vstride, vdst, width2, &leftv, &lefttopv); | |
| 866 | 1133 |
| 1134 encode_422_bitstream(s, width); | |
| 1135 } | |
| 1136 }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
|
1137 for(cy=y=1; y<height; y++,cy++){ |
| 866 | 1138 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
|
1139 |
|
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
|
1140 /* 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
|
1141 if(s->bitstream_bpp==12){ |
| 903 | 1142 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
|
1143 |
|
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
|
1144 if(s->predictor == PLANE && s->interlaced < y){ |
| 871 | 1145 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
|
1146 |
| 871 | 1147 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
|
1148 }else{ |
| 871 | 1149 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
|
1150 } |
|
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
|
1151 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
|
1152 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
|
1153 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
|
1154 } |
|
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
|
1155 |
| 903 | 1156 ydst= p->data[0] + p->linesize[0]*y; |
| 1157 udst= p->data[1] + p->linesize[1]*cy; | |
| 1158 vdst= p->data[2] + p->linesize[2]*cy; | |
| 866 | 1159 |
|
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
|
1160 if(s->predictor == PLANE && s->interlaced < cy){ |
| 871 | 1161 s->dsp.diff_bytes(s->temp[1], ydst, ydst - fake_ystride, width); |
| 1162 s->dsp.diff_bytes(s->temp[2], udst, udst - fake_ustride, width2); | |
| 2511 | 1163 s->dsp.diff_bytes(s->temp[2] + width2, vdst, vdst - fake_vstride, width2); |
| 866 | 1164 |
| 871 | 1165 lefty= sub_left_prediction(s, s->temp[0], s->temp[1], width , lefty); |
| 1166 leftu= sub_left_prediction(s, s->temp[1], s->temp[2], width2, leftu); | |
| 2511 | 1167 leftv= sub_left_prediction(s, s->temp[2], s->temp[2] + width2, width2, leftv); |
| 866 | 1168 }else{ |
| 871 | 1169 lefty= sub_left_prediction(s, s->temp[0], ydst, width , lefty); |
| 1170 leftu= sub_left_prediction(s, s->temp[1], udst, width2, leftu); | |
| 1171 leftv= sub_left_prediction(s, s->temp[2], vdst, width2, leftv); | |
| 866 | 1172 } |
| 1173 | |
| 1174 encode_422_bitstream(s, width); | |
| 1175 } | |
| 1176 } | |
| 1177 }else{ | |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1529
diff
changeset
|
1178 av_log(avctx, AV_LOG_ERROR, "Format not supported!\n"); |
| 866 | 1179 } |
| 1180 emms_c(); | |
| 1181 | |
| 2369 | 1182 size+= (put_bits_count(&s->pb)+31)/8; |
| 1183 size/= 4; | |
| 866 | 1184 |
| 1185 if((s->flags&CODEC_FLAG_PASS1) && (s->picture_number&31)==0){ | |
| 1186 int j; | |
| 1187 char *p= avctx->stats_out; | |
| 2423 | 1188 char *end= p + 1024*30; |
| 866 | 1189 for(i=0; i<3; i++){ |
| 1190 for(j=0; j<256; j++){ | |
| 2423 | 1191 snprintf(p, end-p, "%llu ", s->stats[i][j]); |
| 866 | 1192 p+= strlen(p); |
| 1193 s->stats[i][j]= 0; | |
| 1194 } | |
| 2423 | 1195 snprintf(p, end-p, "\n"); |
| 866 | 1196 p++; |
| 1197 } | |
| 2501 | 1198 } |
| 1199 if(!(s->avctx->flags2 & CODEC_FLAG2_NO_OUTPUT)){ | |
|
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
|
1200 flush_put_bits(&s->pb); |
| 1273 | 1201 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
|
1202 avctx->stats_out[0] = '\0'; |
| 866 | 1203 } |
| 1204 | |
| 1205 s->picture_number++; | |
| 903 | 1206 |
| 866 | 1207 return size*4; |
| 1208 } | |
| 1209 | |
| 1210 static int encode_end(AVCodecContext *avctx) | |
| 1211 { | |
| 2422 | 1212 HYuvContext *s = avctx->priv_data; |
| 1213 | |
| 1214 common_end(s); | |
| 866 | 1215 |
| 1216 av_freep(&avctx->extradata); | |
| 1217 av_freep(&avctx->stats_out); | |
| 1218 | |
| 1219 return 0; | |
| 1220 } | |
| 1221 | |
| 1130 | 1222 static const AVOption huffyuv_options[] = |
| 1223 { | |
| 1224 AVOPTION_CODEC_INT("prediction_method", "prediction_method", prediction_method, 0, 2, 0), | |
| 1225 AVOPTION_END() | |
| 1226 }; | |
| 1227 | |
| 2373 | 1228 static const AVOption ffvhuff_options[] = |
| 1229 { | |
| 1230 AVOPTION_CODEC_INT("prediction_method", "prediction_method", prediction_method, 0, 2, 0), | |
| 1231 AVOPTION_CODEC_INT("context_model", "context_model", context_model, 0, 2, 0), | |
| 1232 AVOPTION_END() | |
| 1233 }; | |
| 1234 | |
| 1235 | |
| 866 | 1236 AVCodec huffyuv_decoder = { |
| 1237 "huffyuv", | |
| 1238 CODEC_TYPE_VIDEO, | |
| 1239 CODEC_ID_HUFFYUV, | |
| 1240 sizeof(HYuvContext), | |
| 1241 decode_init, | |
| 1242 NULL, | |
| 1243 decode_end, | |
| 1244 decode_frame, | |
| 871 | 1245 CODEC_CAP_DR1 | CODEC_CAP_DRAW_HORIZ_BAND, |
| 866 | 1246 NULL |
| 1247 }; | |
| 1248 | |
| 2373 | 1249 AVCodec ffvhuff_decoder = { |
| 1250 "ffvhuff", | |
| 1251 CODEC_TYPE_VIDEO, | |
| 1252 CODEC_ID_FFVHUFF, | |
| 1253 sizeof(HYuvContext), | |
| 1254 decode_init, | |
| 1255 NULL, | |
| 1256 decode_end, | |
| 1257 decode_frame, | |
| 1258 CODEC_CAP_DR1 | CODEC_CAP_DRAW_HORIZ_BAND, | |
| 1259 NULL | |
| 1260 }; | |
| 1261 | |
|
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
1262 #ifdef CONFIG_ENCODERS |
|
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
1263 |
| 866 | 1264 AVCodec huffyuv_encoder = { |
| 1265 "huffyuv", | |
| 1266 CODEC_TYPE_VIDEO, | |
| 1267 CODEC_ID_HUFFYUV, | |
| 1268 sizeof(HYuvContext), | |
| 1269 encode_init, | |
| 1270 encode_frame, | |
| 1271 encode_end, | |
| 1130 | 1272 .options = huffyuv_options, |
| 866 | 1273 }; |
|
1232
e88d3b1fb2a1
more #ifdef CONFIG_ENCODERS by (Wolfgang Hesseler <qv at multimediaware dot com>)
michaelni
parents:
1228
diff
changeset
|
1274 |
| 2373 | 1275 AVCodec ffvhuff_encoder = { |
| 1276 "ffvhuff", | |
| 1277 CODEC_TYPE_VIDEO, | |
| 1278 CODEC_ID_FFVHUFF, | |
| 1279 sizeof(HYuvContext), | |
| 1280 encode_init, | |
| 1281 encode_frame, | |
| 1282 encode_end, | |
| 1283 .options = ffvhuff_options, | |
| 1284 }; | |
| 1285 | |
| 1246 | 1286 #endif //CONFIG_ENCODERS |
