summaryrefslogtreecommitdiff
path: root/libavcodec/celp_filters.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/celp_filters.h')
-rw-r--r--libavcodec/celp_filters.h46
1 files changed, 21 insertions, 25 deletions
diff --git a/libavcodec/celp_filters.h b/libavcodec/celp_filters.h
index 4a9eb1c49b..ccdffe8483 100644
--- a/libavcodec/celp_filters.h
+++ b/libavcodec/celp_filters.h
@@ -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 @@ void ff_celp_convolve_circ(
*
* 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 @@ int ff_celp_lp_synthesis_filter(
*
* 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 @@ void ff_celp_lp_synthesis_filterf(
*
* 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 */