ext/faad/gstfaad.c: FAAD fails to decode low (e.g. 8 kHz) sample rate AAC data in quicktime because of sample rate mi...
Original commit message from CVS: * 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.
This commit is contained in:
parent
fee6896ecb
commit
d437aba4c4
@ -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>
|
2007-04-19 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
@ -1461,7 +1461,7 @@ gst_faad_open_decoder (GstFaad * faad)
|
|||||||
|
|
||||||
conf = faacDecGetCurrentConfiguration (faad->handle);
|
conf = faacDecGetCurrentConfiguration (faad->handle);
|
||||||
conf->defObjectType = LC;
|
conf->defObjectType = LC;
|
||||||
/* conf->dontUpSampleImplicitSBR = 1; */
|
conf->dontUpSampleImplicitSBR = 1;
|
||||||
conf->outputFormat = FAAD_FMT_16BIT;
|
conf->outputFormat = FAAD_FMT_16BIT;
|
||||||
|
|
||||||
if (faacDecSetConfiguration (faad->handle, conf) == 0) {
|
if (faacDecSetConfiguration (faad->handle, conf) == 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user