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
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2014-06-20 00:16:07 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2014-06-20 00:16:07 +0400
commit62351fa834571f6c7ab40d7a80458aefa6d7f6ce (patch)
tree4c86b46c2d75151beee5a9b3009df39ec2ddf85e /silk/fixed
parentaa8c5f64d95d5ad0a36814ccee77a45467bda440 (diff)
Whitespace fixesexp_mips_opt
Diffstat (limited to 'silk/fixed')
-rw-r--r--silk/fixed/mips/noise_shape_analysis_FIX_mipsr1.h1
-rw-r--r--silk/fixed/mips/prefilter_FIX_mipsr1.h1
-rw-r--r--silk/fixed/mips/warped_autocorrelation_FIX_mipsr1.h7
-rw-r--r--silk/fixed/noise_shape_analysis_FIX.c1
-rw-r--r--silk/fixed/prefilter_FIX.c1
5 files changed, 2 insertions, 9 deletions
diff --git a/silk/fixed/mips/noise_shape_analysis_FIX_mipsr1.h b/silk/fixed/mips/noise_shape_analysis_FIX_mipsr1.h
index a498edb9..c30481e4 100644
--- a/silk/fixed/mips/noise_shape_analysis_FIX_mipsr1.h
+++ b/silk/fixed/mips/noise_shape_analysis_FIX_mipsr1.h
@@ -334,4 +334,3 @@ void silk_noise_shape_analysis_FIX(
}
RESTORE_STACK;
}
-
diff --git a/silk/fixed/mips/prefilter_FIX_mipsr1.h b/silk/fixed/mips/prefilter_FIX_mipsr1.h
index 42ac54c7..faf9b48d 100644
--- a/silk/fixed/mips/prefilter_FIX_mipsr1.h
+++ b/silk/fixed/mips/prefilter_FIX_mipsr1.h
@@ -134,7 +134,6 @@ static inline void silk_prefilt_FIX(
if( lag > 0 ) {
for( i = 0; i < length; i++ ) {
-
/* unrolled loop */
silk_assert( HARM_SHAPE_FIR_TAPS == 3 );
idx = lag + LTP_shp_buf_idx;
diff --git a/silk/fixed/mips/warped_autocorrelation_FIX_mipsr1.h b/silk/fixed/mips/warped_autocorrelation_FIX_mipsr1.h
index 85d75665..e803ef0f 100644
--- a/silk/fixed/mips/warped_autocorrelation_FIX_mipsr1.h
+++ b/silk/fixed/mips/warped_autocorrelation_FIX_mipsr1.h
@@ -60,7 +60,6 @@ void silk_warped_autocorrelation_FIX(
opus_int32 val;
val = 2 * QS - QC;
-
/* Order must be even */
silk_assert( ( order & 1 ) == 0 );
silk_assert( 2 * QS - QC >= 0 );
@@ -71,14 +70,13 @@ void silk_warped_autocorrelation_FIX(
tmp1_QS = silk_LSHIFT32( (opus_int32)input[ n ], QS );
start_1 = tmp1_QS;
tmp3_QS = silk_LSHIFT32( (opus_int32)input[ n+1], QS );
- start_2 = tmp3_QS;
+ start_2 = tmp3_QS;
tmp5_QS = silk_LSHIFT32( (opus_int32)input[ n+2], QS );
- start_3 = tmp5_QS;
+ start_3 = tmp5_QS;
tmp7_QS = silk_LSHIFT32( (opus_int32)input[ n+3], QS );
/* Loop over allpass sections */
for( i = 0; i < order; i += 2 ) {
-
/* Output of allpass section */
tmp2_QS = silk_SMLAWB( state_QS[ i ], state_QS[ i + 1 ] - tmp1_QS, warping_Q16 );
corr_QC[ i ] = __builtin_mips_madd( corr_QC[ i ], tmp1_QS, start_1);
@@ -165,4 +163,3 @@ void silk_warped_autocorrelation_FIX(
silk_assert( corr_QC[ 0 ] >= 0 ); /* If breaking, decrease QC*/
}
#endif /* __WARPED_AUTOCORRELATION_FIX_MIPSR1_H__ */
-
diff --git a/silk/fixed/noise_shape_analysis_FIX.c b/silk/fixed/noise_shape_analysis_FIX.c
index 29a41c78..22a89f75 100644
--- a/silk/fixed/noise_shape_analysis_FIX.c
+++ b/silk/fixed/noise_shape_analysis_FIX.c
@@ -449,4 +449,3 @@ void silk_noise_shape_analysis_FIX(
RESTORE_STACK;
}
#endif /* OVERRIDE_silk_noise_shape_analysis_FIX */
-
diff --git a/silk/fixed/prefilter_FIX.c b/silk/fixed/prefilter_FIX.c
index 9b4213cf..e1753be5 100644
--- a/silk/fixed/prefilter_FIX.c
+++ b/silk/fixed/prefilter_FIX.c
@@ -216,4 +216,3 @@ static OPUS_INLINE void silk_prefilt_FIX(
P->sLTP_shp_buf_idx = LTP_shp_buf_idx;
}
#endif /* OVERRIDE_silk_prefilt_FIX */
-