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.

170 lines
5.0KB

  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. #include "libavutil/lls.h"
  22. #include "dsputil.h"
  23. #define LPC_USE_DOUBLE
  24. #include "lpc.h"
  25. /**
  26. * Quantize LPC coefficients
  27. */
  28. static void quantize_lpc_coefs(double *lpc_in, int order, int precision,
  29. int32_t *lpc_out, int *shift, int max_shift, int zero_shift)
  30. {
  31. int i;
  32. double cmax, error;
  33. int32_t qmax;
  34. int sh;
  35. /* define maximum levels */
  36. qmax = (1 << (precision - 1)) - 1;
  37. /* find maximum coefficient value */
  38. cmax = 0.0;
  39. for(i=0; i<order; i++) {
  40. cmax= FFMAX(cmax, fabs(lpc_in[i]));
  41. }
  42. /* if maximum value quantizes to zero, return all zeros */
  43. if(cmax * (1 << max_shift) < 1.0) {
  44. *shift = zero_shift;
  45. memset(lpc_out, 0, sizeof(int32_t) * order);
  46. return;
  47. }
  48. /* calculate level shift which scales max coeff to available bits */
  49. sh = max_shift;
  50. while((cmax * (1 << sh) > qmax) && (sh > 0)) {
  51. sh--;
  52. }
  53. /* since negative shift values are unsupported in decoder, scale down
  54. coefficients instead */
  55. if(sh == 0 && cmax > qmax) {
  56. double scale = ((double)qmax) / cmax;
  57. for(i=0; i<order; i++) {
  58. lpc_in[i] *= scale;
  59. }
  60. }
  61. /* output quantized coefficients and level shift */
  62. error=0;
  63. for(i=0; i<order; i++) {
  64. error -= lpc_in[i] * (1 << sh);
  65. lpc_out[i] = av_clip(lrintf(error), -qmax, qmax);
  66. error -= lpc_out[i];
  67. }
  68. *shift = sh;
  69. }
  70. static int estimate_best_order(double *ref, int min_order, int max_order)
  71. {
  72. int i, est;
  73. est = min_order;
  74. for(i=max_order-1; i>=min_order-1; i--) {
  75. if(ref[i] > 0.10) {
  76. est = i+1;
  77. break;
  78. }
  79. }
  80. return est;
  81. }
  82. /**
  83. * Calculate LPC coefficients for multiple orders
  84. */
  85. int ff_lpc_calc_coefs(DSPContext *s,
  86. const int32_t *samples, int blocksize, int min_order,
  87. int max_order, int precision,
  88. int32_t coefs[][MAX_LPC_ORDER], int *shift, int use_lpc,
  89. int omethod, int max_shift, int zero_shift)
  90. {
  91. double autoc[MAX_LPC_ORDER+1];
  92. double ref[MAX_LPC_ORDER];
  93. double lpc[MAX_LPC_ORDER][MAX_LPC_ORDER];
  94. int i, j, pass;
  95. int opt_order;
  96. assert(max_order >= MIN_LPC_ORDER && max_order <= MAX_LPC_ORDER);
  97. if(use_lpc == 1){
  98. s->flac_compute_autocorr(samples, blocksize, max_order, autoc);
  99. compute_lpc_coefs(autoc, max_order, &lpc[0][0], MAX_LPC_ORDER, 0, 1);
  100. for(i=0; i<max_order; i++)
  101. ref[i] = fabs(lpc[i][i]);
  102. }else{
  103. LLSModel m[2];
  104. double var[MAX_LPC_ORDER+1], weight;
  105. for(pass=0; pass<use_lpc-1; pass++){
  106. av_init_lls(&m[pass&1], max_order);
  107. weight=0;
  108. for(i=max_order; i<blocksize; i++){
  109. for(j=0; j<=max_order; j++)
  110. var[j]= samples[i-j];
  111. if(pass){
  112. double eval, inv, rinv;
  113. eval= av_evaluate_lls(&m[(pass-1)&1], var+1, max_order-1);
  114. eval= (512>>pass) + fabs(eval - var[0]);
  115. inv = 1/eval;
  116. rinv = sqrt(inv);
  117. for(j=0; j<=max_order; j++)
  118. var[j] *= rinv;
  119. weight += inv;
  120. }else
  121. weight++;
  122. av_update_lls(&m[pass&1], var, 1.0);
  123. }
  124. av_solve_lls(&m[pass&1], 0.001, 0);
  125. }
  126. for(i=0; i<max_order; i++){
  127. for(j=0; j<max_order; j++)
  128. lpc[i][j]=-m[(pass-1)&1].coeff[i][j];
  129. ref[i]= sqrt(m[(pass-1)&1].variance[i] / weight) * (blocksize - max_order) / 4000;
  130. }
  131. for(i=max_order-1; i>0; i--)
  132. ref[i] = ref[i-1] - ref[i];
  133. }
  134. opt_order = max_order;
  135. if(omethod == ORDER_METHOD_EST) {
  136. opt_order = estimate_best_order(ref, min_order, max_order);
  137. i = opt_order-1;
  138. quantize_lpc_coefs(lpc[i], i+1, precision, coefs[i], &shift[i], max_shift, zero_shift);
  139. } else {
  140. for(i=min_order-1; i<max_order; i++) {
  141. quantize_lpc_coefs(lpc[i], i+1, precision, coefs[i], &shift[i], max_shift, zero_shift);
  142. }
  143. }
  144. return opt_order;
  145. }