From ba6d096d0193a20f15fcb1ff920ea479cd96e79d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 27 Jan 2012 17:10:35 +0100 Subject: [PATCH] vorbisenc: Properly generate the channel-mask on the sinkpad caps --- ext/vorbis/gstvorbisenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/vorbis/gstvorbisenc.c b/ext/vorbis/gstvorbisenc.c index 0e4156c..44ea535 100644 --- a/ext/vorbis/gstvorbisenc.c +++ b/ext/vorbis/gstvorbisenc.c @@ -272,7 +272,7 @@ gst_vorbis_enc_generate_sink_caps (void) const GstAudioChannelPosition *pos = gst_vorbis_channel_positions[i - 1]; for (c = 0; c < i; c++) { - channel_mask |= pos[i]; + channel_mask |= G_GUINT64_CONSTANT (1) << pos[i]; } structure = gst_structure_new ("audio/x-raw", -- 2.7.4