comparison h263data.h @ 10803:4605bd2fdb7f libavcodec

Split the mpeg4 encoder and decoder off h263.c
author michael
date Thu, 07 Jan 2010 23:53:49 +0000
parents 0e785b937073
children 514dc1c87b2e
comparison
equal deleted inserted replaced
10802:4f614b69b4e5 10803:4605bd2fdb7f
175 19, 20, 21, 22, 23, 24, 25, 26, 175 19, 20, 21, 22, 23, 24, 25, 26,
176 27, 28, 29, 30, 31, 32, 33, 34, 176 27, 28, 29, 30, 31, 32, 33, 34,
177 35, 36, 37, 38, 39, 40, 177 35, 36, 37, 38, 39, 40,
178 }; 178 };
179 179
180 static RLTable rl_inter = { 180 RLTable rl_inter = {
181 102, 181 102,
182 58, 182 58,
183 inter_vlc, 183 inter_vlc,
184 inter_run, 184 inter_run,
185 inter_level, 185 inter_level,
311 const uint8_t ff_h263_loop_filter_strength[32]={ 311 const uint8_t ff_h263_loop_filter_strength[32]={
312 // 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 312 // 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
313 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 313 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
314 }; 314 };
315 315
316 const AVRational ff_h263_pixel_aspect[16]={
317 {0, 1},
318 {1, 1},
319 {12, 11},
320 {10, 11},
321 {16, 11},
322 {40, 33},
323 {0, 1},
324 {0, 1},
325 {0, 1},
326 {0, 1},
327 {0, 1},
328 {0, 1},
329 {0, 1},
330 {0, 1},
331 {0, 1},
332 {0, 1},
333 };
334
316 #endif /* AVCODEC_H263DATA_H */ 335 #endif /* AVCODEC_H263DATA_H */