All new LSP->freq envelope curve computation code.
[platform/upstream/libvorbis.git] / lib / lsp.h
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE.  *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
5  * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE.    *
6  * PLEASE READ THESE TERMS DISTRIBUTING.                            *
7  *                                                                  *
8  * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-2000             *
9  * by Monty <monty@xiph.org> and The XIPHOPHORUS Company            *
10  * http://www.xiph.org/                                             *
11  *                                                                  *
12  ********************************************************************
13
14   function: LSP (also called LSF) conversion routines
15   last mod: $Id: lsp.h,v 1.4 2000/08/19 11:46:28 xiphmont Exp $
16
17  ********************************************************************/
18
19
20 #ifndef _V_LSP_H_
21 #define _V_LSP_H_
22
23 extern void vorbis_lpc_to_lsp(double *lpc,double *lsp,int m);
24 extern void vorbis_lsp_to_curve(double *curve,int n,
25                                 double *lsp,int m,double amp,
26                                 double *w);
27   
28 #endif