]> git.sesse.net Git - vlc/blobdiff - modules/mmxext/memcpy.c
Move x86 memcpy plugins to mmx, mmxext, 3dnow directories
[vlc] / modules / mmxext / memcpy.c
diff --git a/modules/mmxext/memcpy.c b/modules/mmxext/memcpy.c
new file mode 100644 (file)
index 0000000..4f21a88
--- /dev/null
@@ -0,0 +1,52 @@
+/*****************************************************************************
+ * memcpy.c : classic memcpy module
+ *****************************************************************************
+ * Copyright (C) 2001 the VideoLAN team
+ * $Id$
+ *
+ * Authors: Samuel Hocevar <sam@zoy.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <vlc_common.h>
+#include <vlc_plugin.h>
+#include <vlc_cpu.h>
+
+#define HAVE_MMX2
+#include "../mmx/fastmemcpy.h"
+
+static int Activate( vlc_object_t *p_this )
+{
+    VLC_UNUSED(p_this);
+    vlc_fastmem_register( fast_memcpy, NULL );
+
+    return VLC_SUCCESS;
+}
+
+vlc_module_begin ()
+    set_category( CAT_ADVANCED )
+    set_subcategory( SUBCAT_ADVANCED_MISC )
+    set_description( N_("MMX EXT memcpy") )
+    add_shortcut( "mmxext" )
+    add_shortcut( "memcpymmxext" )
+    set_capability( "memcpy", 200 )
+    set_callbacks( Activate, NULL )
+vlc_module_end ()
+