]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavcodec/mpegaudio.h
Use CONFIG_MPEGAUDIO_HP directly instead of USE_HIGHPRECISION indirection.
[frescor/ffmpeg.git] / libavcodec / mpegaudio.h
1 /*
2  * copyright (c) 2001 Fabrice Bellard
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file mpegaudio.h
23  * mpeg audio declarations for both encoder and decoder.
24  */
25
26 #ifndef AVCODEC_MPEGAUDIO_H
27 #define AVCODEC_MPEGAUDIO_H
28
29 #include "avcodec.h"
30 #include "bitstream.h"
31 #include "dsputil.h"
32
33 /* max frame size, in samples */
34 #define MPA_FRAME_SIZE 1152
35
36 /* max compressed frame size */
37 #define MPA_MAX_CODED_FRAME_SIZE 1792
38
39 #define MPA_MAX_CHANNELS 2
40
41 #define SBLIMIT 32 /* number of subbands */
42
43 #define MPA_STEREO  0
44 #define MPA_JSTEREO 1
45 #define MPA_DUAL    2
46 #define MPA_MONO    3
47
48 /* header + layer + bitrate + freq + lsf/mpeg25 */
49 #define SAME_HEADER_MASK \
50    (0xffe00000 | (3 << 17) | (0xf << 12) | (3 << 10) | (3 << 19))
51
52 #define MP3_MASK 0xFFFE0CCF
53
54 #ifdef CONFIG_MPEGAUDIO_HP
55 #define FRAC_BITS   23   /* fractional bits for sb_samples and dct */
56 #define WFRAC_BITS  16   /* fractional bits for window */
57 #else
58 #define FRAC_BITS   15   /* fractional bits for sb_samples and dct */
59 #define WFRAC_BITS  14   /* fractional bits for window */
60 #endif
61
62 #define FRAC_ONE    (1 << FRAC_BITS)
63
64 #define FIX(a)   ((int)((a) * FRAC_ONE))
65
66 #if defined(CONFIG_MPEGAUDIO_HP) && defined(CONFIG_AUDIO_NONSHORT)
67 typedef int32_t OUT_INT;
68 #define OUT_MAX INT32_MAX
69 #define OUT_MIN INT32_MIN
70 #define OUT_SHIFT (WFRAC_BITS + FRAC_BITS - 31)
71 #else
72 typedef int16_t OUT_INT;
73 #define OUT_MAX INT16_MAX
74 #define OUT_MIN INT16_MIN
75 #define OUT_SHIFT (WFRAC_BITS + FRAC_BITS - 15)
76 #endif
77
78 #if FRAC_BITS <= 15
79 typedef int16_t MPA_INT;
80 #else
81 typedef int32_t MPA_INT;
82 #endif
83
84 #define BACKSTEP_SIZE 512
85 #define EXTRABYTES 24
86
87 struct GranuleDef;
88
89 typedef struct MPADecodeContext {
90     DECLARE_ALIGNED_8(uint8_t, last_buf[2*BACKSTEP_SIZE + EXTRABYTES]);
91     int last_buf_size;
92     int frame_size;
93     /* next header (used in free format parsing) */
94     uint32_t free_format_next_header;
95     int error_protection;
96     int layer;
97     int sample_rate;
98     int sample_rate_index; /* between 0 and 8 */
99     int bit_rate;
100     GetBitContext gb;
101     GetBitContext in_gb;
102     int nb_channels;
103     int mode;
104     int mode_ext;
105     int lsf;
106     DECLARE_ALIGNED_16(MPA_INT, synth_buf[MPA_MAX_CHANNELS][512 * 2]);
107     int synth_buf_offset[MPA_MAX_CHANNELS];
108     DECLARE_ALIGNED_16(int32_t, sb_samples[MPA_MAX_CHANNELS][36][SBLIMIT]);
109     int32_t mdct_buf[MPA_MAX_CHANNELS][SBLIMIT * 18]; /* previous samples, for layer 3 MDCT */
110 #ifdef DEBUG
111     int frame_count;
112 #endif
113     void (*compute_antialias)(struct MPADecodeContext *s, struct GranuleDef *g);
114     int adu_mode; ///< 0 for standard mp3, 1 for adu formatted mp3
115     int dither_state;
116     int error_recognition;
117     AVCodecContext* avctx;
118 } MPADecodeContext;
119
120 /* layer 3 huffman tables */
121 typedef struct HuffTable {
122     int xsize;
123     const uint8_t *bits;
124     const uint16_t *codes;
125 } HuffTable;
126
127 int ff_mpa_l2_select_table(int bitrate, int nb_channels, int freq, int lsf);
128 int ff_mpa_decode_header(AVCodecContext *avctx, uint32_t head, int *sample_rate, int *channels, int *frame_size, int *bitrate);
129 void ff_mpa_synth_init(MPA_INT *window);
130 void ff_mpa_synth_filter(MPA_INT *synth_buf_ptr, int *synth_buf_offset,
131                          MPA_INT *window, int *dither_state,
132                          OUT_INT *samples, int incr,
133                          int32_t sb_samples[SBLIMIT]);
134
135 /* fast header check for resync */
136 static inline int ff_mpa_check_header(uint32_t header){
137     /* header */
138     if ((header & 0xffe00000) != 0xffe00000)
139         return -1;
140     /* layer check */
141     if ((header & (3<<17)) == 0)
142         return -1;
143     /* bit rate */
144     if ((header & (0xf<<12)) == 0xf<<12)
145         return -1;
146     /* frequency */
147     if ((header & (3<<10)) == 3<<10)
148         return -1;
149     return 0;
150 }
151
152 #endif /* AVCODEC_MPEGAUDIO_H */