comparison mpeg4video.h @ 10817:d1fe22d92a65 libavcodec

Rename mpeg4 intra vlc tables so they contain "mpeg4", this improves readability of msmpeg4 code (one now knows where that table comes from).
author michael
date Fri, 08 Jan 2010 17:41:14 +0000
parents 9abebeca7d1b
children 82d006235248
comparison
equal deleted inserted replaced
10816:9abebeca7d1b 10817:d1fe22d92a65
55 55
56 /* dc encoding for mpeg4 */ 56 /* dc encoding for mpeg4 */
57 extern const uint8_t ff_mpeg4_DCtab_lum[13][2]; 57 extern const uint8_t ff_mpeg4_DCtab_lum[13][2];
58 extern const uint8_t ff_mpeg4_DCtab_chrom[13][2]; 58 extern const uint8_t ff_mpeg4_DCtab_chrom[13][2];
59 59
60 extern const uint16_t intra_vlc[103][2]; 60 extern const uint16_t ff_mpeg4_intra_vlc[103][2];
61 extern const int8_t intra_level[102]; 61 extern const int8_t ff_mpeg4_intra_level[102];
62 extern const int8_t intra_run[102]; 62 extern const int8_t ff_mpeg4_intra_run[102];
63 extern RLTable rl_intra; 63 extern RLTable ff_mpeg4_rl_intra;
64 64
65 /* Note this is identical to the intra rvlc except that it is reordered. */ 65 /* Note this is identical to the intra rvlc except that it is reordered. */
66 extern const uint16_t inter_rvlc[170][2]; 66 extern const uint16_t inter_rvlc[170][2];
67 extern const int8_t inter_rvlc_run[169]; 67 extern const int8_t inter_rvlc_run[169];
68 extern const int8_t inter_rvlc_level[169]; 68 extern const int8_t inter_rvlc_level[169];