Mercurial > libavcodec.hg
annotate qcelp_lsp.c @ 9843:893b27768692 libavcodec
cosmetics: Add brackets between if/else
author | faust3 |
---|---|
date | Fri, 12 Jun 2009 15:48:41 +0000 |
parents | 36a5caff8540 |
children | 18dab2b47db7 |
rev | line source |
---|---|
8240 | 1 /* |
2 * QCELP decoder | |
3 * Copyright (c) 2007 Reynaldo H. Verdejo Pinochet | |
4 * | |
5 * This file is part of FFmpeg. | |
6 * | |
7 * FFmpeg is free software; you can redistribute it and/or | |
8 * modify it under the terms of the GNU Lesser General Public | |
9 * License as published by the Free Software Foundation; either | |
10 * version 2.1 of the License, or (at your option) any later version. | |
11 * | |
12 * FFmpeg is distributed in the hope that it will be useful, | |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
18 * License along with FFmpeg; if not, write to the Free Software | |
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
20 */ | |
21 | |
22 /** | |
8718
e9d9d946f213
Use full internal pathname in doxygen @file directives.
diego
parents:
8258
diff
changeset
|
23 * @file libavcodec/qcelp_lsp.c |
8240 | 24 * QCELP decoder |
25 * @author Reynaldo H. Verdejo Pinochet | |
8258
b41482ad0ef5
COSMETICS, add missing remarks crediting Ben and Kenan
reynaldo
parents:
8240
diff
changeset
|
26 * @remark FFmpeg merging spearheaded by Kenan Gillet |
b41482ad0ef5
COSMETICS, add missing remarks crediting Ben and Kenan
reynaldo
parents:
8240
diff
changeset
|
27 * @remark Development mentored by Benjamin Larson |
8240 | 28 */ |
29 | |
30 #include "libavutil/mathematics.h" | |
31 | |
32 /** | |
33 * Computes the Pa / (1 + z(-1)) or Qa / (1 - z(-1)) coefficients | |
34 * needed for LSP to LPC conversion. | |
35 * We only need to calculate the 6 first elements of the polynomial. | |
36 * | |
37 * @param lspf line spectral pair frequencies | |
38 * @param f [out] polynomial input/output as a vector | |
39 * | |
40 * TIA/EIA/IS-733 2.4.3.3.5-1/2 | |
41 */ | |
9122
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
42 static void lsp2polyf(const double *lspf, double *f, int lp_half_order) |
8240 | 43 { |
44 int i, j; | |
45 | |
46 f[0] = 1.0; | |
9122
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
47 f[1] = -2 * lspf[0]; |
8240 | 48 lspf -= 2; |
49 for(i=2; i<=lp_half_order; i++) | |
50 { | |
9122
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
51 double val = -2 * lspf[2*i]; |
8240 | 52 f[i] = val * f[i-1] + 2*f[i-2]; |
53 for(j=i-1; j>1; j--) | |
54 f[j] += f[j-1] * val + f[j-2]; | |
55 f[1] += val; | |
56 } | |
57 } | |
58 | |
59 /** | |
9122
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
60 * Reconstructs LPC coefficients from the line spectral pair frequencies. |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
61 * |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
62 * @param lspf line spectral pair frequencies |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
63 * @param lpc linear predictive coding coefficients |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
64 */ |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
65 void ff_celp_lspf2lpc(const double *lspf, float *lpc) |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
66 { |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
67 double pa[6], qa[6]; |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
68 int i; |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
69 |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
70 lsp2polyf(lspf, pa, 5); |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
71 lsp2polyf(lspf + 1, qa, 5); |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
72 |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
73 for (i=4; i>=0; i--) |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
74 { |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
75 double paf = pa[i+1] + pa[i]; |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
76 double qaf = qa[i+1] - qa[i]; |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
77 |
9123
36a5caff8540
Part 2 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9122
diff
changeset
|
78 lpc[i ] = 0.5*(paf+qaf); |
36a5caff8540
Part 2 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9122
diff
changeset
|
79 lpc[9-i] = 0.5*(paf-qaf); |
9122
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
80 } |
0613e9b5514c
Part 1 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpc
reynaldo
parents:
9017
diff
changeset
|
81 } |