From 4958f35a2ebc307049ff2104ffb944f5f457feb3 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 6 Dec 2013 12:22:40 +0000 Subject: dsputil: Move apply_window_int16 to ac3dsp The (optimized) functions are used nowhere else. --- libavcodec/ac3enc_float.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'libavcodec/ac3enc_float.c') diff --git a/libavcodec/ac3enc_float.c b/libavcodec/ac3enc_float.c index 86a5cff95f..71db68cbef 100644 --- a/libavcodec/ac3enc_float.c +++ b/libavcodec/ac3enc_float.c @@ -83,18 +83,6 @@ av_cold int ff_ac3_float_mdct_init(AC3EncodeContext *s) } -/* - * Apply KBD window to input samples prior to MDCT. - */ -static void apply_window(void *dsp, float *output, - const float *input, const float *window, - unsigned int len) -{ - AVFloatDSPContext *fdsp = dsp; - fdsp->vector_fmul(output, input, window, len); -} - - /* * Normalize the input samples. * Not needed for the floating-point encoder. -- cgit v1.2.3