comparison h263data.h @ 1644:835cf346975e libavcodec

h263 loop filter fixed h263 modified quantization CODEC_FLAG_OBMC
author michael
date Mon, 01 Dec 2003 15:23:14 +0000
parents 3e2b774edce4
children c92147a61d97
comparison
equal deleted inserted replaced
1643:9bb07bd315d9 1644:835cf346975e
220 },{ 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 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 } 222 }
223 }; 223 };
224 224
225 static const uint8_t chroma_qscale_tab[32]={ 225 const uint8_t ff_h263_chroma_qscale_table[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 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 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 }; 228 };
229 229
230 const uint16_t ff_mba_max[6]={ 230 const uint16_t ff_mba_max[6]={
232 }; 232 };
233 233
234 const uint8_t ff_mba_length[6]={ 234 const uint8_t ff_mba_length[6]={
235 6, 7, 9, 11, 13, 14 235 6, 7, 9, 11, 13, 14
236 }; 236 };
237
238 const uint8_t ff_h263_loop_filter_strength[32]={
239 // 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
240 0, 1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 6, 6, 7, 7, 7, 8, 8, 8, 9, 9, 9,10,10,10,11,11,11,12,12,12
241 };
242