diff acelp_filters.h @ 9792:05ea4942df9b libavcodec

cosmetics: K&R style reformatting
author diego
date Thu, 04 Jun 2009 10:37:29 +0000
parents 611a21e4b01b
children cfb009484d2d
line wrap: on
line diff
--- a/acelp_filters.h	Wed Jun 03 23:48:28 2009 +0000
+++ b/acelp_filters.h	Thu Jun 04 10:37:29 2009 +0000
@@ -51,15 +51,9 @@
  * 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 @@
  *         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 */