michael@0: /******************************************************************** michael@0: * * michael@0: * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. * michael@0: * * 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 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 * michael@0: * BY THE Xiph.Org FOUNDATION http://www.xiph.org/ * michael@0: * * michael@0: ******************************************************************** michael@0: michael@0: function: window functions michael@0: michael@0: ********************************************************************/ michael@0: michael@0: #ifndef _V_WINDOW_ michael@0: #define _V_WINDOW_ michael@0: michael@0: extern const void *_vorbis_window(int type,int left); michael@0: extern void _vorbis_apply_window(ogg_int32_t *d,const void *window[2], michael@0: long *blocksizes, michael@0: int lW,int W,int nW); michael@0: michael@0: michael@0: #endif