From 6e16398aa3be09e068cc2d99f850672d58955fca Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Wed, 5 Jan 2011 19:38:42 +0000 Subject: Make dc_lum_vlc and dc_chroma_vlc non-static symbols, this fixed the decoding of version 3 PSX MDEC files. Originally committed as revision 26230 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpeg12.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/mpeg12.h') diff --git a/libavcodec/mpeg12.h b/libavcodec/mpeg12.h index 30bb675d35..541b66bd94 100644 --- a/libavcodec/mpeg12.h +++ b/libavcodec/mpeg12.h @@ -27,8 +27,8 @@ #define DC_VLC_BITS 9 #define TEX_VLC_BITS 9 -static VLC dc_lum_vlc; -static VLC dc_chroma_vlc; +extern VLC ff_dc_lum_vlc; +extern VLC ff_dc_chroma_vlc; extern uint8_t ff_mpeg12_static_rl_table_store[2][2][2*MAX_RUN + MAX_LEVEL + 3]; @@ -40,9 +40,9 @@ static inline int decode_dc(GetBitContext *gb, int component) int code, diff; if (component == 0) { - code = get_vlc2(gb, dc_lum_vlc.table, DC_VLC_BITS, 2); + code = get_vlc2(gb, ff_dc_lum_vlc.table, DC_VLC_BITS, 2); } else { - code = get_vlc2(gb, dc_chroma_vlc.table, DC_VLC_BITS, 2); + code = get_vlc2(gb, ff_dc_chroma_vlc.table, DC_VLC_BITS, 2); } if (code < 0){ av_log(NULL, AV_LOG_ERROR, "invalid dc code at\n"); -- cgit v1.2.3