]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/ac3enc_float.c
dxva2_h264: add a workaround for old Intel GPUs
[ffmpeg] / libavcodec / ac3enc_float.c
index 86a5cff95fcff7a2eecfb20e83ee8481ef95030c..71db68cbef7daa118623b59d022c7e0e51956838 100644 (file)
@@ -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.