diff options
author | Jean-Michel Trivi <jmtrivi@google.com> | 2018-12-28 15:24:12 -0800 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-12-28 15:24:12 -0800 |
commit | f1010806752315c7b7ddba3a537a434f6001783a (patch) | |
tree | 61e6dde6f3dbad2bb8e16db0006acad7a8bef96e /libMpegTPDec/src/tpdec_asc.cpp | |
parent | 3f809494b123bd66e474690e3c9611c2b71fa0e8 (diff) | |
parent | d93de565ac84079f5774a13e61cd31b46b242575 (diff) | |
download | fdk-aac-f1010806752315c7b7ddba3a537a434f6001783a.tar.gz fdk-aac-f1010806752315c7b7ddba3a537a434f6001783a.tar.bz2 fdk-aac-f1010806752315c7b7ddba3a537a434f6001783a.zip |
Merge "Setup lowdelay SBR LFE element via SBR callback" am: 3e0a7a40c5 am: 7e454bd098
am: d93de565ac
Change-Id: I3e3843d48687cefd44a736c989561c81ff1eb723
Diffstat (limited to 'libMpegTPDec/src/tpdec_asc.cpp')
-rw-r--r-- | libMpegTPDec/src/tpdec_asc.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libMpegTPDec/src/tpdec_asc.cpp b/libMpegTPDec/src/tpdec_asc.cpp index 6260cad..3b61eef 100644 --- a/libMpegTPDec/src/tpdec_asc.cpp +++ b/libMpegTPDec/src/tpdec_asc.cpp @@ -1300,7 +1300,11 @@ static INT ld_sbr_header(CSAudioSpecificConfig *asc, const INT dsFactor, /* read elements of the passed channel_configuration until there is ID_NONE */ while ((element = channel_configuration_array[channelConfiguration][j]) != ID_NONE) { - if (element == ID_SCE || element == ID_CPE) { + /* Setup LFE element for upsampling too. This is essential especially for + * channel configs where the LFE element is not at the last position for + * example in channel config 13 or 14. It leads to memory leaks if the setup + * of the LFE element would be done later in the core. */ + if (element == ID_SCE || element == ID_CPE || element == ID_LFE) { error |= cb->cbSbr( cb->cbSbrData, hBs, asc->m_samplingFrequency / dsFactor, asc->m_extensionSamplingFrequency / dsFactor, |