lsp.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * LSP routines for ACELP-based codecs
  3. *
  4. * Copyright (c) 2008 Vladimir Voroshilov
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include <inttypes.h>
  23. #include "avcodec.h"
  24. #define FRAC_BITS 14
  25. #include "mathops.h"
  26. #include "lsp.h"
  27. #include "celp_math.h"
  28. void ff_acelp_reorder_lsf(int16_t* lsfq, int lsfq_min_distance, int lsfq_min, int lsfq_max, int lp_order)
  29. {
  30. int i, j;
  31. /* sort lsfq in ascending order. float bubble agorithm,
  32. O(n) if data already sorted, O(n^2) - otherwise */
  33. for(i=0; i<lp_order-1; i++)
  34. for(j=i; j>=0 && lsfq[j] > lsfq[j+1]; j--)
  35. FFSWAP(int16_t, lsfq[j], lsfq[j+1]);
  36. for(i=0; i<lp_order; i++)
  37. {
  38. lsfq[i] = FFMAX(lsfq[i], lsfq_min);
  39. lsfq_min = lsfq[i] + lsfq_min_distance;
  40. }
  41. lsfq[lp_order-1] = FFMIN(lsfq[lp_order-1], lsfq_max);//Is warning required ?
  42. }
  43. void ff_acelp_lsf2lsp(int16_t *lsp, const int16_t *lsf, int lp_order)
  44. {
  45. int i;
  46. /* Convert LSF to LSP, lsp=cos(lsf) */
  47. for(i=0; i<lp_order; i++)
  48. // 20861 = 2.0 / PI in (0.15)
  49. lsp[i] = ff_cos(lsf[i] * 20861 >> 15); // divide by PI and (0,13) -> (0,14)
  50. }
  51. /**
  52. * \brief decodes polynomial coefficients from LSP
  53. * \param f [out] decoded polynomial coefficients (-0x20000000 <= (3.22) <= 0x1fffffff)
  54. * \param lsp LSP coefficients (-0x8000 <= (0.15) <= 0x7fff)
  55. */
  56. static void lsp2poly(int* f, const int16_t* lsp, int lp_half_order)
  57. {
  58. int i, j;
  59. f[0] = 0x400000; // 1.0 in (3.22)
  60. f[1] = -lsp[0] << 8; // *2 and (0.15) -> (3.22)
  61. for(i=2; i<=lp_half_order; i++)
  62. {
  63. f[i] = f[i-2];
  64. for(j=i; j>1; j--)
  65. f[j] -= MULL(f[j-1], lsp[2*i-2], FRAC_BITS) - f[j-2];
  66. f[1] -= lsp[2*i-2] << 8;
  67. }
  68. }
  69. void ff_acelp_lsp2lpc(int16_t* lp, const int16_t* lsp, int lp_half_order)
  70. {
  71. int i;
  72. int f1[lp_half_order+1]; // (3.22)
  73. int f2[lp_half_order+1]; // (3.22)
  74. lsp2poly(f1, lsp , lp_half_order);
  75. lsp2poly(f2, lsp+1, lp_half_order);
  76. /* 3.2.6 of G.729, Equations 25 and 26*/
  77. lp[0] = 4096;
  78. for(i=1; i<lp_half_order+1; i++)
  79. {
  80. int ff1 = f1[i] + f1[i-1]; // (3.22)
  81. int ff2 = f2[i] - f2[i-1]; // (3.22)
  82. ff1 += 1 << 10; // for rounding
  83. lp[i] = (ff1 + ff2) >> 11; // divide by 2 and (3.22) -> (3.12)
  84. lp[(lp_half_order << 1) + 1 - i] = (ff1 - ff2) >> 11; // divide by 2 and (3.22) -> (3.12)
  85. }
  86. }
  87. void ff_acelp_lp_decode(int16_t* lp_1st, int16_t* lp_2nd, const int16_t* lsp_2nd, const int16_t* lsp_prev, int lp_order)
  88. {
  89. int16_t lsp_1st[lp_order]; // (0.15)
  90. int i;
  91. /* LSP values for first subframe (3.2.5 of G.729, Equation 24)*/
  92. for(i=0; i<lp_order; i++)
  93. #ifdef G729_BITEXACT
  94. lsp_1st[i] = (lsp_2nd[i] >> 1) + (lsp_prev[i] >> 1);
  95. #else
  96. lsp_1st[i] = (lsp_2nd[i] + lsp_prev[i]) >> 1;
  97. #endif
  98. ff_acelp_lsp2lpc(lp_1st, lsp_1st, lp_order >> 1);
  99. /* LSP values for second subframe (3.2.5 of G.729)*/
  100. ff_acelp_lsp2lpc(lp_2nd, lsp_2nd, lp_order >> 1);
  101. }