diff options
author | Max Kellermann <max@duempel.org> | 2009-02-25 21:51:39 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-25 21:51:39 +0100 |
commit | 8491f61d6c4ea95e4bca32dea2d9934376d35675 (patch) | |
tree | 7946dc8b1a110eaa89c44984714e68a6edf1b14c | |
parent | 6722c508a1fe28783e863a57eeb0423bbbbe0b50 (diff) | |
download | mpd-8491f61d6c4ea95e4bca32dea2d9934376d35675.tar.gz mpd-8491f61d6c4ea95e4bca32dea2d9934376d35675.tar.xz mpd-8491f61d6c4ea95e4bca32dea2d9934376d35675.zip |
mvp: fall back to stereo
When the channel count is greater than 2, fall back to stereo sound.
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/output/mvp_plugin.c | 6 |
2 files changed, 6 insertions, 1 deletions
@@ -17,6 +17,7 @@ ver 0.15 - (200?/??/??) * audio outputs: - shout: enlarged buffer size to 32 kB - null: allow disabling synchronization + - mvp: fall back to stereo * commands: - "playlistinfo" supports a range now - added "sticker database", command "sticker", which allows clients diff --git a/src/output/mvp_plugin.c b/src/output/mvp_plugin.c index ecb10e7f4..08e92bd85 100644 --- a/src/output/mvp_plugin.c +++ b/src/output/mvp_plugin.c @@ -134,7 +134,11 @@ mvp_set_pcm_params(struct mvp_data *md, struct audio_format *audio_format) break; default: - return false; + g_debug("unsupported channel count %u - falling back to stereo", + audio_format->channels); + audio_format->channels = 2; + mix[0] = 0; + break; } /* 0,1=24bit(24) , 2,3=16bit */ |