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

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'silk/interpolate.c')
-rw-r--r--silk/interpolate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/silk/interpolate.c b/silk/interpolate.c
index 0f40a935..216f7c70 100644
--- a/silk/interpolate.c
+++ b/silk/interpolate.c
@@ -46,6 +46,6 @@ void silk_interpolate(
silk_assert( ifact_Q2 <= 4 );
for( i = 0; i < d; i++ ) {
- xi[ i ] = ( opus_int16 )silk_ADD_RSHIFT( x0[ i ], silk_SMULBB( x1[ i ] - x0[ i ], ifact_Q2 ), 2 );
+ xi[ i ] = (opus_int16)silk_ADD_RSHIFT( x0[ i ], silk_SMULBB( x1[ i ] - x0[ i ], ifact_Q2 ), 2 );
}
}