diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2011-01-05 19:38:42 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2011-01-05 19:38:42 +0000 |
commit | 6e16398aa3be09e068cc2d99f850672d58955fca (patch) | |
tree | dba20eb9893b2182645466c39681ab573411cf41 /libavcodec/mpeg12.h | |
parent | ab043374646a1211d65300054db463de577cfb0b (diff) | |
download | ffmpeg-6e16398aa3be09e068cc2d99f850672d58955fca.tar.gz |
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
Diffstat (limited to 'libavcodec/mpeg12.h')
-rw-r--r-- | libavcodec/mpeg12.h | 8 |
1 files changed, 4 insertions, 4 deletions
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"); |