diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2010-10-30 19:51:46 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2010-10-30 19:51:46 +0000 |
commit | 888d78ac98379cf77e4923ed9ae5033c023a2563 (patch) | |
tree | 9b802e1b5e81d5b7db9e412bd009e28f537c0c28 /libavcodec/bink.c | |
parent | 51d592dbcbc60849ff90e3c077d62c5487407d14 (diff) | |
download | ffmpeg-888d78ac98379cf77e4923ed9ae5033c023a2563.tar.gz |
bink: make bink_rlelens static (it's only used in this file)
Originally committed as revision 25605 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bink.c')
-rw-r--r-- | libavcodec/bink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bink.c b/libavcodec/bink.c index d0de3f6ac3..5f2fc312bc 100644 --- a/libavcodec/bink.c +++ b/libavcodec/bink.c @@ -325,7 +325,7 @@ static int read_motion_values(AVCodecContext *avctx, GetBitContext *gb, Bundle * return 0; } -const uint8_t bink_rlelens[4] = { 4, 8, 12, 32 }; +static const uint8_t bink_rlelens[4] = { 4, 8, 12, 32 }; static int read_block_types(AVCodecContext *avctx, GetBitContext *gb, Bundle *b) { |