annotate i386/vp3dsp_sse2.h @ 7855:9a135b6a1dc7 libavcodec

Correct order of parsing for pulse scalefactor band and offset to match the specification. Patch by Alex Converse (alex converse gmail com)
author superdump
date Sat, 13 Sep 2008 18:47:43 +0000
parents c4a4495715dd
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 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
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6763
diff changeset
22 #ifndef AVCODEC_I386_VP3DSP_SSE2_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6763
diff changeset
23 #define AVCODEC_I386_VP3DSP_SSE2_H
5014
42b99a3aadde better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
diff changeset
24
6763
f7cbb7733146 Use full path for #includes from another directory.
diego
parents: 5830
diff changeset
25 #include "libavcodec/dsputil.h"
5014
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
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6763
diff changeset
31 #endif /* AVCODEC_I386_VP3DSP_SSE2_H */