From 954489244e0c15e417d359aa49fae13f666026dd Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 2 Aug 2009 10:34:30 +0000 Subject: [PATCH] cosmetics: K&R coding style Originally committed as revision 19561 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/celp_filters.c | 76 +++++++++++++++++---------------------- libavcodec/celp_filters.h | 46 +++++++++++------------- 2 files changed, 54 insertions(+), 68 deletions(-) diff --git a/libavcodec/celp_filters.c b/libavcodec/celp_filters.c index b2094a164a..6d235184dd 100644 --- a/libavcodec/celp_filters.c +++ b/libavcodec/celp_filters.c @@ -25,11 +25,10 @@ #include "avcodec.h" #include "celp_filters.h" -void ff_celp_convolve_circ( - int16_t* fc_out, - const int16_t* fc_in, - const int16_t* filter, - int len) +void ff_celp_convolve_circ(int16_t* fc_out, + const int16_t* fc_in, + const int16_t* filter, + int len) { int i, k; @@ -37,44 +36,39 @@ void ff_celp_convolve_circ( /* Since there are few pulses over an entire subframe (i.e. almost all fc_in[i] are zero) it is faster to loop over fc_in first. */ - for(i=0; i> 15; - for(k=i; k> 15; } } } -int ff_celp_lp_synthesis_filter( - int16_t *out, - const int16_t* filter_coeffs, - const int16_t* in, - int buffer_length, - int filter_length, - int stop_on_overflow, - int rounder) +int ff_celp_lp_synthesis_filter(int16_t *out, + const int16_t* filter_coeffs, + const int16_t* in, + int buffer_length, + int filter_length, + int stop_on_overflow, + int rounder) { int i,n; // Avoids a +1 in the inner loop. filter_length++; - for(n=0; n> 12) + in[n]; - if(sum + 0x8000 > 0xFFFFU) - { - if(stop_on_overflow) + if (sum + 0x8000 > 0xFFFFU) { + if (stop_on_overflow) return 1; sum = (sum >> 31) ^ 32767; } @@ -84,42 +78,38 @@ int ff_celp_lp_synthesis_filter( return 0; } -void ff_celp_lp_synthesis_filterf( - float *out, - const float* filter_coeffs, - const float* in, - int buffer_length, - int filter_length) +void ff_celp_lp_synthesis_filterf(float *out, + const float* filter_coeffs, + const float* in, + int buffer_length, + int filter_length) { int i,n; // Avoids a +1 in the inner loop. filter_length++; - for(n=0; n