diff options
author | Qball Cow <qball@sarine.nl> | 2009-01-16 15:52:51 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-04 10:15:15 +0100 |
commit | f2c81399b7b53e7151cde7d6c3e936f4ee6af194 (patch) | |
tree | ffc20efb728db04441c285309219516669f1a235 | |
parent | c90552ddea9d2e19e094d68789d319a4f709667f (diff) | |
download | mpd-f2c81399b7b53e7151cde7d6c3e936f4ee6af194.tar.gz mpd-f2c81399b7b53e7151cde7d6c3e936f4ee6af194.tar.xz mpd-f2c81399b7b53e7151cde7d6c3e936f4ee6af194.zip |
ffmpeg: enable WAV streaming
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 }; |