diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2009-12-16 17:15:57 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2009-12-16 17:15:57 +0000 |
commit | 5c910fcad8de393c38c696282fedbc1bbc75e5de (patch) | |
tree | b993f9b52cebdbd2cef0048b4cf0718b98d3eb36 /libavcodec/celp_filters.c | |
parent | 6ef607c2d58089a54752d06633fcb1cc078402e5 (diff) | |
download | ffmpeg-5c910fcad8de393c38c696282fedbc1bbc75e5de.tar.gz |
Cosmetics: make celp_filters.* formatting more consistent with the rest of
FFmpeg
Originally committed as revision 20885 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/celp_filters.c')
-rw-r--r-- | libavcodec/celp_filters.c | 27 |
1 files changed, 9 insertions, 18 deletions
diff --git a/libavcodec/celp_filters.c b/libavcodec/celp_filters.c index 7f23acae00..e828e0611c 100644 --- a/libavcodec/celp_filters.c +++ b/libavcodec/celp_filters.c @@ -25,10 +25,8 @@ #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; @@ -57,12 +55,9 @@ void ff_celp_circ_addf(float *out, const float *in, out[k] = in[k] + fac * lagged[ k - lag]; } -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 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; @@ -85,10 +80,8 @@ int ff_celp_lp_synthesis_filter(int16_t *out, return 0; } -void ff_celp_lp_synthesis_filterf(float *out, - const float* filter_coeffs, - const float* in, - int buffer_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; @@ -195,10 +188,8 @@ void ff_celp_lp_synthesis_filterf(float *out, } } -void ff_celp_lp_zero_synthesis_filterf(float *out, - const float* filter_coeffs, - const float* in, - int buffer_length, +void ff_celp_lp_zero_synthesis_filterf(float *out, const float *filter_coeffs, + const float *in, int buffer_length, int filter_length) { int i,n; |