comparison h263data.h @ 1639:3e2b774edce4 libavcodec

rv20 decoder
author michael
date Sun, 30 Nov 2003 14:35:35 +0000
parents e389d57db630
children 835cf346975e
comparison
equal deleted inserted replaced
1638:e389d57db630 1639:3e2b774edce4
206 { 352, 288 }, 206 { 352, 288 },
207 { 704, 576 }, 207 { 704, 576 },
208 { 1408, 1152 }, 208 { 1408, 1152 },
209 }; 209 };
210 210
211 static uint8_t h263_aic_dc_scale_table[32]={ 211 uint8_t ff_aic_dc_scale_table[32]={
212 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 212 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
213 0, 2, 4, 6, 8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62 213 0, 2, 4, 6, 8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62
214 }; 214 };
215 215
216 static const uint8_t modified_quant_tab[2][32]={
217 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
218 {
219 0, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9,10,11,12,13,14,15,16,17,18,18,19,20,21,22,23,24,25,26,27,28
220 },{
221 0, 2, 3, 4, 5, 6, 7, 8, 9,10,11,13,14,15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,31,31,26
222 }
223 };
224
225 static const uint8_t chroma_qscale_tab[32]={
226 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
227 0, 1, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9,10,10,11,11,12,12,12,13,13,13,14,14,14,14,14,15,15,15,15,15
228 };
229
230 const uint16_t ff_mba_max[6]={
231 47, 98, 395,1583,6335,9215
232 };
233
234 const uint8_t ff_mba_length[6]={
235 6, 7, 9, 11, 13, 14
236 };