From 888d78ac98379cf77e4923ed9ae5033c023a2563 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Sat, 30 Oct 2010 19:51:46 +0000 Subject: bink: make bink_rlelens static (it's only used in this file) Originally committed as revision 25605 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/bink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/bink.c') 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) { -- cgit v1.2.3