diff dsputil.h @ 6139:5077d1562573 libavcodec

Make the Kaiser-Bessel window generator a common function Patch by Robert Swain, robert d swain a gmail d com
author andoma
date Sat, 12 Jan 2008 11:11:19 +0000
parents 558c1fd0ee72
children a35b838ab955
line wrap: on
line diff
--- a/dsputil.h	Fri Jan 11 21:34:05 2008 +0000
+++ b/dsputil.h	Sat Jan 12 11:11:19 2008 +0000
@@ -645,6 +645,12 @@
     FFTContext fft;
 } MDCTContext;
 
+/**
+ * Generate a Kaiser-Bessel Derived Window.
+ * @param   window  pointer to half window
+ */
+void ff_kbd_window_init(float *window);
+
 int ff_mdct_init(MDCTContext *s, int nbits, int inverse);
 void ff_imdct_calc(MDCTContext *s, FFTSample *output,
                 const FFTSample *input, FFTSample *tmp);