mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
opus: Update to upstream version 1.1.4
(cherry picked from commit dd8655aac9)
This commit is contained in:
parent
20d1a28341
commit
2bc0208b2c
2 changed files with 3 additions and 2 deletions
2
thirdparty/opus/silk/NLSF_stabilize.c
vendored
2
thirdparty/opus/silk/NLSF_stabilize.c
vendored
|
|
@ -130,7 +130,7 @@ void silk_NLSF_stabilize(
|
|||
|
||||
/* Keep delta_min distance between the NLSFs */
|
||||
for( i = 1; i < L; i++ )
|
||||
NLSF_Q15[i] = silk_max_int( NLSF_Q15[i], NLSF_Q15[i-1] + NDeltaMin_Q15[i] );
|
||||
NLSF_Q15[i] = silk_max_int( NLSF_Q15[i], silk_ADD_SAT16( NLSF_Q15[i-1], NDeltaMin_Q15[i] ) );
|
||||
|
||||
/* Last NLSF should be no higher than 1 - NDeltaMin[L] */
|
||||
NLSF_Q15[L-1] = silk_min_int( NLSF_Q15[L-1], (1<<15) - NDeltaMin_Q15[L] );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue