summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJochen Henneberg <jh@henneberg-systemdesign.com>2017-02-20 13:44:37 +0200
committerSebastian Dröge <sebastian@centricular.com>2017-02-22 11:13:11 +0200
commit94e195d1fb59add14caa03551c5ab0269bc4e94f (patch)
tree38f4129fb1e6e388daee78adcba7ed13cb52d79d
parent3148f4bc9df1f8288a1aeb71b3fbe0d50cbac3f8 (diff)
downloadgstreamer-plugins-base-94e195d1fb59add14caa03551c5ab0269bc4e94f.tar.gz
vorbis: Fix channel reorder map for 5.1, 6.1 and 7.1
-rw-r--r--ext/vorbis/gstvorbiscommon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/vorbis/gstvorbiscommon.c b/ext/vorbis/gstvorbiscommon.c
index f575b99cf..045b108ca 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