Commit b984c727 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/dxtory: make def_lru[8] static

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 04c50cb3
......@@ -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])
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment