You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
2.8KB

  1. /**
  2. * LPC utility code
  3. * Copyright (c) 2006 Justin Ruggles <justin.ruggles@gmail.com>
  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. #ifndef AVCODEC_LPC_H
  22. #define AVCODEC_LPC_H
  23. #include <stdint.h>
  24. #include "dsputil.h"
  25. #define ORDER_METHOD_EST 0
  26. #define ORDER_METHOD_2LEVEL 1
  27. #define ORDER_METHOD_4LEVEL 2
  28. #define ORDER_METHOD_8LEVEL 3
  29. #define ORDER_METHOD_SEARCH 4
  30. #define ORDER_METHOD_LOG 5
  31. #define MIN_LPC_ORDER 1
  32. #define MAX_LPC_ORDER 32
  33. /**
  34. * Calculate LPC coefficients for multiple orders
  35. */
  36. int ff_lpc_calc_coefs(DSPContext *s,
  37. const int32_t *samples, int blocksize, int min_order,
  38. int max_order, int precision,
  39. int32_t coefs[][MAX_LPC_ORDER], int *shift, int use_lpc,
  40. int omethod, int max_shift, int zero_shift);
  41. void ff_lpc_compute_autocorr(const int32_t *data, int len, int lag,
  42. double *autoc);
  43. #ifdef LPC_USE_DOUBLE
  44. #define LPC_TYPE double
  45. #else
  46. #define LPC_TYPE float
  47. #endif
  48. /**
  49. * Levinson-Durbin recursion.
  50. * Produces LPC coefficients from autocorrelation data.
  51. */
  52. static inline int compute_lpc_coefs(const LPC_TYPE *autoc, int max_order,
  53. LPC_TYPE *lpc, int lpc_stride, int fail,
  54. int normalize)
  55. {
  56. int i, j;
  57. LPC_TYPE err;
  58. LPC_TYPE *lpc_last = lpc;
  59. if (normalize)
  60. err = *autoc++;
  61. if (fail && (autoc[max_order - 1] == 0 || err <= 0))
  62. return -1;
  63. for(i=0; i<max_order; i++) {
  64. LPC_TYPE r = -autoc[i];
  65. if (normalize) {
  66. for(j=0; j<i; j++)
  67. r -= lpc_last[j] * autoc[i-j-1];
  68. r /= err;
  69. err *= 1.0 - (r * r);
  70. }
  71. lpc[i] = r;
  72. for(j=0; j < (i+1)>>1; j++) {
  73. LPC_TYPE f = lpc_last[ j];
  74. LPC_TYPE b = lpc_last[i-1-j];
  75. lpc[ j] = f + r * b;
  76. lpc[i-1-j] = b + r * f;
  77. }
  78. if (fail && err < 0)
  79. return -1;
  80. lpc_last = lpc;
  81. lpc += lpc_stride;
  82. }
  83. return 0;
  84. }
  85. #endif /* AVCODEC_LPC_H */