From 3a34fd181d4bb1d57426d47fd188228ac290aa5d Mon Sep 17 00:00:00 2001 From: Justin Riley Date: Tue, 2 Jul 2013 16:16:46 -0400 Subject: [PATCH] FfmpegDecoderPlugin: add application/flv to mime types list --- NEWS | 1 + src/decoder/ffmpeg_decoder_plugin.c | 1 + 2 files changed, 2 insertions(+) diff --git a/NEWS b/NEWS index 6547bde82..70b479ec9 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ ver 0.17.5 (not yet released) - fix "playlistadd" with URI - fix "move" relative to current when there is no current song * decoder: + - ffmpeg: support "application/flv" - mikmod: adapt to libmikmod 3.2 * configure.ac: - detect system "ar" diff --git a/src/decoder/ffmpeg_decoder_plugin.c b/src/decoder/ffmpeg_decoder_plugin.c index fcf7507f4..58bd2f54a 100644 --- a/src/decoder/ffmpeg_decoder_plugin.c +++ b/src/decoder/ffmpeg_decoder_plugin.c @@ -717,6 +717,7 @@ static const char *const ffmpeg_suffixes[] = { }; static const char *const ffmpeg_mime_types[] = { + "application/flv", "application/m4a", "application/mp4", "application/octet-stream",