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.

100 lines
3.1KB

  1. /*
  2. * Musepack decoder core
  3. * Copyright (c) 2006 Konstantin Shishkov
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Musepack decoder core
  24. * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
  25. * divided into 32 subbands.
  26. */
  27. #include "libavutil/attributes.h"
  28. #include "avcodec.h"
  29. #include "mpegaudiodsp.h"
  30. #include "mpegaudio.h"
  31. #include "mpc.h"
  32. #include "mpcdata.h"
  33. av_cold void ff_mpc_init(void)
  34. {
  35. ff_mpa_synth_init_fixed(ff_mpa_synth_window_fixed);
  36. }
  37. /**
  38. * Process decoded Musepack data and produce PCM
  39. */
  40. static void mpc_synth(MPCContext *c, int16_t **out, int channels)
  41. {
  42. int dither_state = 0;
  43. int i, ch;
  44. for(ch = 0; ch < channels; ch++){
  45. for(i = 0; i < SAMPLES_PER_BAND; i++) {
  46. ff_mpa_synth_filter_fixed(&c->mpadsp,
  47. c->synth_buf[ch], &(c->synth_buf_offset[ch]),
  48. ff_mpa_synth_window_fixed, &dither_state,
  49. out[ch] + 32 * i, 1,
  50. c->sb_samples[ch][i]);
  51. }
  52. }
  53. }
  54. void ff_mpc_dequantize_and_synth(MPCContext * c, int maxband, int16_t **out,
  55. int channels)
  56. {
  57. int i, j, ch;
  58. Band *bands = c->bands;
  59. int off;
  60. float mul;
  61. /* dequantize */
  62. memset(c->sb_samples, 0, sizeof(c->sb_samples));
  63. off = 0;
  64. for(i = 0; i <= maxband; i++, off += SAMPLES_PER_BAND){
  65. for(ch = 0; ch < 2; ch++){
  66. if(bands[i].res[ch]){
  67. j = 0;
  68. mul = mpc_CC[bands[i].res[ch] + 1] * mpc_SCF[bands[i].scf_idx[ch][0]+6];
  69. for(; j < 12; j++)
  70. c->sb_samples[ch][j][i] = mul * c->Q[ch][j + off];
  71. mul = mpc_CC[bands[i].res[ch] + 1] * mpc_SCF[bands[i].scf_idx[ch][1]+6];
  72. for(; j < 24; j++)
  73. c->sb_samples[ch][j][i] = mul * c->Q[ch][j + off];
  74. mul = mpc_CC[bands[i].res[ch] + 1] * mpc_SCF[bands[i].scf_idx[ch][2]+6];
  75. for(; j < 36; j++)
  76. c->sb_samples[ch][j][i] = mul * c->Q[ch][j + off];
  77. }
  78. }
  79. if(bands[i].msf){
  80. int t1, t2;
  81. for(j = 0; j < SAMPLES_PER_BAND; j++){
  82. t1 = c->sb_samples[0][j][i];
  83. t2 = c->sb_samples[1][j][i];
  84. c->sb_samples[0][j][i] = t1 + t2;
  85. c->sb_samples[1][j][i] = t1 - t2;
  86. }
  87. }
  88. }
  89. mpc_synth(c, out, channels);
  90. }