annotate src/libvorbis-1.3.3/lib/lsp.h @ 78:7ea7031c0e5c
pa_catalina
Apply patch from Tim Bunnell on PortAudio mailing list (2016-12-28, Mac 10.11 deprecation warning)
author |
Chris Cannam |
date |
Wed, 30 Oct 2019 11:28:45 +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
|