Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / libvorbis / vq / vqsplit.h
blob08c9e92836f4417f5f4f16df21bccf8a95249b7a
1 /********************************************************************
2 * *
3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7 * *
8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
9 * by the Xiph.Org Foundation http://www.xiph.org/ *
10 * *
11 ********************************************************************
13 function: build a VQ codebook decision tree
14 last mod: $Id: vqsplit.h 16037 2009-05-26 21:10:58Z xiphmont $
16 ********************************************************************/
18 #ifndef _VQSPL_H_
19 #define _VQSPL_H_
21 #include "codebook.h"
23 extern void vqsp_book(vqgen *v,codebook *b,long *quantlist);
24 extern int vqenc_entry(codebook *b,float *val);
25 extern int lp_split(float *pointlist,long totalpoints,
26 codebook *b,
27 long *entryindex,long entries,
28 long *pointindex,long points,
29 long *membership,long *reventry,
30 long depth, long *pointsofar);
32 #endif