summaryrefslogtreecommitdiff
path: root/silk/silk_sort.c
diff options
context:
space:
mode:
Diffstat (limited to 'silk/silk_sort.c')
-rw-r--r--silk/silk_sort.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/silk/silk_sort.c b/silk/silk_sort.c
index 31a564d6..2c539caf 100644
--- a/silk/silk_sort.c
+++ b/silk/silk_sort.c
@@ -48,9 +48,9 @@ void silk_insertion_sort_increasing(
opus_int i, j;
/* Safety checks */
- SKP_assert( K > 0 );
- SKP_assert( L > 0 );
- SKP_assert( L >= K );
+ silk_assert( K > 0 );
+ silk_assert( L > 0 );
+ silk_assert( L >= K );
/* Write start indices in index vector */
for( i = 0; i < K; i++ ) {
@@ -94,9 +94,9 @@ void silk_insertion_sort_decreasing_int16(
opus_int value;
/* Safety checks */
- SKP_assert( K > 0 );
- SKP_assert( L > 0 );
- SKP_assert( L >= K );
+ silk_assert( K > 0 );
+ silk_assert( L > 0 );
+ silk_assert( L >= K );
/* Write start indices in index vector */
for( i = 0; i < K; i++ ) {
@@ -138,7 +138,7 @@ void silk_insertion_sort_increasing_all_values_int16(
opus_int i, j;
/* Safety checks */
- SKP_assert( L > 0 );
+ silk_assert( L > 0 );
/* Sort vector elements by value, increasing order */
for( i = 1; i < L; i++ ) {