annotate i386/vp3dsp_sse2.h @ 5217:f276a83296d5 libavcodec

typos
author diego
date Thu, 05 Jul 2007 12:06:02 +0000
parents 42b99a3aadde
children 1d83e9c34641
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 SSE2 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
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
22 #ifndef VP3DSP_SSE2_H
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
23 #define VP3DSP_SSE2_H
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_sse2(int16_t *input_data);
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
28 void ff_vp3_idct_put_sse2(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_sse2(uint8_t *dest, int line_size, DCTELEM *block);
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
30
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
31 #endif /* VP3DSP_SSE2_H */