diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-02-18 13:43:59 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-02-28 15:36:47 +0100 |
commit | bd7a647c0d3071456e066a2d2b6dc4ea807c6ffc (patch) | |
tree | 6131307a668d65e8c5e112869d4f9307e6c86844 /libavcodec/msmpeg4.c | |
parent | 0c1759ac4b1ff8f0305dab4f244fa929b77a6fab (diff) | |
download | ffmpeg-bd7a647c0d3071456e066a2d2b6dc4ea807c6ffc.tar.gz |
msmpeg4: Replace forward declaration by proper #include.
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 7aeb0bedce..1f3dc3a3a1 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -34,6 +34,7 @@ #include "libavutil/x86_cpu.h" #include "h263.h" #include "mpeg4video.h" +#include "vc1data.h" /* * You can also call this codec : MPEG4 with a twist ! @@ -59,9 +60,6 @@ static uint32_t v2_dc_lum_table[512][2]; static uint32_t v2_dc_chroma_table[512][2]; -/* vc1 externs */ -extern const uint8_t ff_wmv3_dc_scale_table[32]; - #include "msmpeg4data.h" #if CONFIG_ENCODERS //strangely gcc includes this even if it is not referenced |