First cut on chaining_example.c
[platform/upstream/libvorbis.git] / lib / window.h
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE.  *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
5  * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE.    *
6  * PLEASE READ THESE TERMS DISTRIBUTING.                            *
7  *                                                                  *
8  * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-1999             *
9  * by 1999 Monty <monty@xiph.org> and The XIPHOPHORUS Company       *
10  * http://www.xiph.org/                                             *
11  *                                                                  *
12  ********************************************************************
13
14  function: window functions
15  author: Monty <xiphmont@mit.edu>
16  modifications by: Monty
17  last modification date: Jul 27 1999
18
19  ********************************************************************/
20
21 #ifndef _V_WINDOW_
22 #define _V_WINDOW_
23
24 extern double *_vorbis_window(int window,int left,int right);
25
26 #endif