summaryrefslogtreecommitdiff
path: root/silk/silk_shell_coder.c
diff options
context:
space:
mode:
Diffstat (limited to 'silk/silk_shell_coder.c')
-rw-r--r--silk/silk_shell_coder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/silk/silk_shell_coder.c b/silk/silk_shell_coder.c
index 918e8170..c96131a5 100644
--- a/silk/silk_shell_coder.c
+++ b/silk/silk_shell_coder.c
@@ -83,7 +83,7 @@ void silk_shell_encoder(
opus_int pulses1[ 8 ], pulses2[ 4 ], pulses3[ 2 ], pulses4[ 1 ];
/* this function operates on one shell code frame of 16 pulses */
- SKP_assert( SHELL_CODEC_FRAME_LENGTH == 16 );
+ silk_assert( SHELL_CODEC_FRAME_LENGTH == 16 );
/* tree representation per pulse-subframe */
combine_pulses( pulses1, pulses0, 8 );
@@ -125,7 +125,7 @@ void silk_shell_decoder(
opus_int pulses3[ 2 ], pulses2[ 4 ], pulses1[ 8 ];
/* this function operates on one shell code frame of 16 pulses */
- SKP_assert( SHELL_CODEC_FRAME_LENGTH == 16 );
+ silk_assert( SHELL_CODEC_FRAME_LENGTH == 16 );
decode_split( &pulses3[ 0 ], &pulses3[ 1 ], psRangeDec, pulses4, silk_shell_code_table3 );