aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/plugins
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-12-08 15:03:09 +0100
committerMax Kellermann <max@duempel.org>2014-12-08 15:03:09 +0100
commitcbc1a58e937f36b6fd9381067132f6dfec99895c (patch)
tree1c09f34d1524026451327d98e2d64929a87090c8 /src/decoder/plugins
parent811af02f56a829fb2177d25b7eb4f93212a4ea9e (diff)
parent1b5f33a4358f69d153a4c2d2fae34165dc200cca (diff)
downloadmpd-cbc1a58e937f36b6fd9381067132f6dfec99895c.tar.gz
mpd-cbc1a58e937f36b6fd9381067132f6dfec99895c.tar.xz
mpd-cbc1a58e937f36b6fd9381067132f6dfec99895c.zip
Merge tag 'v0.18.20' into v0.19.x
Diffstat (limited to 'src/decoder/plugins')
-rw-r--r--src/decoder/plugins/FfmpegDecoderPlugin.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/decoder/plugins/FfmpegDecoderPlugin.cxx b/src/decoder/plugins/FfmpegDecoderPlugin.cxx
index 466caa3d1..e150fa3bf 100644
--- a/src/decoder/plugins/FfmpegDecoderPlugin.cxx
+++ b/src/decoder/plugins/FfmpegDecoderPlugin.cxx
@@ -423,10 +423,15 @@ ffmpeg_probe(Decoder *decoder, InputStream &is)
avpd.filename = is.GetURI();
#ifdef AVPROBE_SCORE_MIME
+#if LIBAVFORMAT_VERSION_INT < AV_VERSION_INT(56, 5, 1)
/* this attribute was added in libav/ffmpeg version 11, but
unfortunately it's "uint8_t" instead of "char", and it's
not "const" - wtf? */
avpd.mime_type = (uint8_t *)const_cast<char *>(is.GetMimeType());
+#else
+ /* API problem fixed in FFmpeg 2.5 */
+ avpd.mime_type = is.GetMimeType();
+#endif
#endif
return av_probe_input_format(&avpd, true);