annotate i386/vp3dsp_mmx.h @ 5830:1d83e9c34641 libavcodec

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents f276a83296d5
children 02784df73762
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5014
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
1 /*
5217
diego
parents: 5014
diff changeset
2 * vp3dsp MMX function declarations
5014
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
3 * Copyright (c) 2007 Aurelien Jacobs <aurel@gnuage.org>
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
4 *
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
5 * This file is part of FFmpeg.
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
6 *
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
11 *
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
15 * Lesser General Public License for more details.
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
16 *
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
20 */
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
21
5830
1d83e9c34641 Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents: 5217
diff changeset
22 #ifndef FFMPEG_VP3DSP_MMX_H
1d83e9c34641 Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents: 5217
diff changeset
23 #define FFMPEG_VP3DSP_MMX_H
5014
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
24
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
25 #include "dsputil.h"
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
26
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
27 void ff_vp3_idct_mmx(int16_t *data);
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
28 void ff_vp3_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block);
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
29 void ff_vp3_idct_add_mmx(uint8_t *dest, int line_size, DCTELEM *block);
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
30 void ff_vp3_dsp_init_mmx(void);
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
31
5830
1d83e9c34641 Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents: 5217
diff changeset
32 #endif /* FFMPEG_VP3DSP_MMX_H */