From 51222d104165ff7e7914dcf3ee1abc9d2f70c9cb Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 4 Jun 2009 10:37:29 +0000 Subject: cosmetics: K&R style reformatting Originally committed as revision 19088 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/acelp_filters.h | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) (limited to 'libavcodec/acelp_filters.h') diff --git a/libavcodec/acelp_filters.h b/libavcodec/acelp_filters.h index e1e3d685ae..b7f6a3abcb 100644 --- a/libavcodec/acelp_filters.h +++ b/libavcodec/acelp_filters.h @@ -51,15 +51,9 @@ extern const int16_t ff_acelp_interp_filter[61]; * See ff_acelp_interp_filter for an example. * */ -void ff_acelp_interpolate( - int16_t* out, - const int16_t* in, - const int16_t* filter_coeffs, - int precision, - int frac_pos, - int filter_length, - int length); - +void ff_acelp_interpolate(int16_t* out, const int16_t* in, + const int16_t* filter_coeffs, int precision, + int frac_pos, int filter_length, int length); /** * high-pass filtering and upscaling (4.2.5 of G.729). @@ -84,10 +78,7 @@ void ff_acelp_interpolate( * fixed-point all coefficients are the same as in G.729. Thus this * routine can be used for the fixed-point AMR decoder, too. */ -void ff_acelp_high_pass_filter( - int16_t* out, - int hpf_f[2], - const int16_t* in, - int length); +void ff_acelp_high_pass_filter(int16_t* out, int hpf_f[2], + const int16_t* in, int length); #endif /* AVCODEC_ACELP_FILTERS_H */ -- cgit v1.2.3