]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/acelp_filters.h
cosmetics: K&R style reformatting
[ffmpeg] / libavcodec / acelp_filters.h
index e1e3d685ae9d294542482fdd05c171cae5b15b53..b7f6a3abcbb68cf2d247d7cd1f1bcde1571b9b1e 100644 (file)
@@ -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 */