Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/acelp_filters.c')
-rw-r--r--libavcodec/acelp_filters.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libavcodec/acelp_filters.c b/libavcodec/acelp_filters.c
index a75d2291cd..78937050c3 100644
--- a/libavcodec/acelp_filters.c
+++ b/libavcodec/acelp_filters.c
@@ -141,17 +141,6 @@ int ff_acelp_lp_synthesis_filter(
return 0;
}
-void ff_acelp_weighted_filter(
- int16_t *out,
- const int16_t* in,
- const int16_t *weight_pow,
- int filter_length)
-{
- int n;
- for(n=0; n<filter_length; n++)
- out[n] = (in[n] * weight_pow[n] + 0x4000) >> 15; /* (3.12) = (0.15) * (3.12) with rounding */
-}
-
void ff_acelp_high_pass_filter(
int16_t* out,
int hpf_f[2],