diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-08-06 18:57:14 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-08-06 18:57:14 +0000 |
commit | 18b95d85f2be14a4d2a2831ca2ccd9f6bb6cf412 (patch) | |
tree | 62bb2412df877fac9fd434d6d789dff87b3ea013 | |
parent | 51aaf51143825112b0c499a48212e6f086c1a580 (diff) | |
download | ffmpeg-18b95d85f2be14a4d2a2831ca2ccd9f6bb6cf412.tar.gz |
libvpxdec: Fix "error: implicit declaration of function ‘av_check_image_size’".
av_check_image_size() is declared in libavcore/imgutils.h.
Originally committed as revision 24717 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/libvpxdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/libvpxdec.c b/libavcodec/libvpxdec.c index a71099af69..8fa7050654 100644 --- a/libavcodec/libvpxdec.c +++ b/libavcodec/libvpxdec.c @@ -27,6 +27,7 @@ #include <vpx/vpx_decoder.h> #include <vpx/vp8dx.h> +#include "libavcore/imgutils.h" #include "avcodec.h" typedef struct VP8DecoderContext { |