annotate i386/vp3dsp_mmx.h @ 8400:4877d4c6d8ae libavcodec

Add automatic prefix handling to yasm functions. Does nothing now, but will be useful for porting x264 asm in the future.
author darkshikari
date Fri, 19 Dec 2008 03:01:08 +0000
parents b661cf8690a1
children
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
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 7759
diff changeset
22 #ifndef AVCODEC_I386_VP3DSP_MMX_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 7759
diff changeset
23 #define AVCODEC_I386_VP3DSP_MMX_H
5014
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
24
6766
7d3e8f609a90 Add missing required header directly.
diego
parents: 6765
diff changeset
25 #include <stdint.h>
6765
02784df73762 Add missing path to #include.
diego
parents: 5830
diff changeset
26 #include "libavcodec/dsputil.h"
5014
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
27
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
28 void ff_vp3_idct_mmx(int16_t *data);
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
29 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
30 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
31
8033
b661cf8690a1 VP3 loop filter is mmx2 not mmx
conrad
parents: 8032
diff changeset
32 void ff_vp3_v_loop_filter_mmx2(uint8_t *src, int stride, int *bounding_values);
b661cf8690a1 VP3 loop filter is mmx2 not mmx
conrad
parents: 8032
diff changeset
33 void ff_vp3_h_loop_filter_mmx2(uint8_t *src, int stride, int *bounding_values);
8032
0839f325edb5 MMX VP3 Loop Filter
conrad
parents: 7760
diff changeset
34
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 7759
diff changeset
35 #endif /* AVCODEC_I386_VP3DSP_MMX_H */