# HG changeset patch # User diego # Date 1249209270 0 # Node ID 24952f1a8979e67ca6aac87cf7129a5320f2a807 # Parent 878d449793e1be9de9998e3f2ebb237735f11a73 cosmetics: K&R coding style diff -r 878d449793e1 -r 24952f1a8979 celp_filters.c --- a/celp_filters.c Sun Aug 02 08:47:02 2009 +0000 +++ b/celp_filters.c Sun Aug 02 10:34:30 2009 +0000 @@ -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 @@ /* 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 @@ 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