annotate vorbis.h @ 3798:6e7b9a44800c libavcodec

vorbis.h -> vorbis_data.c move tables from vorbis.h to a C file so they can be used later in vorbis_enc.c
author ods15
date Sat, 30 Sep 2006 18:47:15 +0000
parents c537a97eec66
children 203cd258fc20
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
1 /*
3798
6e7b9a44800c vorbis.h -> vorbis_data.c
ods15
parents: 3699
diff changeset
2 * copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org>
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
3 *
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
4 * This library is free software; you can redistribute it and/or
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
5 * modify it under the terms of the GNU Lesser General Public
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
6 * License as published by the Free Software Foundation; either
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
7 * version 2 of the License, or (at your option) any later version.
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
8 *
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
9 * This library is distributed in the hope that it will be useful,
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
12 * Lesser General Public License for more details.
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
13 *
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
14 * You should have received a copy of the GNU Lesser General Public
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
15 * License along with this library; if not, write to the Free Software
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
17 */
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3571
diff changeset
18
3798
6e7b9a44800c vorbis.h -> vorbis_data.c
ods15
parents: 3699
diff changeset
19 #ifndef VORBIS_H
6e7b9a44800c vorbis.h -> vorbis_data.c
ods15
parents: 3699
diff changeset
20 #define VORBIS_H
2697
4fe1c19fc7a3 Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
diff changeset
21
3798
6e7b9a44800c vorbis.h -> vorbis_data.c
ods15
parents: 3699
diff changeset
22 extern const float ff_vorbis_floor1_inverse_db_table[256];
6e7b9a44800c vorbis.h -> vorbis_data.c
ods15
parents: 3699
diff changeset
23 extern const float * ff_vorbis_vwin[8];
2697
4fe1c19fc7a3 Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
diff changeset
24
3798
6e7b9a44800c vorbis.h -> vorbis_data.c
ods15
parents: 3699
diff changeset
25 #endif