diff options
author | Måns Rullgård <mans@mansr.com> | 2010-02-21 02:46:44 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-02-21 02:46:44 +0000 |
commit | d68b27a95d2c057d434e436e906f56cbf3116e1e (patch) | |
tree | b7d49a533280202c59f6b4190b2ab07182fdd0a1 | |
parent | 6cb35b45e609bd9586cdf64310e051047441ea73 (diff) | |
download | ffmpeg-d68b27a95d2c057d434e436e906f56cbf3116e1e.tar.gz |
VC1: fix missing include h263.h
Originally committed as revision 21932 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vc1dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index d2a50a3d61..611b845390 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -29,6 +29,7 @@ #include "dsputil.h" #include "avcodec.h" #include "mpegvideo.h" +#include "h263.h" #include "vc1.h" #include "vc1data.h" #include "vc1acdata.h" |