FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
aacdectab.h
Go to the documentation of this file.
1 /*
2  * AAC decoder data
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 decoder data
26  * @author Oded Shimon ( ods15 ods15 dyndns org )
27  * @author Maxim Gavrilov ( maxim.gavrilov gmail com )
28  */
29 
30 #ifndef AVCODEC_AACDECTAB_H
31 #define AVCODEC_AACDECTAB_H
32 
34 #include "aac.h"
35 
36 #include <stdint.h>
37 
38 /* @name ltp_coef
39  * Table of the LTP coefficients
40  */
41 static const INTFLOAT ltp_coef[8] = {
42  Q30(0.570829f), Q30(0.696616f), Q30(0.813004f), Q30(0.911304f),
43  Q30(0.984900f), Q30(1.067894f), Q30(1.194601f), Q30(1.369533f),
44 };
45 
46 static const int8_t tags_per_config[16] = { 0, 1, 1, 2, 3, 3, 4, 5, 0, 0, 0, 4, 5, 0, 5, 0 };
47 
48 static const uint8_t aac_channel_layout_map[16][5][3] = {
49  { { TYPE_SCE, 0, AAC_CHANNEL_FRONT }, },
50  { { TYPE_CPE, 0, AAC_CHANNEL_FRONT }, },
56  { { 0, } },
57  { { 0, } },
58  { { 0, } },
61  { { 0, } },
62  /* TODO: Add 7+1 TOP configuration */
63 };
64 
65 static const uint64_t aac_channel_layout[16] = {
73  0,
74  0,
75  0,
78  0,
79  /* AV_CH_LAYOUT_7POINT1_TOP, */
80 };
81 
82 #endif /* AVCODEC_AACDECTAB_H */
#define AV_CH_LAYOUT_7POINT1
static const int8_t tags_per_config[16]
Definition: aacdectab.h:46
#define AV_CH_LAYOUT_6POINT1
#define AV_CH_LAYOUT_SURROUND
Definition: aac.h:56
Definition: aac.h:57
#define AV_CH_LAYOUT_4POINT0
static const INTFLOAT ltp_coef[8]
Definition: aacdectab.h:41
#define AV_CH_LAYOUT_STEREO
uint8_t
#define Q30(x)
Definition: aac_defines.h:93
#define INTFLOAT
Definition: aac_defines.h:85
Definition: aac.h:59
static const uint64_t aac_channel_layout[16]
Definition: aacdectab.h:65
audio channel layout utility functions
AAC definitions and structures.
#define AV_CH_LAYOUT_5POINT1_BACK
#define AV_CH_LAYOUT_7POINT1_WIDE_BACK
#define AV_CH_LAYOUT_5POINT0_BACK
#define AV_CH_LAYOUT_MONO
static const uint8_t aac_channel_layout_map[16][5][3]
Definition: aacdectab.h:48