Mercurial > libavcodec.hg
annotate aandcttab.h @ 12198:677570e65a75 libavcodec
Revert r24339 (it causes fate failures on x86-64) - I'll figure out what's
wrong with it tomorrow or so, then re-submit.
author | rbultje |
---|---|
date | Mon, 19 Jul 2010 23:57:09 +0000 |
parents | 7dd2a45249a9 |
children |
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 /** |
11644
7dd2a45249a9
Remove explicit filename from Doxygen @file commands.
diego
parents:
8718
diff
changeset
|
20 * @file |
8218
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 */ |