annotate aandcttab.h @ 11032:01bd040f8607 libavcodec

Unroll main loop so the edge==0 case is seperate. This allows many things to be simplified away. h264 decoder is overall 1% faster with a mbaff sample and 0.1% slower with the cathedral sample, probably because the slow loop filter code must be loaded into the code cache for each first MB of each row but isnt used for the following MBs.
author michael
date Thu, 28 Jan 2010 01:24:25 +0000
parents e9d9d946f213
children 7dd2a45249a9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 /**
8718
e9d9d946f213 Use full internal pathname in doxygen @file directives.
diego
parents: 8218
diff changeset
20 * @file libavcodec/aandcttab.h
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 */