annotate mpc.h @ 12530:63edd10ad4bc libavcodec tip

Try to fix crashes introduced by r25218 r25218 made assumptions about the existence of past reference frames that weren't necessarily true.
author darkshikari
date Tue, 28 Sep 2010 09:06:22 +0000
parents 7dd2a45249a9
children
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 /**
11644
7dd2a45249a9 Remove explicit filename from Doxygen @file commands.
diego
parents: 11369
diff changeset
23 * @file
7dd2a45249a9 Remove explicit filename from Doxygen @file commands.
diego
parents: 11369
diff changeset
24 * Musepack decoder
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
25 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
26 * divided into 32 subbands.
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
27 */
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
28
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6763
diff changeset
29 #ifndef AVCODEC_MPC_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6763
diff changeset
30 #define AVCODEC_MPC_H
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
31
9153
4e91d96dd045 Make Musepack decoders use LFG pseudorandom generator
kostya
parents: 8718
diff changeset
32 #include "libavutil/lfg.h"
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
33 #include "avcodec.h"
9428
0dce4fe6e6f3 Rename bitstream.h to get_bits.h.
stefano
parents: 9153
diff changeset
34 #include "get_bits.h"
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
35 #include "dsputil.h"
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
36 #include "mpegaudio.h"
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
37
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
38 #include "mpcdata.h"
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
39
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
40 #define BANDS 32
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
41 #define SAMPLES_PER_BAND 36
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
42 #define MPC_FRAME_SIZE (BANDS * SAMPLES_PER_BAND)
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
43
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
44 /** Subband structure - hold all variables for each subband */
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
45 typedef struct {
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
46 int msf; ///< mid-stereo flag
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
47 int res[2];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
48 int scfi[2];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
49 int scf_idx[2][3];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
50 int Q[2];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
51 }Band;
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
52
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
53 typedef struct {
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
54 DSPContext dsp;
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
55 GetBitContext gb;
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
56 int IS, MSS, gapless;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
57 int lastframelen;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
58 int maxbands, last_max_band;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
59 int last_bits_used;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
60 int oldDSCF[2][BANDS];
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
61 Band bands[BANDS];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
62 int Q[2][MPC_FRAME_SIZE];
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
63 int cur_frame, frames;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
64 uint8_t *bits;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
65 int buf_size;
9153
4e91d96dd045 Make Musepack decoders use LFG pseudorandom generator
kostya
parents: 8718
diff changeset
66 AVLFG rnd;
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
67 int frames_to_skip;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
68 /* for synthesis */
11369
98970e51365a Remove DECLARE_ALIGNED_{8,16} macros
mru
parents: 10961
diff changeset
69 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
70 int synth_buf_offset[MPA_MAX_CHANNELS];
11369
98970e51365a Remove DECLARE_ALIGNED_{8,16} macros
mru
parents: 10961
diff changeset
71 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
72 } MPCContext;
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
73
8693
18737839ed27 Add missing void keyword to parameterless function declarations.
diego
parents: 8593
diff changeset
74 void ff_mpc_init(void);
8250
cf4d575b1982 Delete unnecessary 'extern' keywords.
diego
parents: 7760
diff changeset
75 void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, void *dst);
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
76
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6763
diff changeset
77 #endif /* AVCODEC_MPC_H */