summaryrefslogtreecommitdiffstats
path: root/ext/faad/gstfaad.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/faad/gstfaad.c')
-rw-r--r--ext/faad/gstfaad.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c
index 20059646..444437a9 100644
--- a/ext/faad/gstfaad.c
+++ b/ext/faad/gstfaad.c
@@ -316,18 +316,18 @@ gst_faad_srcgetcaps (GstPad * pad)
{
GstFaad *faad = GST_FAAD (gst_pad_get_parent (pad));
static GstAudioChannelPosition *supported_positions = NULL;
- static gint num_supported_positions = LFE_CHANNEL - FRONT_CHANNEL_CENTER;
+ static gint num_supported_positions = LFE_CHANNEL - FRONT_CHANNEL_CENTER + 1;
GstCaps *templ;
if (!supported_positions) {
- guchar *supported_fpos = g_new0 (guchar,
- LFE_CHANNEL - FRONT_CHANNEL_CENTER);
+ guchar *supported_fpos = g_new0 (guchar, num_supported_positions);
gint n;
- for (n = 0; n < LFE_CHANNEL - FRONT_CHANNEL_CENTER; n++) {
+ for (n = 0; n <= num_supported_positions; n++) {
supported_fpos[n] = n + FRONT_CHANNEL_CENTER;
}
- supported_positions = gst_faad_chanpos_to_gst (supported_fpos, n);
+ supported_positions = gst_faad_chanpos_to_gst (supported_fpos,
+ num_supported_positions);
g_free (supported_fpos);
}