Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Edzelf authored Jul 9, 2024
1 parent d5cfbaf commit 2399c65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/codecs/src/aac_decoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*
* Created on: 26.10.2018
* Updated on: 10.09.2021
* Updated on: 09-07-2024, ES: fixed Arduino IDE compiation error.
************************************************************************************/

#include "aac_decoder.h"
Expand Down Expand Up @@ -5294,7 +5295,7 @@ void GenerateNoiseVector(int *coef, int *last, int nVals)
int i;

for (i = 0; i < nVals; i++)
coef[i] = ((int32_t)Get32BitVal((uint32_t *)last)) >> 16;
coef[i] = ((int32_t)Get32BitVal((unsigned int*)last)) >> 16;
}

/***********************************************************************************************************************
Expand Down

0 comments on commit 2399c65

Please sign in to comment.