diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-10 10:03:16 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-10 10:03:16 +0000 |
commit | 42ef2dbc77baf098153041bb0c80f3803a4a93a4 (patch) | |
tree | 0376856d9ae2c8ff3f14fc1effeadcdf024f3293 /libavcodec/msmpeg4.c | |
parent | 1d557d35778cb186012b15afcefb5eed6f14daab (diff) | |
download | ffmpeg-42ef2dbc77baf098153041bb0c80f3803a4a93a4.tar.gz |
split msmpeg4 data to easily share some of it with vc1.c
Originally committed as revision 8969 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r-- | libavcodec/msmpeg4.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c index 62076d1409..d98ad03772 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -86,6 +86,7 @@ int frame_count = 0; #endif #include "msmpeg4data.h" +#include "msmpeg4tab.h" #ifdef CONFIG_ENCODERS //strangely gcc includes this even if its not references static uint8_t rl_length[NB_RL_TABLES][MAX_LEVEL+1][MAX_RUN+1][2]; @@ -972,9 +973,6 @@ else /* decoding stuff */ static VLC mb_non_intra_vlc[4]; -VLC ff_msmp4_mb_i_vlc; -VLC ff_msmp4_dc_luma_vlc[2]; -VLC ff_msmp4_dc_chroma_vlc[2]; static VLC v2_dc_lum_vlc; static VLC v2_dc_chroma_vlc; static VLC cbpy_vlc; |