Mercurial > libavcodec.hg
annotate mpc.c @ 8840:666823012108 libavcodec
explain chroma_format field in xvmc struct
author | iive |
---|---|
date | Sat, 14 Feb 2009 16:37:30 +0000 |
parents | e9d9d946f213 |
children | 4e91d96dd045 |
rev | line source |
---|---|
4328 | 1 /* |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
2 * Musepack decoder core |
4328 | 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 /** | |
8718
e9d9d946f213
Use full internal pathname in doxygen @file directives.
diego
parents:
8693
diff
changeset
|
23 * @file libavcodec/mpc.c Musepack decoder core |
4328 | 24 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples |
25 * divided into 32 subbands. | |
26 */ | |
27 | |
6763 | 28 #include "libavutil/random.h" |
4328 | 29 #include "avcodec.h" |
30 #include "bitstream.h" | |
31 #include "dsputil.h" | |
32 #include "mpegaudio.h" | |
33 | |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
34 #include "mpc.h" |
4328 | 35 #include "mpcdata.h" |
36 | |
37 static DECLARE_ALIGNED_16(MPA_INT, mpa_window[512]); | |
38 | |
8693
18737839ed27
Add missing void keyword to parameterless function declarations.
diego
parents:
8592
diff
changeset
|
39 void ff_mpc_init(void) |
4328 | 40 { |
41 ff_mpa_synth_init(mpa_window); | |
42 } | |
43 | |
44 /** | |
45 * Process decoded Musepack data and produce PCM | |
46 */ | |
47 static void mpc_synth(MPCContext *c, int16_t *out) | |
48 { | |
49 int dither_state = 0; | |
50 int i, ch; | |
51 OUT_INT samples[MPA_MAX_CHANNELS * MPA_FRAME_SIZE], *samples_ptr; | |
52 | |
53 for(ch = 0; ch < 2; ch++){ | |
54 samples_ptr = samples + ch; | |
55 for(i = 0; i < SAMPLES_PER_BAND; i++) { | |
56 ff_mpa_synth_filter(c->synth_buf[ch], &(c->synth_buf_offset[ch]), | |
57 mpa_window, &dither_state, | |
58 samples_ptr, 2, | |
59 c->sb_samples[ch][i]); | |
60 samples_ptr += 64; | |
61 } | |
62 } | |
63 for(i = 0; i < MPC_FRAME_SIZE*2; i++) | |
64 *out++=samples[i]; | |
65 } | |
66 | |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
67 void ff_mpc_dequantize_and_synth(MPCContext * c, int maxband, void *data) |
4328 | 68 { |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
69 int i, j, ch; |
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
70 Band *bands = c->bands; |
4328 | 71 int off; |
72 float mul; | |
73 | |
74 /* dequantize */ | |
75 memset(c->sb_samples, 0, sizeof(c->sb_samples)); | |
76 off = 0; | |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
77 for(i = 0; i <= maxband; i++, off += SAMPLES_PER_BAND){ |
4328 | 78 for(ch = 0; ch < 2; ch++){ |
79 if(bands[i].res[ch]){ | |
80 j = 0; | |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
81 mul = mpc_CC[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][0]]; |
4328 | 82 for(; j < 12; j++) |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
83 c->sb_samples[ch][j][i] = mul * c->Q[ch][j + off]; |
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
84 mul = mpc_CC[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][1]]; |
4328 | 85 for(; j < 24; j++) |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
86 c->sb_samples[ch][j][i] = mul * c->Q[ch][j + off]; |
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
87 mul = mpc_CC[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][2]]; |
4328 | 88 for(; j < 36; j++) |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
89 c->sb_samples[ch][j][i] = mul * c->Q[ch][j + off]; |
4328 | 90 } |
91 } | |
92 if(bands[i].msf){ | |
93 int t1, t2; | |
94 for(j = 0; j < SAMPLES_PER_BAND; j++){ | |
95 t1 = c->sb_samples[0][j][i]; | |
96 t2 = c->sb_samples[1][j][i]; | |
97 c->sb_samples[0][j][i] = t1 + t2; | |
98 c->sb_samples[1][j][i] = t1 - t2; | |
99 } | |
100 } | |
101 } | |
102 | |
103 mpc_synth(c, data); | |
104 } |