Mercurial > hg > sv-dependency-builds
annotate src/libvorbis-1.3.3/lib/lsp.h @ 84:08ae793730bd
Add null config files
author | Chris Cannam |
---|---|
date | Mon, 02 Mar 2020 14:03:47 +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-2009 * |
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: LSP (also called LSF) conversion routines |
Chris@1 | 14 last mod: $Id: lsp.h 16227 2009-07-08 06:58:46Z xiphmont $ |
Chris@1 | 15 |
Chris@1 | 16 ********************************************************************/ |
Chris@1 | 17 |
Chris@1 | 18 |
Chris@1 | 19 #ifndef _V_LSP_H_ |
Chris@1 | 20 #define _V_LSP_H_ |
Chris@1 | 21 |
Chris@1 | 22 extern int vorbis_lpc_to_lsp(float *lpc,float *lsp,int m); |
Chris@1 | 23 |
Chris@1 | 24 extern void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln, |
Chris@1 | 25 float *lsp,int m, |
Chris@1 | 26 float amp,float ampoffset); |
Chris@1 | 27 |
Chris@1 | 28 #endif |