diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-04-09 19:10:58 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-04-09 19:10:58 +0100 |
commit | 8063ffb8c0b354d54834ba53b22003dac481de2c (patch) | |
tree | 2663524c8c6376ab1ee7dd2a620b0979fc80ddb3 /src/audio_dec | |
parent | 39939c95eff90545285a9a8f761d9fa6e9349358 (diff) | |
download | xine-lib-8063ffb8c0b354d54834ba53b22003dac481de2c.tar.gz xine-lib-8063ffb8c0b354d54834ba53b22003dac481de2c.tar.bz2 |
Compilation fixes, mostly ffmpeg-related, and linkage fixes.
Tests done on amd64 with ffmpeg 0.svn20080206 from Debian experimental.
libavcodec 51.50.0, libavutil 49.6.0, libpostproc 51.1.0
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 | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/audio_dec/ff_dvdata.h b/src/audio_dec/ff_dvdata.h index 5e6d3d485..fc99349d0 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 <libavcodec/avcodec.h> -#include <libavutil/rational.h> +#include <avcodec.h> +#include <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 69c07df46..8d0c35f91 100644 --- a/src/audio_dec/xine_a52_decoder.c +++ b/src/audio_dec/xine_a52_decoder.c @@ -62,7 +62,7 @@ #include <xine/buffer.h> #include <xine/xineutils.h> -#include <libavutil/crc.h> +#include <crc.h> #undef DEBUG_A52 #ifdef DEBUG_A52 |