Mercurial > libavcodec.hg
changeset 12376:7e9b2d528e59 libavcodec
Fix the compilation of some libavcodec/lib* files which were not
including libavcore/imgutils.h, which was required since the recent
avcodec_check_dimensions() -> av_check_image_size() transition.
author | stefano |
---|---|
date | Sat, 07 Aug 2010 01:36:35 +0000 |
parents | 98004cbdda4e |
children | 37fc04bf57b4 |
files | libdiracdec.c libopenjpeg.c libschroedingerdec.c |
diffstat | 3 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/libdiracdec.c Fri Aug 06 18:57:14 2010 +0000 +++ b/libdiracdec.c Sat Aug 07 01:36:35 2010 +0000 @@ -28,6 +28,7 @@ * (http://dirac.sourceforge.net/specification.html). */ +#include "libavcore/imgutils.h" #include "libdirac.h" #undef NDEBUG
--- a/libopenjpeg.c Fri Aug 06 18:57:14 2010 +0000 +++ b/libopenjpeg.c Sat Aug 07 01:36:35 2010 +0000 @@ -24,6 +24,7 @@ * JPEG 2000 decoder using libopenjpeg */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "libavutil/intreadwrite.h" #define OPJ_STATIC
--- a/libschroedingerdec.c Fri Aug 06 18:57:14 2010 +0000 +++ b/libschroedingerdec.c Sat Aug 07 01:36:35 2010 +0000 @@ -27,6 +27,7 @@ * (http://dirac.sourceforge.net/specification.html). */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "libdirac_libschro.h" #include "libschroedinger.h"