From 8491f61d6c4ea95e4bca32dea2d9934376d35675 Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Wed, 25 Feb 2009 21:51:39 +0100
Subject: mvp: fall back to stereo

When the channel count is greater than 2, fall back to stereo sound.
---
 src/output/mvp_plugin.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

(limited to 'src/output')

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 */
-- 
cgit v1.2.3