diff options
Diffstat (limited to '')
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/decoder/ffmpeg_plugin.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -4,6 +4,7 @@ ver 0.14.2 (2009/??/??) - ffmpeg: don't warn of empty packet output - ffmpeg: check if the time stamp is valid - ffmpeg: fixed seek integer overflow + - ffmpeg: enable WAV streaming - wavpack: pass NULL if the .wvc file fails to open - mikmod: call MikMod_Exit() only in the finish() method * audio outputs: diff --git a/src/decoder/ffmpeg_plugin.c b/src/decoder/ffmpeg_plugin.c index adc143a57..1a25662ff 100644 --- a/src/decoder/ffmpeg_plugin.c +++ b/src/decoder/ffmpeg_plugin.c @@ -416,6 +416,7 @@ static const char *const ffmpeg_mime_types[] = { "application/x-ms-wmz", "application/x-ms-wmd", "audio/mpeg", + "audio/x-wav", NULL }; |