summaryrefslogtreecommitdiff
path: root/libavcodec/libvpxdec.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2010-08-06 18:57:14 +0000
committerAlex Converse <alex.converse@gmail.com>2010-08-06 18:57:14 +0000
commit18b95d85f2be14a4d2a2831ca2ccd9f6bb6cf412 (patch)
tree62bb2412df877fac9fd434d6d789dff87b3ea013 /libavcodec/libvpxdec.c
parent51aaf51143825112b0c499a48212e6f086c1a580 (diff)
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
Diffstat (limited to 'libavcodec/libvpxdec.c')
-rw-r--r--libavcodec/libvpxdec.c1
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 {