Browse Source

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.

Originally committed as revision 24734 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Stefano Sabatini 15 years ago
parent
commit
a63dbf3970
3 changed files with 3 additions and 0 deletions
  1. +1
    -0
      libavcodec/libdiracdec.c
  2. +1
    -0
      libavcodec/libopenjpeg.c
  3. +1
    -0
      libavcodec/libschroedingerdec.c

+ 1
- 0
libavcodec/libdiracdec.c View File

@@ -28,6 +28,7 @@
* (http://dirac.sourceforge.net/specification.html).
*/

#include "libavcore/imgutils.h"
#include "libdirac.h"

#undef NDEBUG


+ 1
- 0
libavcodec/libopenjpeg.c View File

@@ -24,6 +24,7 @@
* JPEG 2000 decoder using libopenjpeg
*/

#include "libavcore/imgutils.h"
#include "avcodec.h"
#include "libavutil/intreadwrite.h"
#define OPJ_STATIC


+ 1
- 0
libavcodec/libschroedingerdec.c View File

@@ -27,6 +27,7 @@
* (http://dirac.sourceforge.net/specification.html).
*/

#include "libavcore/imgutils.h"
#include "avcodec.h"
#include "libdirac_libschro.h"
#include "libschroedinger.h"


Loading…
Cancel
Save