annotate ac3tab.h @ 6323:e6da66f378c7 libavcodec

mpegvideo.h has two function declarations with the 'inline' specifier but no definition for those functions. The C standard requires a definition to appear in the same translation unit for any function declared with 'inline'. Most of the files including mpegvideo.h do not define those functions. Fix this by removing the 'inline' specifiers from the header. patch by Uoti Urpala
author diego
date Sun, 03 Feb 2008 17:54:30 +0000
parents 29635f7c3d9c
children 2d0b86dfe5bb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
1 /*
4879
60603c9c89d1 move ac3 tables from a .h to a .c
aurel
parents: 4855
diff changeset
2 * AC3 tables
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
4 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
5 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
6 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
11 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
15 * Lesser General Public License for more details.
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
16 *
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
3036
0b546eab515d Update licensing information: The FSF changed postal address.
diego
parents: 2967
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
20 */
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
21
5830
1d83e9c34641 Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents: 4880
diff changeset
22 #ifndef FFMPEG_AC3TAB_H
1d83e9c34641 Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents: 4880
diff changeset
23 #define FFMPEG_AC3TAB_H
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents:
diff changeset
24
4879
60603c9c89d1 move ac3 tables from a .h to a .c
aurel
parents: 4855
diff changeset
25 #include "common.h"
4648
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
26
6002
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
27 extern const uint16_t ff_ac3_frame_size_tab[38][3];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
28 extern const uint8_t ff_ac3_channels_tab[8];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
29 extern const uint16_t ff_ac3_sample_rate_tab[3];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
30 extern const uint16_t ff_ac3_bitrate_tab[19];
4880
5e714485a55c cosmetics: align
aurel
parents: 4879
diff changeset
31 extern const int16_t ff_ac3_window[256];
6002
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
32 extern const uint8_t ff_ac3_log_add_tab[260];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
33 extern const uint16_t ff_ac3_hearing_threshold_tab[50][3];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
34 extern const uint8_t ff_ac3_bap_tab[64];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
35 extern const uint8_t ff_ac3_slow_decay_tab[4];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
36 extern const uint8_t ff_ac3_fast_decay_tab[4];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
37 extern const uint16_t ff_ac3_slow_gain_tab[4];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
38 extern const uint16_t ff_ac3_db_per_bit_tab[4];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
39 extern const int16_t ff_ac3_floor_tab[8];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
40 extern const uint16_t ff_ac3_fast_gain_tab[8];
29635f7c3d9c cosmetics: rename ac3 tables
jbr
parents: 5830
diff changeset
41 extern const uint8_t ff_ac3_critical_band_size_tab[50];
4684
6ec0afffc572 split ac3_parametric_bit_allocation into 3 separate functions
jbr
parents: 4679
diff changeset
42
5830
1d83e9c34641 Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents: 4880
diff changeset
43 #endif /* FFMPEG_AC3TAB_H */