]> git.sesse.net Git - vlc/blob - modules/misc/memcpy/memcpy.c
15d64ce1938fdd6b228bb20a5636c7329371d32a
[vlc] / modules / misc / memcpy / memcpy.c
1 /*****************************************************************************
2  * memcpy.c : classic memcpy module
3  *****************************************************************************
4  * Copyright (C) 2001 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33
34 #undef HAVE_MMX
35 #undef HAVE_MMX2
36 #undef HAVE_SSE
37 #undef HAVE_SSE2
38 #undef HAVE_3DNOW
39 #undef HAVE_ALTIVEC
40
41 #if defined( MODULE_NAME_IS_memcpy3dn )
42 #   define PRIORITY 100
43 #   define HAVE_3DNOW
44 #elif defined( MODULE_NAME_IS_memcpymmx )
45 #   define PRIORITY 100
46 #   define HAVE_MMX
47 #elif defined( MODULE_NAME_IS_memcpymmxext )
48 #   define PRIORITY 200
49 #   define HAVE_MMX2
50 #else
51 #   define PRIORITY 50
52 #endif
53
54 /*****************************************************************************
55  * Extern prototype
56  *****************************************************************************/
57 #ifndef MODULE_NAME_IS_memcpy
58 #   define fast_memcpy E_(fast_memcpy)
59 #   include "fastmemcpy.h"
60 #endif
61
62 /*****************************************************************************
63  * Module initializer
64  *****************************************************************************/
65 static int Activate ( vlc_object_t *p_this )
66 {
67 #ifndef MODULE_NAME_IS_memcpy
68     vlc_fastmem_register( fast_memcpy, NULL );
69 #endif
70
71     return VLC_SUCCESS;
72 }
73
74 /*****************************************************************************
75  * Module descriptor
76  *****************************************************************************/
77 vlc_module_begin();
78     set_category( CAT_ADVANCED );
79     set_subcategory( SUBCAT_ADVANCED_MISC );
80 #ifdef MODULE_NAME_IS_memcpy
81     set_description( _("libc memcpy") );
82     add_shortcut( "c" );
83     add_shortcut( "libc" );
84 #elif defined( MODULE_NAME_IS_memcpy3dn )
85     set_description( _("3D Now! memcpy") );
86     add_requirement( 3DNOW );
87     add_shortcut( "3dn" );
88     add_shortcut( "3dnow" );
89     add_shortcut( "memcpy3dn" );
90     add_shortcut( "memcpy3dnow" );
91 #elif defined( MODULE_NAME_IS_memcpymmx )
92     set_description( _("MMX memcpy") );
93     add_requirement( MMX );
94     add_shortcut( "mmx" );
95     add_shortcut( "memcpymmx" );
96 #elif defined( MODULE_NAME_IS_memcpymmxext )
97     set_description( _("MMX EXT memcpy") );
98     add_requirement( MMXEXT );
99     add_shortcut( "mmxext" );
100     add_shortcut( "memcpymmxext" );
101 #endif
102     set_capability( "memcpy", PRIORITY );
103     set_callbacks( Activate, NULL );
104 vlc_module_end();
105