Mercurial > libavcodec.hg
annotate mpc.c @ 12384:e1ef713061ce libavcodec
Add av_picture_data_copy() and reimplement av_picture_copy() as a
wrapper of it.
The new function is more generic, and does not depend on the
definition of the AVPicture struct.
Patch by S.N. Hemanth Meenakshisundaram s + "meenakshisundaram".substr(0, 7) + "@ucsd.edu".
author | stefano |
---|---|
date | Wed, 11 Aug 2010 14:18:52 +0000 |
parents | 7dd2a45249a9 |
children |
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 /** | |
11644
7dd2a45249a9
Remove explicit filename from Doxygen @file commands.
diego
parents:
10440
diff
changeset
|
23 * @file |
7dd2a45249a9
Remove explicit filename from Doxygen @file commands.
diego
parents:
10440
diff
changeset
|
24 * Musepack decoder core |
4328 | 25 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples |
26 * divided into 32 subbands. | |
27 */ | |
28 | |
29 #include "avcodec.h" | |
9428 | 30 #include "get_bits.h" |
4328 | 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 | |
8693
18737839ed27
Add missing void keyword to parameterless function declarations.
diego
parents:
8592
diff
changeset
|
37 void ff_mpc_init(void) |
4328 | 38 { |
10440
899237b1961f
mpegaudiodec, mpc and qdm2 all use the same mpa_synth window, so make
reimar
parents:
9428
diff
changeset
|
39 ff_mpa_synth_init(ff_mpa_synth_window); |
4328 | 40 } |
41 | |
42 /** | |
43 * Process decoded Musepack data and produce PCM | |
44 */ | |
45 static void mpc_synth(MPCContext *c, int16_t *out) | |
46 { | |
47 int dither_state = 0; | |
48 int i, ch; | |
49 OUT_INT samples[MPA_MAX_CHANNELS * MPA_FRAME_SIZE], *samples_ptr; | |
50 | |
51 for(ch = 0; ch < 2; ch++){ | |
52 samples_ptr = samples + ch; | |
53 for(i = 0; i < SAMPLES_PER_BAND; i++) { | |
54 ff_mpa_synth_filter(c->synth_buf[ch], &(c->synth_buf_offset[ch]), | |
10440
899237b1961f
mpegaudiodec, mpc and qdm2 all use the same mpa_synth window, so make
reimar
parents:
9428
diff
changeset
|
55 ff_mpa_synth_window, &dither_state, |
4328 | 56 samples_ptr, 2, |
57 c->sb_samples[ch][i]); | |
58 samples_ptr += 64; | |
59 } | |
60 } | |
61 for(i = 0; i < MPC_FRAME_SIZE*2; i++) | |
62 *out++=samples[i]; | |
63 } | |
64 | |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
65 void ff_mpc_dequantize_and_synth(MPCContext * c, int maxband, void *data) |
4328 | 66 { |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
67 int i, j, ch; |
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
68 Band *bands = c->bands; |
4328 | 69 int off; |
70 float mul; | |
71 | |
72 /* dequantize */ | |
73 memset(c->sb_samples, 0, sizeof(c->sb_samples)); | |
74 off = 0; | |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
75 for(i = 0; i <= maxband; i++, off += SAMPLES_PER_BAND){ |
4328 | 76 for(ch = 0; ch < 2; ch++){ |
77 if(bands[i].res[ch]){ | |
78 j = 0; | |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
79 mul = mpc_CC[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][0]]; |
4328 | 80 for(; j < 12; j++) |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
81 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
|
82 mul = mpc_CC[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][1]]; |
4328 | 83 for(; j < 24; j++) |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
84 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
|
85 mul = mpc_CC[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][2]]; |
4328 | 86 for(; j < 36; j++) |
5868
2cc044ac80d4
Split Musepack decoder into SV7 decoder and synth core
kostya
parents:
5215
diff
changeset
|
87 c->sb_samples[ch][j][i] = mul * c->Q[ch][j + off]; |
4328 | 88 } |
89 } | |
90 if(bands[i].msf){ | |
91 int t1, t2; | |
92 for(j = 0; j < SAMPLES_PER_BAND; j++){ | |
93 t1 = c->sb_samples[0][j][i]; | |
94 t2 = c->sb_samples[1][j][i]; | |
95 c->sb_samples[0][j][i] = t1 + t2; | |
96 c->sb_samples[1][j][i] = t1 - t2; | |
97 } | |
98 } | |
99 } | |
100 | |
101 mpc_synth(c, data); | |
102 } |