summaryrefslogtreecommitdiff
path: root/libavcodec/acelp_filters.h
diff options
context:
space:
mode:
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 */