From 0c2c82ad692f4aa1253d8474fa41d2a18ccfb3c3 Mon Sep 17 00:00:00 2001 From: Jochen Henneberg Date: Mon, 20 Feb 2017 13:44:37 +0200 Subject: [PATCH] vorbis: Fix channel reorder map for 5.1, 6.1 and 7.1 --- ext/vorbis/gstvorbiscommon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/vorbis/gstvorbiscommon.c b/ext/vorbis/gstvorbiscommon.c index f575b99cf9..045b108ca3 100644 --- a/ext/vorbis/gstvorbiscommon.c +++ b/ext/vorbis/gstvorbiscommon.c @@ -134,8 +134,8 @@ const gint gst_vorbis_reorder_map[][8] = { {0, 2, 1}, {0, 1, 2, 3}, {0, 2, 1, 3, 4}, - {0, 2, 1, 4, 5, 3}, - {0, 2, 1, 5, 6, 4, 3}, - {0, 2, 1, 6, 7, 4, 5, 3} + {0, 2, 1, 5, 3, 4}, + {0, 2, 1, 6, 5, 3, 4}, + {0, 2, 1, 7, 5, 6, 3, 4} }; #endif