summaryrefslogtreecommitdiff
path: root/silk/resampler_private_down_FIR.c
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2018-03-24 02:16:15 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2018-03-27 15:13:27 -0400
commit7e3352ef517379c9ab42a2416b444882ff86aec6 (patch)
tree0d53c0120e5225689563dc4cf7cd1632df6cabbb /silk/resampler_private_down_FIR.c
parent69bcb28d3ddb20231580bd09e44d87a769dabcb7 (diff)
downloadopus-7e3352ef517379c9ab42a2416b444882ff86aec6.tar.gz
Converting some silk_assert()s into hardening celt_assert()s
Only converted the ones that are really sure (not signal-dependent) and that shouldn't add much run-time complexity
Diffstat (limited to 'silk/resampler_private_down_FIR.c')
-rw-r--r--silk/resampler_private_down_FIR.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/silk/resampler_private_down_FIR.c b/silk/resampler_private_down_FIR.c
index 783e42b3..3e8735a3 100644
--- a/silk/resampler_private_down_FIR.c
+++ b/silk/resampler_private_down_FIR.c
@@ -136,7 +136,7 @@ static OPUS_INLINE opus_int16 *silk_resampler_private_down_FIR_INTERPOL(
}
break;
default:
- silk_assert( 0 );
+ celt_assert( 0 );
}
return out;
}