summaryrefslogtreecommitdiff
path: root/src/xine-engine/xine.c
diff options
context:
space:
mode:
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
*/