lpc.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. #ifdef LPC_USE_DOUBLE
  42. #define LPC_TYPE double
  43. #else
  44. #define LPC_TYPE float
  45. #endif
  46. /**
  47. * Levinson-Durbin recursion.
  48. * Produces LPC coefficients from autocorrelation data.
  49. */
  50. static inline int compute_lpc_coefs(const LPC_TYPE *autoc, int max_order,
  51. LPC_TYPE *lpc, int lpc_stride, int fail,
  52. int normalize)
  53. {
  54. int i, j;
  55. LPC_TYPE err;
  56. LPC_TYPE *lpc_last = lpc;
  57. if (normalize)
  58. err = *autoc++;
  59. if (fail && (autoc[max_order - 1] == 0 || err <= 0))
  60. return -1;
  61. for(i=0; i<max_order; i++) {
  62. LPC_TYPE r = -autoc[i];
  63. if (normalize) {
  64. for(j=0; j<i; j++)
  65. r -= lpc_last[j] * autoc[i-j-1];
  66. r /= err;
  67. err *= 1.0 - (r * r);
  68. }
  69. lpc[i] = r;
  70. for(j=0; j < (i+1)>>1; j++) {
  71. LPC_TYPE f = lpc_last[ j];
  72. LPC_TYPE b = lpc_last[i-1-j];
  73. lpc[ j] = f + r * b;
  74. lpc[i-1-j] = b + r * f;
  75. }
  76. if (fail && err < 0)
  77. return -1;
  78. lpc_last = lpc;
  79. lpc += lpc_stride;
  80. }
  81. return 0;
  82. }
  83. #endif /* AVCODEC_LPC_H */