diff options
Diffstat (limited to '')
-rw-r--r-- | legacy/evas/configure.ac | 2 | ||||
-rw-r--r-- | legacy/evas/src/lib/engines/common/evas_convert_yuv.c | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/legacy/evas/configure.ac b/legacy/evas/configure.ac index 6cf13dbc29..925d1f71ae 100644 --- a/legacy/evas/configure.ac +++ b/legacy/evas/configure.ac | |||
@@ -981,8 +981,6 @@ pthread_attr_setaffinity_np(NULL, 0, NULL); | |||
981 | [AC_MSG_ERROR([Missing pthread.h])]) | 981 | [AC_MSG_ERROR([Missing pthread.h])]) |
982 | pthread_cflags="-pthread" | 982 | pthread_cflags="-pthread" |
983 | pthread_libs="-pthread" | 983 | pthread_libs="-pthread" |
984 | AC_DEFINE(BUILD_ASYNC_EVENTS, 1, [Build async events support]) | ||
985 | AC_DEFINE(BUILD_ASYNC_PRELOAD, 1, [Build async image preload support]) | ||
986 | 984 | ||
987 | ####################################### | 985 | ####################################### |
988 | ## Pipe Renderer | 986 | ## Pipe Renderer |
diff --git a/legacy/evas/src/lib/engines/common/evas_convert_yuv.c b/legacy/evas/src/lib/engines/common/evas_convert_yuv.c index b943f2520c..0b6aa6a000 100644 --- a/legacy/evas/src/lib/engines/common/evas_convert_yuv.c +++ b/legacy/evas/src/lib/engines/common/evas_convert_yuv.c | |||
@@ -123,11 +123,6 @@ static int initted = 0; | |||
123 | void | 123 | void |
124 | evas_common_convert_yuv_420p_601_rgba(DATA8 **src, DATA8 *dst, int w, int h) | 124 | evas_common_convert_yuv_420p_601_rgba(DATA8 **src, DATA8 *dst, int w, int h) |
125 | { | 125 | { |
126 | int mmx = 0, sse = 0, sse2 = 0; | ||
127 | |||
128 | #ifdef BUILD_MMX | ||
129 | evas_common_cpu_can_do(&mmx, &sse, &sse2); | ||
130 | #endif | ||
131 | if (evas_common_cpu_has_feature(CPU_FEATURE_MMX2)) | 126 | if (evas_common_cpu_has_feature(CPU_FEATURE_MMX2)) |
132 | _evas_yv12torgb_sse(src, dst, w, h); | 127 | _evas_yv12torgb_sse(src, dst, w, h); |
133 | else if (evas_common_cpu_has_feature(CPU_FEATURE_MMX)) | 128 | else if (evas_common_cpu_has_feature(CPU_FEATURE_MMX)) |