diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-03-21 03:45:58 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-03-21 03:45:58 +0000 |
commit | 445d807b9cdd32619bee42339315b7e83d18eaca (patch) | |
tree | 5c6a60ca918622eac62d51c74710b323fcd4f525 /src/mp4_decode.c | |
parent | 6436b0ac8a59914b9edf8987274ef66f69637f36 (diff) | |
download | mpd-445d807b9cdd32619bee42339315b7e83d18eaca.tar.gz mpd-445d807b9cdd32619bee42339315b7e83d18eaca.tar.xz mpd-445d807b9cdd32619bee42339315b7e83d18eaca.zip |
streamline ls.c code
remove dontUpSampleSBR, not in faad2 rc3
git-svn-id: https://svn.musicpd.org/mpd/trunk@330 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/mp4_decode.c')
-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; |