diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-30 22:13:25 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-30 22:13:25 +0000 |
commit | e0698e4bbd3b7e444f0f4347cd9fbf6b5b400fc0 (patch) | |
tree | 85a764e4d7301449f65ed7509ea7ff7aeb47733f /libavcodec | |
parent | 7148da489e4991c88eeff9cd6238ad6e273613b5 (diff) | |
download | ffmpeg-e0698e4bbd3b7e444f0f4347cd9fbf6b5b400fc0.tar.gz |
Make exponent_group_tab[] static.
Originally committed as revision 26169 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ac3enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c index 52cb58fa2b..c8fbeee40a 100644 --- a/libavcodec/ac3enc.c +++ b/libavcodec/ac3enc.c @@ -153,7 +153,7 @@ typedef struct AC3EncodeContext { * LUT for number of exponent groups. * exponent_group_tab[exponent strategy-1][number of coefficients] */ -uint8_t exponent_group_tab[3][256]; +static uint8_t exponent_group_tab[3][256]; /** |