diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-10 10:12:02 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-10 10:12:02 +0000 |
commit | 5ecb0677a26c8a59bd1c7971d815779817f3047d (patch) | |
tree | 64b9c4af3211824c6015929f815aab8ec38eadca /libavcodec/vc1.c | |
parent | 42ef2dbc77baf098153041bb0c80f3803a4a93a4 (diff) | |
download | ffmpeg-5ecb0677a26c8a59bd1c7971d815779817f3047d.tar.gz |
use header instead of copying table declarations
Originally committed as revision 8970 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 648c33e899..215e510fc7 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -32,16 +32,14 @@ #include "vc1.h" #include "vc1data.h" #include "vc1acdata.h" +#include "msmpeg4data.h" #undef NDEBUG #include <assert.h> extern const uint32_t ff_table0_dc_lum[120][2], ff_table1_dc_lum[120][2]; extern const uint32_t ff_table0_dc_chroma[120][2], ff_table1_dc_chroma[120][2]; -extern VLC ff_msmp4_dc_luma_vlc[2], ff_msmp4_dc_chroma_vlc[2]; #define MB_INTRA_VLC_BITS 9 -extern VLC ff_msmp4_mb_i_vlc; -extern const uint16_t ff_msmp4_mb_i_table[64][2]; #define DC_VLC_BITS 9 #define AC_VLC_BITS 9 static const uint16_t table_mb_intra[64][2]; |