diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-08-02 10:34:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-08-02 10:34:30 +0000 |
commit | 954489244e0c15e417d359aa49fae13f666026dd (patch) | |
tree | 1d19a452a48068c6b6240a38f8deffd9dfbdc3e3 /libavcodec/celp_filters.h | |
parent | 6b620372a8cbfee82ee21737f6112da7af34ef70 (diff) | |
download | ffmpeg-954489244e0c15e417d359aa49fae13f666026dd.tar.gz |
cosmetics: K&R coding style
Originally committed as revision 19561 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/celp_filters.h')
-rw-r--r-- | libavcodec/celp_filters.h | 46 |
1 files changed, 21 insertions, 25 deletions
diff --git a/libavcodec/celp_filters.h b/libavcodec/celp_filters.h index 4a9eb1c49b..ccdffe8483 100644 --- a/libavcodec/celp_filters.h +++ b/libavcodec/celp_filters.h @@ -36,11 +36,10 @@ * * \note fc_in and fc_out should not overlap! */ -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); /** * LP synthesis filter. @@ -60,14 +59,13 @@ void ff_celp_convolve_circ( * * Routine applies 1/A(z) filter to given speech data. */ -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); /** * LP synthesis filter. @@ -84,12 +82,11 @@ int ff_celp_lp_synthesis_filter( * * Routine applies 1/A(z) filter to given speech data. */ -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); /** * LP zero synthesis filter. @@ -106,11 +103,10 @@ void ff_celp_lp_synthesis_filterf( * * Routine applies A(z) filter to given speech data. */ -void ff_celp_lp_zero_synthesis_filterf( - float *out, - const float* filter_coeffs, - const float* in, - int buffer_length, - int filter_length); +void ff_celp_lp_zero_synthesis_filterf(float *out, + const float* filter_coeffs, + const float* in, + int buffer_length, + int filter_length); #endif /* AVCODEC_CELP_FILTERS_H */ |