summaryrefslogtreecommitdiff
path: root/libavcodec/acelp_filters.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-06-04 10:37:29 +0000
committerDiego Biurrun <diego@biurrun.de>2009-06-04 10:37:29 +0000
commit51222d104165ff7e7914dcf3ee1abc9d2f70c9cb (patch)
tree79ff28172615d4e2738da11e54d972493770d5c8 /libavcodec/acelp_filters.h
parent0e848977cedb7345398f583d5cca5e81a4d9e45a (diff)
cosmetics: K&R style reformatting
Originally committed as revision 19088 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/acelp_filters.h')
-rw-r--r--libavcodec/acelp_filters.h19
1 files changed, 5 insertions, 14 deletions
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 */