comparison msmpeg4data.c @ 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 e9d9d946f213
children 7dd2a45249a9
comparison
equal deleted inserted replaced
10816:9abebeca7d1b 10817:d1fe22d92a65
594 594
595 extern const uint16_t inter_vlc[103][2]; 595 extern const uint16_t inter_vlc[103][2];
596 extern const int8_t inter_level[102]; 596 extern const int8_t inter_level[102];
597 extern const int8_t inter_run[102]; 597 extern const int8_t inter_run[102];
598 598
599 extern const uint16_t intra_vlc[103][2]; 599 extern const uint16_t ff_mpeg4_intra_vlc[103][2];
600 extern const int8_t intra_level[102]; 600 extern const int8_t ff_mpeg4_intra_level[102];
601 extern const int8_t intra_run[102]; 601 extern const int8_t ff_mpeg4_intra_run[102];
602 602
603 RLTable rl_table[NB_RL_TABLES] = { 603 RLTable rl_table[NB_RL_TABLES] = {
604 /* intra luminance tables */ 604 /* intra luminance tables */
605 /* low motion */ 605 /* low motion */
606 { 606 {
620 }, 620 },
621 /* mid-rate */ 621 /* mid-rate */
622 { 622 {
623 102, 623 102,
624 67, 624 67,
625 intra_vlc, 625 ff_mpeg4_intra_vlc,
626 intra_run, 626 ff_mpeg4_intra_run,
627 intra_level, 627 ff_mpeg4_intra_level,
628 }, 628 },
629 /* intra chrominance / non intra tables */ 629 /* intra chrominance / non intra tables */
630 /* low motion inter */ 630 /* low motion inter */
631 { 631 {
632 148, 632 148,