annotate aacdectab.h @ 12475:9fef0a8ddd63 libavcodec

Move mm_support() from libavcodec to libavutil, make it a public function and rename it to av_get_cpu_flags().
author stefano
date Wed, 08 Sep 2010 15:07:14 +0000
parents 7dd2a45249a9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7523
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
1 /*
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
2 * AAC decoder data
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
3 * Copyright (c) 2005-2006 Oded Shimon ( ods15 ods15 dyndns org )
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
4 * Copyright (c) 2006-2007 Maxim Gavrilov ( maxim.gavrilov gmail com )
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
5 *
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
6 * This file is part of FFmpeg.
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
7 *
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
8 * FFmpeg is free software; you can redistribute it and/or
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
9 * modify it under the terms of the GNU Lesser General Public
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
10 * License as published by the Free Software Foundation; either
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
11 * version 2.1 of the License, or (at your option) any later version.
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
12 *
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
13 * FFmpeg is distributed in the hope that it will be useful,
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
16 * Lesser General Public License for more details.
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
17 *
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
18 * You should have received a copy of the GNU Lesser General Public
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
19 * License along with FFmpeg; if not, write to the Free Software
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
21 */
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
22
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
23 /**
11644
7dd2a45249a9 Remove explicit filename from Doxygen @file commands.
diego
parents: 10306
diff changeset
24 * @file
7523
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
25 * AAC decoder data
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
26 * @author Oded Shimon ( ods15 ods15 dyndns org )
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
27 * @author Maxim Gavrilov ( maxim.gavrilov gmail com )
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
28 */
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
29
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 7609
diff changeset
30 #ifndef AVCODEC_AACDECTAB_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 7609
diff changeset
31 #define AVCODEC_AACDECTAB_H
7523
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
32
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
33 #include "aac.h"
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
34
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
35 #include <stdint.h>
a3f7ffdb676d Sync already committed code with that in SoC and commit more OKed hunks of code
superdump
parents:
diff changeset
36
7609
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
37 /* @name tns_tmp2_map
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
38 * Tables of the tmp2[] arrays of LPC coefficients used for TNS.
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
39 * The suffix _M_N[] indicate the values of coef_compress and coef_res
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
40 * respectively.
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
41 * @{
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
42 */
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
43 static const float tns_tmp2_map_1_3[4] = {
7790
209a9ad96a6c Multiply table by -1. This avoid doing this calculation (that was introduced
vitor
parents: 7760
diff changeset
44 0.00000000, -0.43388373, 0.64278758, 0.34202015,
7609
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
45 };
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
46
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
47 static const float tns_tmp2_map_0_3[8] = {
7790
209a9ad96a6c Multiply table by -1. This avoid doing this calculation (that was introduced
vitor
parents: 7760
diff changeset
48 0.00000000, -0.43388373, -0.78183150, -0.97492790,
209a9ad96a6c Multiply table by -1. This avoid doing this calculation (that was introduced
vitor
parents: 7760
diff changeset
49 0.98480773, 0.86602539, 0.64278758, 0.34202015,
7609
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
50 };
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
51
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
52 static const float tns_tmp2_map_1_4[8] = {
7790
209a9ad96a6c Multiply table by -1. This avoid doing this calculation (that was introduced
vitor
parents: 7760
diff changeset
53 0.00000000, -0.20791170, -0.40673664, -0.58778524,
209a9ad96a6c Multiply table by -1. This avoid doing this calculation (that was introduced
vitor
parents: 7760
diff changeset
54 0.67369562, 0.52643216, 0.36124167, 0.18374951,
7609
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
55 };
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
56
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
57 static const float tns_tmp2_map_0_4[16] = {
7790
209a9ad96a6c Multiply table by -1. This avoid doing this calculation (that was introduced
vitor
parents: 7760
diff changeset
58 0.00000000, -0.20791170, -0.40673664, -0.58778524,
209a9ad96a6c Multiply table by -1. This avoid doing this calculation (that was introduced
vitor
parents: 7760
diff changeset
59 -0.74314481, -0.86602539, -0.95105654, -0.99452192,
209a9ad96a6c Multiply table by -1. This avoid doing this calculation (that was introduced
vitor
parents: 7760
diff changeset
60 0.99573416, 0.96182561, 0.89516330, 0.79801720,
209a9ad96a6c Multiply table by -1. This avoid doing this calculation (that was introduced
vitor
parents: 7760
diff changeset
61 0.67369562, 0.52643216, 0.36124167, 0.18374951,
7609
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
62 };
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
63
7978
dc1a7a6ec58d Add (additional) const to many global tables.
reimar
parents: 7790
diff changeset
64 static const float * const tns_tmp2_map[4] = {
7609
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
65 tns_tmp2_map_0_3,
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
66 tns_tmp2_map_0_4,
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
67 tns_tmp2_map_1_3,
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
68 tns_tmp2_map_1_4
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
69 };
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
70 // @}
3f6fc60f1ed3 More OKed AAC decoder code hunks
superdump
parents: 7608
diff changeset
71
10306
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
72 static const int8_t tags_per_config[16] = { 0, 1, 1, 2, 3, 3, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0 };
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
73
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
74 static const uint8_t aac_channel_layout_map[7][5][2] = {
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
75 { { TYPE_SCE, 0 }, },
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
76 { { TYPE_CPE, 0 }, },
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
77 { { TYPE_CPE, 0 }, { TYPE_SCE, 0 }, },
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
78 { { TYPE_CPE, 0 }, { TYPE_SCE, 0 }, { TYPE_SCE, 1 }, },
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
79 { { TYPE_CPE, 0 }, { TYPE_SCE, 0 }, { TYPE_CPE, 1 }, },
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
80 { { TYPE_CPE, 0 }, { TYPE_SCE, 0 }, { TYPE_LFE, 0 }, { TYPE_CPE, 1 }, },
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
81 { { TYPE_CPE, 0 }, { TYPE_SCE, 0 }, { TYPE_LFE, 0 }, { TYPE_CPE, 2 }, { TYPE_CPE, 1 }, },
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
82 };
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
83
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
84 static const int64_t aac_channel_layout[8] = {
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
85 CH_LAYOUT_MONO,
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
86 CH_LAYOUT_STEREO,
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
87 CH_LAYOUT_SURROUND,
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
88 CH_LAYOUT_4POINT0,
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
89 CH_LAYOUT_5POINT0_BACK,
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
90 CH_LAYOUT_5POINT1_BACK,
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
91 CH_LAYOUT_7POINT1_WIDE,
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
92 0,
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
93 };
c97a6cabee62 AAC: Add channel layout support for channel configuration as defined in the
superdump
parents: 9846
diff changeset
94
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 7609
diff changeset
95 #endif /* AVCODEC_AACDECTAB_H */