annotate mpc.h @ 6693:6f13852a9161 libavcodec

Skip blocks in B-frames reuse motion vectors from next reference frame. So if referenced blocks is 16x8, 8x16 or 8x8 partitions, skip block will have them too.
author kostya
date Sat, 26 Apr 2008 13:09:36 +0000
parents 2cc044ac80d4
children f7cbb7733146
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 /**
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
23 * @file 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
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
28 #ifndef FFMPEG_MPC_H
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
29 #define FFMPEG_MPC_H
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
30
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
31 #include "avcodec.h"
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
32 #include "bitstream.h"
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
33 #include "dsputil.h"
4536
0430aafe6f01 Use AVRandom
kostya
parents: 4535
diff changeset
34 #include "random.h"
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
35
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
36 #ifdef CONFIG_MPEGAUDIO_HP
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
37 #define USE_HIGHPRECISION
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
38 #endif
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
39 #include "mpegaudio.h"
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
40
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
41 #include "mpcdata.h"
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
42
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
43 #define BANDS 32
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
44 #define SAMPLES_PER_BAND 36
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
45 #define MPC_FRAME_SIZE (BANDS * SAMPLES_PER_BAND)
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
46
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
47 /** Subband structure - hold all variables for each subband */
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
48 typedef struct {
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
49 int msf; ///< mid-stereo flag
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
50 int res[2];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
51 int scfi[2];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
52 int scf_idx[2][3];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
53 int Q[2];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
54 }Band;
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
55
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
56 typedef struct {
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
57 DSPContext dsp;
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
58 GetBitContext gb;
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
59 int IS, MSS, gapless;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
60 int lastframelen;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
61 int maxbands, last_max_band;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
62 int last_bits_used;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
63 int oldDSCF[2][BANDS];
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
64 Band bands[BANDS];
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
65 int Q[2][MPC_FRAME_SIZE];
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
66 int cur_frame, frames;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
67 uint8_t *bits;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
68 int buf_size;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
69 AVRandomState rnd;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
70 int frames_to_skip;
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
71 /* for synthesis */
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
72 DECLARE_ALIGNED_16(MPA_INT, synth_buf[MPA_MAX_CHANNELS][512*2]);
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
73 int synth_buf_offset[MPA_MAX_CHANNELS];
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
74 DECLARE_ALIGNED_16(int32_t, sb_samples[MPA_MAX_CHANNELS][36][SBLIMIT]);
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
75 } MPCContext;
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
76
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
77 extern void ff_mpc_init();
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
78 extern void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, void *dst);
4328
a0cfbd6679c0 Musepack SV7 decoding support
kostya
parents:
diff changeset
79
5868
2cc044ac80d4 Split Musepack decoder into SV7 decoder and synth core
kostya
parents: 5215
diff changeset
80 #endif /* FFMPEG_MPC_H */