]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/ac3enc_fixed.c
avformat/mov: check avio_read() return in mov_read_dref()
[ffmpeg] / libavcodec / ac3enc_fixed.c
index b1f9c213852ad0602be20afa7094802ff0c0d799..5194d42aee70c2f21170b306044d97b69bafc5a5 100644 (file)
@@ -70,17 +70,6 @@ av_cold int AC3_NAME(mdct_init)(AC3EncodeContext *s)
 }
 
 
-/*
- * Apply KBD window to input samples prior to MDCT.
- */
-static void apply_window(void *dsp, int16_t *output, const int16_t *input,
-                         const int16_t *window, unsigned int len)
-{
-    DSPContext *dsp0 = dsp;
-    dsp0->apply_window_int16(output, input, window, len);
-}
-
-
 /*
  * Normalize the input samples to use the maximum available precision.
  * This assumes signed 16-bit input samples.