Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/silk
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2018-03-27 10:54:21 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2018-03-27 22:13:28 +0300
commitd01199be4cf3257478bd04ed028e3c589d306215 (patch)
tree8ffd1ef77e970e38659893caca2eb815ef604021 /silk
parentf0cea0d23767cd1dab1dd902622aeb7efa53b669 (diff)
two more asserts I forgot
Diffstat (limited to 'silk')
-rw-r--r--silk/float/burg_modified_FLP.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/silk/float/burg_modified_FLP.c b/silk/float/burg_modified_FLP.c
index ea5dc25a..756b76a3 100644
--- a/silk/float/burg_modified_FLP.c
+++ b/silk/float/burg_modified_FLP.c
@@ -52,7 +52,7 @@ silk_float silk_burg_modified_FLP( /* O returns residual energy
double CAf[ SILK_MAX_ORDER_LPC + 1 ], CAb[ SILK_MAX_ORDER_LPC + 1 ];
double Af[ SILK_MAX_ORDER_LPC ];
- silk_assert( subfr_length * nb_subfr <= MAX_FRAME_SIZE );
+ celt_assert( subfr_length * nb_subfr <= MAX_FRAME_SIZE );
/* Compute autocorrelations, added over subframes */
C0 = silk_energy_FLP( x, nb_subfr * subfr_length );