diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-02 23:11:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-02 23:11:31 +0200 |
commit | b984c727f53c30527552503eac4fabb1fd0e6a09 (patch) | |
tree | 6b6fd3854399a077cf9921875d9bd28ed7f50c00 /libavcodec | |
parent | 04c50cb3a0b91b43b8441129f5aecc06324f2764 (diff) | |
download | ffmpeg-b984c727f53c30527552503eac4fabb1fd0e6a09.tar.gz |
avcodec/dxtory: make def_lru[8] static
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dxtory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dxtory.c b/libavcodec/dxtory.c index 6018ebb206..17d0bbb087 100644 --- a/libavcodec/dxtory.c +++ b/libavcodec/dxtory.c @@ -66,7 +66,7 @@ static int dxtory_decode_v1(AVCodecContext *avctx, AVFrame *pic, return 0; } -const uint8_t def_lru[8] = { 0x00, 0x20, 0x40, 0x60, 0x80, 0xA0, 0xC0, 0xFF }; +static const uint8_t def_lru[8] = { 0x00, 0x20, 0x40, 0x60, 0x80, 0xA0, 0xC0, 0xFF }; static inline uint8_t decode_sym(GetBitContext *gb, uint8_t lru[8]) { |