diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-12 23:14:20 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-12 23:14:20 +0000 |
commit | 7b7abda3b3a73501879417b84e331addb26df09e (patch) | |
tree | 8ffff1aa18cd081f5fd3d6f8cc74e60dacdac932 /libavcodec/h263data.h | |
parent | 1d5039574693da5eff80f8f50a283b5261fd5358 (diff) | |
download | ffmpeg-7b7abda3b3a73501879417b84e331addb26df09e.tar.gz |
make more tables static
Originally committed as revision 6996 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263data.h')
-rw-r--r-- | libavcodec/h263data.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/h263data.h b/libavcodec/h263data.h index 2bd01a4ea0..5eddc3b549 100644 --- a/libavcodec/h263data.h +++ b/libavcodec/h263data.h @@ -88,7 +88,7 @@ static const int h263_mb_type_b_map[15]= { MB_TYPE_INTRA4x4 | MB_TYPE_CBP | MB_TYPE_QUANT, }; -const uint8_t cbpc_b_tab[4][2] = { +static const uint8_t cbpc_b_tab[4][2] = { {0, 1}, {2, 2}, {7, 3}, @@ -180,7 +180,7 @@ static RLTable rl_inter = { inter_level, }; -const uint16_t intra_vlc_aic[103][2] = { +static const uint16_t intra_vlc_aic[103][2] = { { 0x2, 2 }, { 0x6, 3 }, { 0xe, 4 }, { 0xc, 5 }, { 0xd, 5 }, { 0x10, 6 }, { 0x11, 6 }, { 0x12, 6 }, { 0x16, 7 }, { 0x1b, 8 }, { 0x20, 9 }, { 0x21, 9 }, @@ -209,7 +209,7 @@ const uint16_t intra_vlc_aic[103][2] = { { 0x59, 12 }, { 0x5a, 12 }, { 0x3, 7 }, }; -const int8_t intra_run_aic[102] = { +static const int8_t intra_run_aic[102] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -225,7 +225,7 @@ const int8_t intra_run_aic[102] = { 18, 19, 20, 21, 22, 23, }; -const int8_t intra_level_aic[102] = { +static const int8_t intra_level_aic[102] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |