diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ext/faad/gstfaad.c | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2007-04-20 Michael Smith <msmith@fluendo.com> + + * ext/faad/gstfaad.c: (gst_faad_open_decoder): + FAAD fails to decode low (e.g. 8 kHz) sample rate AAC data in + quicktime because of sample rate mismatches. + Reenable overriding the implicit SBR behaviour (accidently changed?) + to allow playback of these files. + 2007-04-19 David Schleef <ds@schleef.org> * configure.ac: diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c index 120f88ce..814de23b 100644 --- a/ext/faad/gstfaad.c +++ b/ext/faad/gstfaad.c @@ -1461,7 +1461,7 @@ gst_faad_open_decoder (GstFaad * faad) conf = faacDecGetCurrentConfiguration (faad->handle); conf->defObjectType = LC; - /* conf->dontUpSampleImplicitSBR = 1; */ + conf->dontUpSampleImplicitSBR = 1; conf->outputFormat = FAAD_FMT_16BIT; if (faacDecSetConfiguration (faad->handle, conf) == 0) { |