Mercurial > libavcodec.hg
annotate aandcttab.h @ 8629:04423b2f6e0b libavcodec
cosmetics: Remove pointless period after copyright statement non-sentences.
author | diego |
---|---|
date | Mon, 19 Jan 2009 15:46:40 +0000 |
parents | 03054192daac |
children | e9d9d946f213 |
rev | line source |
---|---|
8218
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
1 /* |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
2 * This file is part of FFmpeg. |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
3 * |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
4 * FFmpeg is free software; you can redistribute it and/or |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
5 * modify it under the terms of the GNU Lesser General Public |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
6 * License as published by the Free Software Foundation; either |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
7 * version 2.1 of the License, or (at your option) any later version. |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
8 * |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
9 * FFmpeg is distributed in the hope that it will be useful, |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
12 * Lesser General Public License for more details. |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
13 * |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
14 * You should have received a copy of the GNU Lesser General Public |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
15 * License along with FFmpeg; if not, write to the Free Software |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
17 */ |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
18 |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
19 /** |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
20 * @file aandcttab.h |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
21 * AAN (Arai Agui Nakajima) (I)DCT tables |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
22 */ |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
23 |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
24 #ifndef AVCODEC_AANDCTTAB_H |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
25 #define AVCODEC_AANDCTTAB_H |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
26 |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
27 #include <stdint.h> |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
28 |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
29 extern const uint16_t ff_aanscales[64]; |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
30 extern const uint16_t ff_inv_aanscales[64]; |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
31 |
03054192daac
Move aanscales tables to their own file; fixes compilation without encoders.
diego
parents:
diff
changeset
|
32 #endif /* AVCODEC_AANDCTTAB_H */ |