Mercurial > hg > sv-dependency-builds
annotate src/libvorbis-1.3.3/lib/window.h @ 17:59685d5285b1
Merge
author | Chris Cannam <chris.cannam@eecs.qmul.ac.uk> |
---|---|
date | Mon, 25 Mar 2013 12:24:36 +0000 |
parents | 05aa0afa9217 |
children |
rev | line source |
---|---|
Chris@1 | 1 /******************************************************************** |
Chris@1 | 2 * * |
Chris@1 | 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * |
Chris@1 | 4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * |
Chris@1 | 5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * |
Chris@1 | 6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * |
Chris@1 | 7 * * |
Chris@1 | 8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 * |
Chris@1 | 9 * by the Xiph.Org Foundation http://www.xiph.org/ * |
Chris@1 | 10 * * |
Chris@1 | 11 ******************************************************************** |
Chris@1 | 12 |
Chris@1 | 13 function: window functions |
Chris@1 | 14 last mod: $Id: window.h 13293 2007-07-24 00:09:47Z xiphmont $ |
Chris@1 | 15 |
Chris@1 | 16 ********************************************************************/ |
Chris@1 | 17 |
Chris@1 | 18 #ifndef _V_WINDOW_ |
Chris@1 | 19 #define _V_WINDOW_ |
Chris@1 | 20 |
Chris@1 | 21 extern float *_vorbis_window_get(int n); |
Chris@1 | 22 extern void _vorbis_apply_window(float *d,int *winno,long *blocksizes, |
Chris@1 | 23 int lW,int W,int nW); |
Chris@1 | 24 |
Chris@1 | 25 |
Chris@1 | 26 #endif |