summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2011-02-08 18:37:05 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2011-02-08 19:07:10 +0200
commite1a8392cae584ddce6a92d88bda47e7f366769cf (patch)
tree5977700a89f12da7fc3773320918b6246604a93b /libmpdemux
parentcba6d60bcd2e51dfd9a42007c0421e7635e78a9c (diff)
downloadmpv-e1a8392cae584ddce6a92d88bda47e7f366769cf.tar.bz2
mpv-e1a8392cae584ddce6a92d88bda47e7f366769cf.tar.xz
fix compilation with old FFmpeg versions
af_lavcac3enc: use old SampleFormat names without AV_ prefix, the latter were only added in 2010-11 vd_ffmpeg: add ifdef around CODEC_ID_LAGARITH use demux_real: use ffmpeg_files/intreadwrite.h stream/http.c, stream/realrtsp/real.c: define AV_BASE64_SIZE macro for old libavutil versions lacking it
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/demux_real.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/demux_real.c b/libmpdemux/demux_real.c
index 93a899539e..1bdf8ec19b 100644
--- a/libmpdemux/demux_real.c
+++ b/libmpdemux/demux_real.c
@@ -43,7 +43,7 @@
#include "mp_msg.h"
#include "mpbswap.h"
#include "libavutil/common.h"
-#include "libavutil/intreadwrite.h"
+#include "ffmpeg_files/intreadwrite.h"
#include "stream/stream.h"
#include "aviprint.h"
#include "demuxer.h"