diff options
author | Colin McQuillan <m.niloc@googlemail.com> | 2009-08-03 08:37:02 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2009-08-03 08:37:02 +0000 |
commit | 33ae681f5ca9fa9aae82081dd6a6edbe2509f983 (patch) | |
tree | 091f20de691a3115540d9c6582fb84de0d153b5b /libavcodec/lsp.c | |
parent | 1e1e02eacd948572108c78c15d5b3e3bcd94947c (diff) | |
download | ffmpeg-33ae681f5ca9fa9aae82081dd6a6edbe2509f983.tar.gz |
Expose QCELP's floating-point LSP-to-LPC function
qcelp_lsp exported a single function, ff_acelp_lspd2lpc, which was not
specific to qcelp. It can be kept with its fixed-point version
ff_acelp_lsp2lpc in lpc.c.
Patch by Colin McQuillan ( m.niloc googlemail com )
Originally committed as revision 19571 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lsp.c')
-rw-r--r-- | libavcodec/lsp.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/libavcodec/lsp.c b/libavcodec/lsp.c index f57f621350..5b5fc1c50e 100644 --- a/libavcodec/lsp.c +++ b/libavcodec/lsp.c @@ -1,6 +1,7 @@ /* * LSP routines for ACELP-based codecs * + * Copyright (c) 2007 Reynaldo H. Verdejo Pinochet (QCELP decoder) * Copyright (c) 2008 Vladimir Voroshilov * * This file is part of FFmpeg. @@ -118,3 +119,48 @@ void ff_acelp_lp_decode(int16_t* lp_1st, int16_t* lp_2nd, const int16_t* lsp_2nd /* LSP values for second subframe (3.2.5 of G.729)*/ ff_acelp_lsp2lpc(lp_2nd, lsp_2nd, lp_order >> 1); } + +/** + * Computes the Pa / (1 + z(-1)) or Qa / (1 - z(-1)) coefficients + * needed for LSP to LPC conversion. + * We only need to calculate the 6 first elements of the polynomial. + * + * @param lsp line spectral pairs in cosine domain + * @param f [out] polynomial input/output as a vector + * + * TIA/EIA/IS-733 2.4.3.3.5-1/2 + */ +static void lsp2polyf(const double *lsp, double *f, int lp_half_order) +{ + int i, j; + + f[0] = 1.0; + f[1] = -2 * lsp[0]; + lsp -= 2; + for(i=2; i<=lp_half_order; i++) + { + double val = -2 * lsp[2*i]; + f[i] = val * f[i-1] + 2*f[i-2]; + for(j=i-1; j>1; j--) + f[j] += f[j-1] * val + f[j-2]; + f[1] += val; + } +} + +void ff_acelp_lspd2lpc(const double *lsp, float *lpc) +{ + double pa[6], qa[6]; + int i; + + lsp2polyf(lsp, pa, 5); + lsp2polyf(lsp + 1, qa, 5); + + for (i=4; i>=0; i--) + { + double paf = pa[i+1] + pa[i]; + double qaf = qa[i+1] - qa[i]; + + lpc[i ] = 0.5*(paf+qaf); + lpc[9-i] = 0.5*(paf-qaf); + } +} |