~ubuntu-branches/ubuntu/hardy/speex/hardy-security

« back to all changes in this revision

Viewing changes to libspeex/quant_lsp.h

  • Committer: Bazaar Package Importer
  • Author(s): A. Maitland Bottoms
  • Date: 2005-02-26 22:33:22 UTC
  • Revision ID: james.westby@ubuntu.com-20050226223322-vc6sdoshrqjxfh9c
Tags: upstream-1.1.6
ImportĀ upstreamĀ versionĀ 1.1.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2002 Jean-Marc Valin 
 
2
   File: quant_lsp.h
 
3
   LSP vector quantization
 
4
 
 
5
   Redistribution and use in source and binary forms, with or without
 
6
   modification, are permitted provided that the following conditions
 
7
   are met:
 
8
   
 
9
   - Redistributions of source code must retain the above copyright
 
10
   notice, this list of conditions and the following disclaimer.
 
11
   
 
12
   - Redistributions in binary form must reproduce the above copyright
 
13
   notice, this list of conditions and the following disclaimer in the
 
14
   documentation and/or other materials provided with the distribution.
 
15
   
 
16
   - Neither the name of the Xiph.org Foundation nor the names of its
 
17
   contributors may be used to endorse or promote products derived from
 
18
   this software without specific prior written permission.
 
19
   
 
20
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
21
   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
22
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
23
   A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
 
24
   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 
25
   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
26
   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
27
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 
28
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 
29
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
30
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
31
*/
 
32
 
 
33
#ifndef QUANT_LSP_H
 
34
#define QUANT_LSP_H
 
35
 
 
36
#include <speex/speex_bits.h>
 
37
#include "misc.h"
 
38
 
 
39
#define MAX_LSP_SIZE 20
 
40
 
 
41
#define NB_CDBK_SIZE 64
 
42
#define NB_CDBK_SIZE_LOW1 64
 
43
#define NB_CDBK_SIZE_LOW2 64
 
44
#define NB_CDBK_SIZE_HIGH1 64
 
45
#define NB_CDBK_SIZE_HIGH2 64
 
46
 
 
47
/*Narrowband codebooks*/
 
48
extern const signed char cdbk_nb[];
 
49
extern const signed char cdbk_nb_low1[];
 
50
extern const signed char cdbk_nb_low2[];
 
51
extern const signed char cdbk_nb_high1[];
 
52
extern const signed char cdbk_nb_high2[];
 
53
 
 
54
/* Quantizes narrowband LSPs with 30 bits */
 
55
void lsp_quant_nb(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits);
 
56
 
 
57
/* Decodes quantized narrowband LSPs */
 
58
void lsp_unquant_nb(spx_lsp_t *lsp, int order, SpeexBits *bits);
 
59
 
 
60
/* Quantizes low bit-rate narrowband LSPs with 18 bits */
 
61
void lsp_quant_lbr(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits);
 
62
 
 
63
/* Decodes quantized low bit-rate narrowband LSPs */
 
64
void lsp_unquant_lbr(spx_lsp_t *lsp, int order, SpeexBits *bits);
 
65
 
 
66
/* Quantizes high-band LSPs with 12 bits */
 
67
void lsp_quant_high(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits);
 
68
 
 
69
/* Decodes high-band LSPs */
 
70
void lsp_unquant_high(spx_lsp_t *lsp, int order, SpeexBits *bits);
 
71
 
 
72
#ifdef EPIC_48K
 
73
/* Quantizes narrowband LSPs with 14 bits */
 
74
void lsp_quant_48k(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits);
 
75
 
 
76
/* Decodes quantized narrowband LSPs (14 bits) */
 
77
void lsp_unquant_48k(spx_lsp_t *lsp, int order, SpeexBits *bits);
 
78
#endif
 
79
 
 
80
 
 
81
#endif