diff celp_filters.h @ 10003:24952f1a8979 libavcodec

cosmetics: K&R coding style
author diego
date Sun, 02 Aug 2009 10:34:30 +0000
parents 2838045383c5
children d35904b4fe3f
line wrap: on
line diff
--- a/celp_filters.h	Sun Aug 02 08:47:02 2009 +0000
+++ b/celp_filters.h	Sun Aug 02 10:34:30 2009 +0000
@@ -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 @@
  *
  * 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 @@
  *
  * 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 @@
  *
  * 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 */