mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-01-07 13:22:24 +01:00
Avoid load of undefined SPATIALDEC_TREE_CONFIG enum value.
Bug: 186706541 Test: atest android.media.cts.DecoderTestAacFormat android.media.cts.DecoderTestXheAac android.media.cts.DecoderTestAacDrc Change-Id: Ibf8dbc1e61ff0453ac905efc88892d39c84fece6
This commit is contained in:
parent
5a83a8e5e1
commit
de5b6b5def
@ -1,7 +1,7 @@
|
||||
/* -----------------------------------------------------------------------------
|
||||
Software License for The Fraunhofer FDK AAC Codec Library for Android
|
||||
|
||||
© Copyright 1995 - 2019 Fraunhofer-Gesellschaft zur Förderung der angewandten
|
||||
© Copyright 1995 - 2020 Fraunhofer-Gesellschaft zur Förderung der angewandten
|
||||
Forschung e.V. All rights reserved.
|
||||
|
||||
1. INTRODUCTION
|
||||
@ -488,12 +488,17 @@ SACDEC_ERROR SpatialDecParseSpecificConfig(
|
||||
pSpatialSpecificConfig->freqRes =
|
||||
(SPATIALDEC_FREQ_RES)freqResTable_LD[bsFreqRes];
|
||||
|
||||
pSpatialSpecificConfig->treeConfig =
|
||||
(SPATIALDEC_TREE_CONFIG)FDKreadBits(bitstream, 4);
|
||||
{
|
||||
UINT treeConfig = FDKreadBits(bitstream, 4);
|
||||
|
||||
if (pSpatialSpecificConfig->treeConfig != SPATIALDEC_MODE_RSVD7) {
|
||||
err = MPS_UNSUPPORTED_CONFIG;
|
||||
goto bail;
|
||||
switch (treeConfig) {
|
||||
case SPATIALDEC_MODE_RSVD7:
|
||||
pSpatialSpecificConfig->treeConfig = (SPATIALDEC_TREE_CONFIG)treeConfig;
|
||||
break;
|
||||
default:
|
||||
err = MPS_UNSUPPORTED_CONFIG;
|
||||
goto bail;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user