]> git.sesse.net Git - ffmpeg/blob - libavcodec/x86/hpeldsp_mmx.c
lavc: AV-prefix all codec flags
[ffmpeg] / libavcodec / x86 / hpeldsp_mmx.c
1 /*
2  * MMX-optimized avg/put pixel routines
3  *
4  * Copyright (c) 2001 Fabrice Bellard
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include <stddef.h>
24 #include <stdint.h>
25
26 #include "config.h"
27 #include "hpeldsp.h"
28 #include "inline_asm.h"
29
30 #if HAVE_MMX_INLINE
31
32 void ff_avg_pixels8_x2_mmx(uint8_t *block, const uint8_t *pixels,
33                            ptrdiff_t line_size, int h)
34 {
35     MOVQ_BFE(mm6);
36     JUMPALIGN();
37     do {
38         __asm__ volatile(
39             "movq  %1, %%mm0            \n\t"
40             "movq  1%1, %%mm1           \n\t"
41             "movq  %0, %%mm3            \n\t"
42             PAVGB_MMX(%%mm0, %%mm1, %%mm2, %%mm6)
43             PAVGB_MMX(%%mm3, %%mm2, %%mm0, %%mm6)
44             "movq  %%mm0, %0            \n\t"
45             :"+m"(*block)
46             :"m"(*pixels)
47             :"memory");
48         pixels += line_size;
49         block += line_size;
50     } while (--h);
51 }
52
53 #endif /* HAVE_MMX_INLINE */