summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Riley <justin.t.riley@gmail.com>2013-07-02 16:16:46 -0400
committerMax Kellermann <max@duempel.org>2013-08-04 14:20:16 +0200
commit3a34fd181d4bb1d57426d47fd188228ac290aa5d (patch)
treee43d39203bce5dbbc3200d8669d2eaf35ec67f4e
parent7ff988275f9c3487d54c23d55218301aa0111aff (diff)
FfmpegDecoderPlugin: add application/flv to mime types list
-rw-r--r--NEWS1
-rw-r--r--src/decoder/ffmpeg_decoder_plugin.c1
2 files changed, 2 insertions, 0 deletions
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",