Hardening asserts for SILK float
This commit is contained in:
parent
7e3352ef51
commit
e69fc1995e
11 changed files with 32 additions and 32 deletions
|
@ -47,9 +47,9 @@ void silk_insertion_sort_decreasing_FLP(
|
|||
opus_int i, j;
|
||||
|
||||
/* Safety checks */
|
||||
silk_assert( K > 0 );
|
||||
silk_assert( L > 0 );
|
||||
silk_assert( L >= K );
|
||||
celt_assert( K > 0 );
|
||||
celt_assert( L > 0 );
|
||||
celt_assert( L >= K );
|
||||
|
||||
/* Write start indices in index vector */
|
||||
for( i = 0; i < K; i++ ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue