dbf-halloween2015

annotate libs/vorbis/lsp.h @ 1:c3f5c32cb210

barfed all the libraries in the source tree to make porting easier
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 01 Nov 2015 00:36:56 +0200
parents
children
rev   line source
nuclear@1 1 /********************************************************************
nuclear@1 2 * *
nuclear@1 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
nuclear@1 4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
nuclear@1 5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
nuclear@1 6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
nuclear@1 7 * *
nuclear@1 8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2009 *
nuclear@1 9 * by the Xiph.Org Foundation http://www.xiph.org/ *
nuclear@1 10 * *
nuclear@1 11 ********************************************************************
nuclear@1 12
nuclear@1 13 function: LSP (also called LSF) conversion routines
nuclear@1 14 last mod: $Id: lsp.h 16227 2009-07-08 06:58:46Z xiphmont $
nuclear@1 15
nuclear@1 16 ********************************************************************/
nuclear@1 17
nuclear@1 18
nuclear@1 19 #ifndef _V_LSP_H_
nuclear@1 20 #define _V_LSP_H_
nuclear@1 21
nuclear@1 22 extern int vorbis_lpc_to_lsp(float *lpc,float *lsp,int m);
nuclear@1 23
nuclear@1 24 extern void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln,
nuclear@1 25 float *lsp,int m,
nuclear@1 26 float amp,float ampoffset);
nuclear@1 27
nuclear@1 28 #endif