diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-09 17:22:37 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-09 17:22:37 +0000 |
commit | 0366b6e1996ccd959696887498863e895392d680 (patch) | |
tree | f863a29d87200d69186a7580a842bbb191b7b413 /libavcodec/h263data.h | |
parent | 23b0072ad71941c0cf67398b511dfca8ef9b23d8 (diff) | |
download | ffmpeg-0366b6e1996ccd959696887498863e895392d680.tar.gz |
Make some tables static again, i mistakely thought they would be used in several
places.
Originally committed as revision 21111 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263data.h')
-rw-r--r-- | libavcodec/h263data.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263data.h b/libavcodec/h263data.h index ab5d5b339d..20a9ab441a 100644 --- a/libavcodec/h263data.h +++ b/libavcodec/h263data.h @@ -127,7 +127,7 @@ const uint16_t inter_vlc[103][2] = { { 0x5e, 12 },{ 0x5f, 12 },{ 0x3, 7 }, }; -const int8_t inter_level[102] = { +static const int8_t inter_level[102] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 1, 2, @@ -143,7 +143,7 @@ const int8_t inter_level[102] = { 1, 1, 1, 1, 1, 1, }; -const int8_t inter_run[102] = { +static const int8_t inter_run[102] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, |