0
0
Fork 0
mirror of https://github.com/etlegacy/etlegacy-libs.git synced 2025-04-11 17:00:58 +00:00
etlegacy-libs/vorbis/lib/window.h

26 lines
1.1 KiB
C
Raw Permalink Normal View History

2013-01-24 15:44:19 +00:00
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis 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 OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *
2021-09-22 09:18:21 +00:00
* by the Xiph.Org Foundation https://xiph.org/ *
2013-01-24 15:44:19 +00:00
* *
********************************************************************
function: window functions
********************************************************************/
#ifndef _V_WINDOW_
#define _V_WINDOW_
2015-01-24 18:58:23 +00:00
extern const float *_vorbis_window_get(int n);
2013-01-24 15:44:19 +00:00
extern void _vorbis_apply_window(float *d,int *winno,long *blocksizes,
int lW,int W,int nW);
#endif