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/vc1data.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/vc1data.h')
-rw-r--r-- | libavcodec/vc1data.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/vc1data.h b/libavcodec/vc1data.h index a9d0199271..70e88b5251 100644 --- a/libavcodec/vc1data.h +++ b/libavcodec/vc1data.h @@ -47,7 +47,7 @@ const int16_t vc1_bfraction_lut[23] = { #define B_FRACTION_DEN 256 /* pre-computed scales for all bfractions and base=256 */ -const int16_t vc1_bfraction_lut[23] = { +static const int16_t vc1_bfraction_lut[23] = { 128 /*1/2*/, 85 /*1/3*/, 170 /*2/3*/, 64 /*1/4*/, 192 /*3/4*/, 51 /*1/5*/, 102 /*2/5*/, 153 /*3/5*/, 204 /*4/5*/, 43 /*1/6*/, 215 /*5/6*/, @@ -58,7 +58,7 @@ const int16_t vc1_bfraction_lut[23] = { }; #endif -const uint8_t vc1_bfraction_bits[23] = { +static const uint8_t vc1_bfraction_bits[23] = { 3, 3, 3, 3, 3, 3, 3, 7, 7, 7, 7, @@ -67,7 +67,7 @@ const uint8_t vc1_bfraction_bits[23] = { 7, 7, 7, 7 }; -const uint8_t vc1_bfraction_codes[23] = { +static const uint8_t vc1_bfraction_codes[23] = { 0, 1, 2, 3, 4, 5, 6, 112, 113, 114, 115, |