]> git.sesse.net Git - vlc/blob - plugins/memcpy/memcpy.c
* ALL: the first libvlc commit.
[vlc] / plugins / memcpy / memcpy.c
1 /*****************************************************************************
2  * memcpy.c : classic memcpy module
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: memcpy.c,v 1.9 2002/06/01 12:32:00 sam Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31
32 #undef HAVE_MMX
33 #undef HAVE_MMX2
34 #undef HAVE_SSE
35 #undef HAVE_SSE2
36 #undef HAVE_3DNOW
37 #undef HAVE_ALTIVEC
38
39 #if defined( MODULE_NAME_IS_memcpy3dn )
40 #   define HAVE_3DNOW
41 #   include "fastmemcpy.h"
42 #elif defined( MODULE_NAME_IS_memcpymmx )
43 #   define HAVE_MMX
44 #   include "fastmemcpy.h"
45 #elif defined( MODULE_NAME_IS_memcpymmxext )
46 #   define HAVE_MMX2
47 #   include "fastmemcpy.h"
48 #endif
49
50 /*****************************************************************************
51  * Local and extern prototypes.
52  *****************************************************************************/
53 static void memcpy_getfunctions( function_list_t * p_function_list );
54 #ifndef MODULE_NAME_IS_memcpy
55 void *      _M( fast_memcpy )  ( void * to, const void * from, size_t len );
56 #endif
57
58 /*****************************************************************************
59  * Build configuration tree.
60  *****************************************************************************/
61 MODULE_CONFIG_START
62 MODULE_CONFIG_STOP
63
64 MODULE_INIT_START
65 #ifdef MODULE_NAME_IS_memcpy
66     SET_DESCRIPTION( _("libc memcpy module") )
67     ADD_CAPABILITY( MEMCPY, 50 )
68     ADD_SHORTCUT( "c" )
69     ADD_SHORTCUT( "libc" )
70 #elif defined( MODULE_NAME_IS_memcpy3dn )
71     SET_DESCRIPTION( _("3D Now! memcpy module") )
72     ADD_CAPABILITY( MEMCPY, 100 )
73     ADD_REQUIREMENT( 3DNOW )
74     ADD_SHORTCUT( "3dn" )
75     ADD_SHORTCUT( "3dnow" )
76     ADD_SHORTCUT( "memcpy3dn" )
77     ADD_SHORTCUT( "memcpy3dnow" )
78 #elif defined( MODULE_NAME_IS_memcpymmx )
79     SET_DESCRIPTION( _("MMX memcpy module") )
80     ADD_CAPABILITY( MEMCPY, 100 )
81     ADD_REQUIREMENT( MMX )
82     ADD_SHORTCUT( "mmx" )
83     ADD_SHORTCUT( "memcpymmx" )
84 #elif defined( MODULE_NAME_IS_memcpymmxext )
85     SET_DESCRIPTION( _("MMX EXT memcpy module") )
86     ADD_CAPABILITY( MEMCPY, 200 )
87     ADD_REQUIREMENT( MMXEXT )
88     ADD_SHORTCUT( "mmxext" )
89     ADD_SHORTCUT( "memcpymmxext" )
90 #endif
91 MODULE_INIT_STOP
92
93 MODULE_ACTIVATE_START
94     memcpy_getfunctions( &p_module->p_functions->memcpy );
95 MODULE_ACTIVATE_STOP
96
97 MODULE_DEACTIVATE_START
98 MODULE_DEACTIVATE_STOP
99
100 /* Following functions are local */
101
102 /*****************************************************************************
103  * Functions exported as capabilities. They are declared as static so that
104  * we don't pollute the namespace too much.
105  *****************************************************************************/
106 static void memcpy_getfunctions( function_list_t * p_function_list )
107 {
108 #ifdef MODULE_NAME_IS_memcpy
109     p_function_list->functions.memcpy.pf_memcpy = memcpy;
110 #else
111     p_function_list->functions.memcpy.pf_memcpy = _M( fast_memcpy );
112 #endif
113 }
114