summaryrefslogtreecommitdiff
path: root/src/xine-engine/xine.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-10-20 22:18:59 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-10-20 22:18:59 +0000
commit4c9f9727a0a48d2672d7915a11a2e5da99458b49 (patch)
tree331140bb80f402f00a4e472ab5cef2de540e3358 /src/xine-engine/xine.c
parent058e3bd311b75c2a380780dac16abd712c92e2a6 (diff)
downloadxine-lib-4c9f9727a0a48d2672d7915a11a2e5da99458b49.tar.gz
xine-lib-4c9f9727a0a48d2672d7915a11a2e5da99458b49.tar.bz2
optimized memcpy (mmx,sse,etc...)
CVS patchset: 844 CVS date: 2001/10/20 22:18:59
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r--src/xine-engine/xine.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c
index 12452aaee..694729a66 100644
--- a/src/xine-engine/xine.c
+++ b/src/xine-engine/xine.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine.c,v 1.70 2001/10/20 02:01:51 guenter Exp $
+ * $Id: xine.c,v 1.71 2001/10/20 22:18:59 miguelfreitas Exp $
*
* top-level xine functions
*
@@ -52,6 +52,7 @@
#include "configfile.h"
#include "monitor.h"
#include "utils.h"
+#include "memcpy.h"
#ifndef __GNUC__
#define __FUNCTION__ __func__
@@ -391,6 +392,9 @@ xine_t *xine_init (vo_driver_t *vo,
this->config = config;
xine_debug = config->lookup_int (config, "xine_debug", 0);
+ /* probe for optimized memcpy or config setting */
+ probe_fast_memcpy(config);
+
/*
* init locks
*/