diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-02-29 00:30:35 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-02-29 00:30:35 +0100 |
commit | 0e6aa0fef565fdb625673c60276e90c2ea091e8e (patch) | |
tree | f0b08a7f4b465aaa0d9144e9b837b18294db3df6 /libavcodec/msmpeg4.c | |
parent | f929abd0c3643b28a9552512d698cf61ad4d08fa (diff) | |
parent | bbeb29133b55b7256d18f5aaab8b5c8e919a173a (diff) | |
download | ffmpeg-0e6aa0fef565fdb625673c60276e90c2ea091e8e.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
adpcm: Clip step_index values read from the bitstream at the beginning of each frame.
oma: don't read beyond end of leaf_table.
doxygen: Remove documentation for non-existing parameters; misc small fixes.
Indeo3: fix crashes on corrupt bitstreams.
msmpeg4: Replace forward declaration by proper #include.
segment: implement wrap around
avf: reorder AVStream and AVFormatContext
aacdec: Remove erroneous reference to global gain from the out of bounds scalefactor error message.
Conflicts:
libavcodec/indeo3.c
libavformat/avformat.h
libavutil/avutil.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 65604dbe6b..232b82b219 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 |