From: David Henningsson Date: Fri, 23 May 2014 12:20:16 +0000 (+0200) Subject: channelmap: Add 2.1 surround X-Git-Url: https://code.delx.au/pulseaudio/commitdiff_plain/65be25dd0faa566a74101d5a0f50d5a825b6f1e7 channelmap: Add 2.1 surround Add surround-21 as a alias to set up a 2.1 channel map. Signed-off-by: David Henningsson --- diff --git a/src/pulse/channelmap.c b/src/pulse/channelmap.c index 72e4130e..e1b173a1 100644 --- a/src/pulse/channelmap.c +++ b/src/pulse/channelmap.c @@ -536,6 +536,12 @@ pa_channel_map *pa_channel_map_parse(pa_channel_map *rmap, const char *s) { map.map[0] = PA_CHANNEL_POSITION_LEFT; map.map[1] = PA_CHANNEL_POSITION_RIGHT; goto finish; + } else if (pa_streq(s, "surround-21")) { + map.channels = 3; + map.map[0] = PA_CHANNEL_POSITION_FRONT_LEFT; + map.map[1] = PA_CHANNEL_POSITION_FRONT_RIGHT; + map.map[2] = PA_CHANNEL_POSITION_LFE; + goto finish; } else if (pa_streq(s, "surround-40")) { map.channels = 4; map.map[0] = PA_CHANNEL_POSITION_FRONT_LEFT;