michael@0: /******************************************************************** michael@0: * * michael@0: * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * michael@0: * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * michael@0: * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * michael@0: * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * michael@0: * * michael@0: * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 * michael@0: * by the Xiph.Org Foundation http://www.xiph.org/ * michael@0: * * michael@0: ******************************************************************** michael@0: michael@0: function: window functions michael@0: last mod: $Id: window.h 19028 2013-12-02 23:23:39Z tterribe $ michael@0: michael@0: ********************************************************************/ michael@0: michael@0: #ifndef _V_WINDOW_ michael@0: #define _V_WINDOW_ michael@0: michael@0: extern const float *_vorbis_window_get(int n); michael@0: extern void _vorbis_apply_window(float *d,int *winno,long *blocksizes, michael@0: int lW,int W,int nW); michael@0: michael@0: michael@0: #endif