diff options
Diffstat (limited to '')
-rw-r--r-- | src/mp4_decode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mp4_decode.c b/src/mp4_decode.c index 4a0e168b8..cf7fb6137 100644 --- a/src/mp4_decode.c +++ b/src/mp4_decode.c @@ -133,7 +133,8 @@ int mp4_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc) { config = faacDecGetCurrentConfiguration(decoder); config->outputFormat = FAAD_FMT_16BIT; config->downMatrix = 1; - config->dontUpSampleImplicitSBR = 1; + /*comment this out, its not in faad2 2.0 rc2*/ + /*config->dontUpSampleImplicitSBR = 0;*/ faacDecSetConfiguration(decoder,config); af->bits = 16; |