FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/aac.h
Date: 2026-04-23 02:20:26
Exec Total Coverage
Lines: 13 13 100.0%
Functions: 1 1 100.0%
Branches: 16 22 72.7%

Line Branch Exec Source
1 /*
2 * AAC definitions and structures
3 * Copyright (c) 2005-2006 Oded Shimon ( ods15 ods15 dyndns org )
4 * Copyright (c) 2006-2007 Maxim Gavrilov ( maxim.gavrilov gmail com )
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 /**
24 * @file
25 * AAC definitions and structures
26 * @author Oded Shimon ( ods15 ods15 dyndns org )
27 * @author Maxim Gavrilov ( maxim.gavrilov gmail com )
28 */
29
30 #ifndef AVCODEC_AAC_H
31 #define AVCODEC_AAC_H
32
33 #define MAX_CHANNELS 64
34 #define MAX_ELEM_ID 64
35
36 #define TNS_MAX_ORDER 20
37 #define MAX_LTP_LONG_SFB 40
38
39 #define MPS_MAX_PARAM_SETS 9
40 #define MPS_MAX_PARAM_BANDS 28
41 #define MPS_MAX_TIME_SLOTS 16 /* 64 in non-AAC MPEG Surround */
42
43 enum RawDataBlockType {
44 TYPE_SCE,
45 TYPE_CPE,
46 TYPE_CCE,
47 TYPE_LFE,
48 TYPE_DSE,
49 TYPE_PCE,
50 TYPE_FIL,
51 TYPE_END,
52 };
53
54 enum ExtensionPayloadID {
55 EXT_FILL,
56 EXT_FILL_DATA,
57 EXT_DATA_ELEMENT,
58 EXT_DYNAMIC_RANGE = 0xb,
59 EXT_SBR_DATA = 0xd,
60 EXT_SBR_DATA_CRC = 0xe,
61 };
62
63 enum WindowSequence {
64 ONLY_LONG_SEQUENCE,
65 LONG_START_SEQUENCE,
66 EIGHT_SHORT_SEQUENCE,
67 LONG_STOP_SEQUENCE,
68 };
69
70 enum BandType {
71 ZERO_BT = 0, ///< Scalefactors and spectral data are all zero.
72 FIRST_PAIR_BT = 5, ///< This and later band types encode two values (rather than four) with one code word.
73 ESC_BT = 11, ///< Spectral data are coded with an escape sequence.
74 RESERVED_BT = 12, ///< Band types following are encoded differently from others.
75 NOISE_BT = 13, ///< Spectral data are scaled white noise not coded in the bitstream.
76 INTENSITY_BT2 = 14, ///< Scalefactor data are intensity stereo positions (out of phase).
77 INTENSITY_BT = 15, ///< Scalefactor data are intensity stereo positions (in phase).
78 };
79
80 enum ChannelPosition {
81 AAC_CHANNEL_OFF = 0,
82 AAC_CHANNEL_FRONT = 1,
83 AAC_CHANNEL_SIDE = 2,
84 AAC_CHANNEL_BACK = 3,
85 AAC_CHANNEL_LFE = 4,
86 AAC_CHANNEL_CC = 5,
87 };
88
89 #define MAX_PREDICTORS 672
90
91 #define SCALE_DIV_512 36 ///< scalefactor difference that corresponds to scale difference in 512 times
92 #define SCALE_ONE_POS 140 ///< scalefactor index that corresponds to scale=1.0
93 #define SCALE_MAX_POS 255 ///< scalefactor index maximum value
94 #define SCALE_MAX_DIFF 60 ///< maximum scalefactor difference allowed by standard
95 #define SCALE_DIFF_ZERO 60 ///< codebook index corresponding to zero scalefactor indices difference
96
97 #define POW_SF2_ZERO 200 ///< ff_aac_pow2sf_tab index corresponding to pow(2, 0);
98
99 #define NOISE_PRE 256 ///< preamble for NOISE_BT, put in bitstream with the first noise band
100 #define NOISE_PRE_BITS 9 ///< length of preamble
101 #define NOISE_OFFSET 90 ///< subtracted from global gain, used as offset for the preamble
102
103 typedef struct Pulse {
104 int num_pulse;
105 int start;
106 int pos[4];
107 int amp[4];
108 } Pulse;
109
110 64 static inline int ff_aac_sample_rate_idx(int rate)
111 {
112
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 64 times.
64 if (92017 <= rate) return 0;
113
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 62 times.
64 else if (75132 <= rate) return 1;
114
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 62 times.
62 else if (55426 <= rate) return 2;
115
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 61 times.
62 else if (46009 <= rate) return 3;
116
2/2
✓ Branch 0 taken 17 times.
✓ Branch 1 taken 44 times.
61 else if (37566 <= rate) return 4;
117
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 41 times.
44 else if (27713 <= rate) return 5;
118
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 41 times.
41 else if (23004 <= rate) return 6;
119
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 41 times.
41 else if (18783 <= rate) return 7;
120
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 37 times.
41 else if (13856 <= rate) return 8;
121
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 37 times.
37 else if (11502 <= rate) return 9;
122
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 37 times.
37 else if (9391 <= rate) return 10;
123 37 else return 11;
124 }
125
126 #endif /* AVCODEC_AAC_H */
127