annotate mpc.h @ 11560:8a4984c5cacc libavcodec

Define AVMediaType enum, and use it instead of enum CodecType, which is deprecated and will be dropped at the next major bump.
author stefano
date Tue, 30 Mar 2010 23:30:55 +0000
parents 98970e51365a
children 7dd2a45249a9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
1 /*
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
2 * Musepack decoder
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
3 * Copyright (c) 2006 Konstantin Shishkov
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
4 *
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
5 * This file is part of FFmpeg.
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
6 *
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
11 *
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
15 * Lesser General Public License for more details.
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
16 *
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
20 */
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
21
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
22 /**
8718
e9d9d946f213 Use full internal pathname in doxygen @file directives.
diego
parents: 8693
diff changeset
23 * @file libavcodec/mpc.h Musepack decoder
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
24 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
25 * divided into 32 subbands.
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
26 */
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
27
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6763
diff changeset
28 #ifndef AVCODEC_MPC_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6763
diff changeset
29 #define AVCODEC_MPC_H
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
30
9153
4e91d96dd045 Make Musepack decoders use LFG pseudorandom generator
kostya
parents: 8718
diff changeset
31 #include "libavutil/lfg.h"
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
32 #include "avcodec.h"
9428
0dce4fe6e6f3 Rename bitstream.h to get_bits.h.
stefano
parents: 9153
diff changeset
33 #include "get_bits.h"
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
34 #include "dsputil.h"
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
35 #include "mpegaudio.h"
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
36
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
37 #include "mpcdata.h"
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
38
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
39 #define BANDS 32
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
40 #define SAMPLES_PER_BAND 36
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
41 #define MPC_FRAME_SIZE (BANDS * SAMPLES_PER_BAND)
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
42
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
43 /** Subband structure - hold all variables for each subband */
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
44 typedef struct {
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
45 int msf; ///< mid-stereo flag
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
46 int res[2];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
47 int scfi[2];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
48 int scf_idx[2][3];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
49 int Q[2];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
50 }Band;
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
51
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
52 typedef struct {
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
53 DSPContext dsp;
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
54 GetBitContext gb;
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
55 int IS, MSS, gapless;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
56 int lastframelen;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
57 int maxbands, last_max_band;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
58 int last_bits_used;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
59 int oldDSCF[2][BANDS];
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
60 Band bands[BANDS];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
61 int Q[2][MPC_FRAME_SIZE];
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
62 int cur_frame, frames;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
63 uint8_t *bits;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
64 int buf_size;
9153
4e91d96dd045 Make Musepack decoders use LFG pseudorandom generator
kostya
parents: 8718
diff changeset
65 AVLFG rnd;
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
66 int frames_to_skip;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
67 /* for synthesis */
11369
98970e51365a Remove DECLARE_ALIGNED_{8,16} macros
mru
parents: 10961
diff changeset
68 DECLARE_ALIGNED(16, MPA_INT, synth_buf)[MPA_MAX_CHANNELS][512*2];
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
69 int synth_buf_offset[MPA_MAX_CHANNELS];
11369
98970e51365a Remove DECLARE_ALIGNED_{8,16} macros
mru
parents: 10961
diff changeset
70 DECLARE_ALIGNED(16, int32_t, sb_samples)[MPA_MAX_CHANNELS][36][SBLIMIT];
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
71 } MPCContext;
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
72
8693
18737839ed27 Add missing void keyword to parameterless function declarations.
diego
parents: 8593
diff changeset
73 void ff_mpc_init(void);
8250
cf4d575b1982 Delete unnecessary 'extern' keywords.
diego
parents: 7760
diff changeset
74 void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, void *dst);
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
75
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6763
diff changeset
76 #endif /* AVCODEC_MPC_H */