From b791f8e9411e62ac12ca7d86e560e416b7f5bb67 Mon Sep 17 00:00:00 2001 From: Michal Benes Date: Thu, 10 Aug 2006 17:09:10 +0000 Subject: ext/faac/gstfaac.c: Bitrate in the faac structure is per output channel, not total bitrate (#350741). Original commit message from CVS: Patch by: Michal Benes * ext/faac/gstfaac.c: (gst_faac_configure_source_pad): Bitrate in the faac structure is per output channel, not total bitrate (#350741). --- ext/faac/gstfaac.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/faac/gstfaac.c') diff --git a/ext/faac/gstfaac.c b/ext/faac/gstfaac.c index 60bf67b3..e02986ea 100644 --- a/ext/faac/gstfaac.c +++ b/ext/faac/gstfaac.c @@ -30,7 +30,7 @@ "width = (int) 16, " \ "depth = (int) 16, " \ "rate = (int) [ 8000, 96000 ], " \ - "channels = (int) [ 1, 6] " + "channels = (int) [ 1, 6 ] " /* these don't seem to work? */ #if 0 @@ -401,7 +401,7 @@ gst_faac_configure_source_pad (GstFaac * faac) conf->allowMidside = faac->midside; conf->useLfe = 0; conf->useTns = faac->tns; - conf->bitRate = faac->bitrate; + conf->bitRate = faac->bitrate / faac->channels; conf->inputFormat = faac->format; conf->outputFormat = faac->outputformat; conf->shortctl = faac->shortctl; -- cgit v1.2.1