diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-03-01 04:00:18 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-03-01 04:00:18 +0100 |
commit | 19357940a57c565ebe319729bd08d6e4800aff5d (patch) | |
tree | 56c8f37132e27989ab0cef9ddf972bcae6565e33 /src/audio_dec | |
parent | dd9e47afa23c55c067aa7e3bc1a6321fcc985e2b (diff) | |
download | xine-lib-19357940a57c565ebe319729bd08d6e4800aff5d.tar.gz xine-lib-19357940a57c565ebe319729bd08d6e4800aff5d.tar.bz2 |
Update to the new FFmpeg's include directory.
This also allows to remove the comment stating the includes come from libavutil, as it's now explicit.
Diffstat (limited to 'src/audio_dec')
-rw-r--r-- | src/audio_dec/ff_dvdata.h | 4 | ||||
-rw-r--r-- | src/audio_dec/xine_a52_decoder.c | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/audio_dec/ff_dvdata.h b/src/audio_dec/ff_dvdata.h index fc99349d0..5e6d3d485 100644 --- a/src/audio_dec/ff_dvdata.h +++ b/src/audio_dec/ff_dvdata.h @@ -27,8 +27,8 @@ #ifndef FFMPEG_DVDATA_H #define FFMPEG_DVDATA_H -#include <avcodec.h> -#include <rational.h> +#include <libavcodec/avcodec.h> +#include <libavutil/rational.h> /* * DVprofile is used to express the differences between various diff --git a/src/audio_dec/xine_a52_decoder.c b/src/audio_dec/xine_a52_decoder.c index 71adf176a..69c07df46 100644 --- a/src/audio_dec/xine_a52_decoder.c +++ b/src/audio_dec/xine_a52_decoder.c @@ -62,8 +62,7 @@ #include <xine/buffer.h> #include <xine/xineutils.h> -/* libavutil from FFmpeg */ -#include <crc.h> +#include <libavutil/crc.h> #undef DEBUG_A52 #ifdef DEBUG_A52 |