annotate i386/idct_xvid.h @ 7760:c4a4495715dd libavcodec

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents f76581c16848
children 8547a4ae101b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6585
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
1 /*
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
2 * XVID MPEG-4 VIDEO CODEC
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
3 *
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
4 * This file is part of FFmpeg.
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
5 *
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
8 * License as published by the Free Software Foundation; either
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
10 *
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
14 * Lesser General Public License for more details.
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
15 *
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
19 */
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
20
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
21 /*!
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
22 * @file idct_xvid.h
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
23 * header for Xvid IDCT functions
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
24 */
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
25
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6601
diff changeset
26 #ifndef AVCODEC_I386_IDCT_XVID_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6601
diff changeset
27 #define AVCODEC_I386_IDCT_XVID_H
6585
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
28
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
29 void ff_idct_xvid_mmx(short *block);
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
30 void ff_idct_xvid_mmx2(short *block);
6601
f76581c16848 Add a new xvid-style IDCT using SSE2.
astrange
parents: 6585
diff changeset
31 void ff_idct_xvid_sse2(short *block);
f76581c16848 Add a new xvid-style IDCT using SSE2.
astrange
parents: 6585
diff changeset
32 void ff_idct_xvid_sse2_put(uint8_t *dest, int line_size, short *block);
f76581c16848 Add a new xvid-style IDCT using SSE2.
astrange
parents: 6585
diff changeset
33 void ff_idct_xvid_sse2_add(uint8_t *dest, int line_size, short *block);
6585
0ec61ed36c29 Add a header file to declare Xvid IDCT functions.
diego
parents:
diff changeset
34
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6601
diff changeset
35 #endif /* AVCODEC_I386_IDCT_XVID_H */