comparison libvpxdec.c @ 12375:98004cbdda4e libavcodec

libvpxdec: Fix "error: implicit declaration of function ¡Æav_check_image_size¡Ç". av_check_image_size() is declared in libavcore/imgutils.h.
author alexc
date Fri, 06 Aug 2010 18:57:14 +0000
parents 914f484bb476
children ffb3668ff7af
comparison
equal deleted inserted replaced
12374:9999147e9d50 12375:98004cbdda4e
25 25
26 #define VPX_CODEC_DISABLE_COMPAT 1 26 #define VPX_CODEC_DISABLE_COMPAT 1
27 #include <vpx/vpx_decoder.h> 27 #include <vpx/vpx_decoder.h>
28 #include <vpx/vp8dx.h> 28 #include <vpx/vp8dx.h>
29 29
30 #include "libavcore/imgutils.h"
30 #include "avcodec.h" 31 #include "avcodec.h"
31 32
32 typedef struct VP8DecoderContext { 33 typedef struct VP8DecoderContext {
33 struct vpx_codec_ctx decoder; 34 struct vpx_codec_ctx decoder;
34 } VP8Context; 35 } VP8Context;