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 /**
23 * @file
24 * Musepack decoder core
25 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
26 * divided into 32 subbands.
27 */
28
29 #include <string.h>
32
35
36 /**
37 * Process decoded Musepack data and produce PCM
38 */
40 {
41 int dither_state = 0;
43
47 c->synth_buf[ch], &(
c->synth_buf_offset[ch]),
50 c->sb_samples[ch][
i]);
51 }
52 }
53 }
54
57 {
60 int off;
61 float mul;
62
63 /* dequantize */
64 memset(
c->sb_samples, 0,
sizeof(
c->sb_samples));
65 off = 0;
67 for(ch = 0; ch < 2; ch++){
69 j = 0;
71 for(; j < 12; j++)
72 c->sb_samples[ch][j][
i] =
av_clipf(mul *
c->Q[ch][j + off], INT32_MIN, INT32_MAX);
74 for(; j < 24; j++)
75 c->sb_samples[ch][j][
i] =
av_clipf(mul *
c->Q[ch][j + off], INT32_MIN, INT32_MAX);
77 for(; j < 36; j++)
78 c->sb_samples[ch][j][
i] =
av_clipf(mul *
c->Q[ch][j + off], INT32_MIN, INT32_MAX);
79 }
80 }
82 unsigned t1, t2;
84 t1 =
c->sb_samples[0][j][
i];
85 t2 =
c->sb_samples[1][j][
i];
86 c->sb_samples[0][j][
i] = t1 + t2;
87 c->sb_samples[1][j][
i] = t1 - t2;
88 }
89 }
90 }
91
93 }