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.

105 lines
3.3KB

  1. /*
  2. * Musepack decoder core
  3. * Copyright (c) 2006 Konstantin Shishkov
  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. /**
  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 "avcodec.h"
  28. #include "get_bits.h"
  29. #include "dsputil.h"
  30. #include "mpegaudiodsp.h"
  31. #include "mpegaudio.h"
  32. #include "mpc.h"
  33. #include "mpcdata.h"
  34. void ff_mpc_init(void)
  35. {
  36. ff_mpa_synth_init_fixed(ff_mpa_synth_window_fixed);
  37. }
  38. /**
  39. * Process decoded Musepack data and produce PCM
  40. */
  41. static void mpc_synth(MPCContext *c, int16_t *out, int channels)
  42. {
  43. int dither_state = 0;
  44. int i, ch;
  45. OUT_INT samples[MPA_MAX_CHANNELS * MPA_FRAME_SIZE], *samples_ptr;
  46. for(ch = 0; ch < channels; ch++){
  47. samples_ptr = samples + ch;
  48. for(i = 0; i < SAMPLES_PER_BAND; i++) {
  49. ff_mpa_synth_filter_fixed(&c->mpadsp,
  50. c->synth_buf[ch], &(c->synth_buf_offset[ch]),
  51. ff_mpa_synth_window_fixed, &dither_state,
  52. samples_ptr, channels,
  53. c->sb_samples[ch][i]);
  54. samples_ptr += 32 * channels;
  55. }
  56. }
  57. for(i = 0; i < MPC_FRAME_SIZE*channels; i++)
  58. *out++=samples[i];
  59. }
  60. void ff_mpc_dequantize_and_synth(MPCContext * c, int maxband, void *data, int channels)
  61. {
  62. int i, j, ch;
  63. Band *bands = c->bands;
  64. int off;
  65. float mul;
  66. /* dequantize */
  67. memset(c->sb_samples, 0, sizeof(c->sb_samples));
  68. off = 0;
  69. for(i = 0; i <= maxband; i++, off += SAMPLES_PER_BAND){
  70. for(ch = 0; ch < 2; ch++){
  71. if(bands[i].res[ch]){
  72. j = 0;
  73. mul = (mpc_CC+1)[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][0] & 0xFF];
  74. for(; j < 12; j++)
  75. c->sb_samples[ch][j][i] = mul * c->Q[ch][j + off];
  76. mul = (mpc_CC+1)[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][1] & 0xFF];
  77. for(; j < 24; j++)
  78. c->sb_samples[ch][j][i] = mul * c->Q[ch][j + off];
  79. mul = (mpc_CC+1)[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][2] & 0xFF];
  80. for(; j < 36; j++)
  81. c->sb_samples[ch][j][i] = mul * c->Q[ch][j + off];
  82. }
  83. }
  84. if(bands[i].msf){
  85. int t1, t2;
  86. for(j = 0; j < SAMPLES_PER_BAND; j++){
  87. t1 = c->sb_samples[0][j][i];
  88. t2 = c->sb_samples[1][j][i];
  89. c->sb_samples[0][j][i] = t1 + t2;
  90. c->sb_samples[1][j][i] = t1 - t2;
  91. }
  92. }
  93. }
  94. mpc_synth(c, data, channels);
  95. }