[xiph-commits] r17929 - trunk/ghost/monty/chirp
xiphmont at svn.xiph.org
xiphmont at svn.xiph.org
Thu Apr 21 03:09:54 PDT 2011
Author: xiphmont
Date: 2011-04-21 03:09:54 -0700 (Thu, 21 Apr 2011)
New Revision: 17929
Added:
trunk/ghost/monty/chirp/window.h
Log:
add missing window header
Added: trunk/ghost/monty/chirp/window.h
===================================================================
--- trunk/ghost/monty/chirp/window.h (rev 0)
+++ trunk/ghost/monty/chirp/window.h 2011-04-21 10:09:54 UTC (rev 17929)
@@ -0,0 +1,28 @@
+/********************************************************************
+ * *
+ * THIS FILE IS PART OF THE OggGhost SOFTWARE CODEC SOURCE CODE. *
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
+ * *
+ * THE OggGhost SOURCE CODE IS (C) COPYRIGHT 2007-2011 *
+ * by the Xiph.Org Foundation http://www.xiph.org/ *
+ * *
+ ********************************************************************
+
+ function: window functions for research code
+ last mod: $Id$
+
+ ********************************************************************/
+
+typedef struct {
+ void (*rectangle)(float *,int);
+ void (*hanning)(float *,int);
+ void (*vorbis)(float *,int);
+ void (*blackman_harris)(float *,int);
+ void (*tgauss_deep)(float *,int);
+ void (*dolphcheb)(float *,int);
+ void (*maxwell1)(float *,int);
+} window_bundle;
+
+extern window_bundle window_functions;
More information about the commits
mailing list