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/xine-engine | |
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/xine-engine')
-rw-r--r-- | src/xine-engine/buffer.c | 2 | ||||
-rw-r--r-- | src/xine-engine/configfile.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/buffer.c b/src/xine-engine/buffer.c index 605fbaa09..6b6d48a11 100644 --- a/src/xine-engine/buffer.c +++ b/src/xine-engine/buffer.c @@ -36,7 +36,7 @@ #include <stdlib.h> #include <assert.h> -#include <libavutil/mem.h> +#include <mem.h> /********** logging **********/ #define LOG_MODULE "buffer" diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c index 9f67b7503..c3b698be7 100644 --- a/src/xine-engine/configfile.c +++ b/src/xine-engine/configfile.c @@ -33,7 +33,7 @@ #include <unistd.h> #include <xine/configfile.h> #include "bswap.h" -#include <libavutil/base64.h> +#include <base64.h> #define LOG_MODULE "configfile" #define LOG_VERBOSE |