summaryrefslogtreecommitdiff
path: root/src/libffmpeg/ff_dvaudio_decoder.c
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2008-03-02 22:16:08 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2008-03-02 22:16:08 +0000
commitc414377fbfa2be0577381c80dd0171061e242905 (patch)
tree8ce66309033e00d31b0d76030984af84c3c4fcf9 /src/libffmpeg/ff_dvaudio_decoder.c
parent6772044da2f3574f09b8f39832710daab249e83f (diff)
downloadxine-lib-c414377fbfa2be0577381c80dd0171061e242905.tar.gz
xine-lib-c414377fbfa2be0577381c80dd0171061e242905.tar.bz2
Fix compilation with older external ffmpeg.
HAVE_FFMPEG_AVUTIL_H wasn't being defined, and there were some incorrect checks.
Diffstat (limited to 'src/libffmpeg/ff_dvaudio_decoder.c')
-rw-r--r--src/libffmpeg/ff_dvaudio_decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libffmpeg/ff_dvaudio_decoder.c b/src/libffmpeg/ff_dvaudio_decoder.c
index a394e6615..5106a402c 100644
--- a/src/libffmpeg/ff_dvaudio_decoder.c
+++ b/src/libffmpeg/ff_dvaudio_decoder.c
@@ -52,7 +52,7 @@
# undef uint64_t
#endif
-#ifdef HAVE_FFMPEG_AVCODEC_H
+#ifdef HAVE_FFMPEG_AVUTIL_H
# include <avcodec.h>
#else
# include <libavcodec/avcodec.h>