remove async events defined - now required... and remove useless

mmx/sse checks in yuv convert.



SVN revision: 78042
This commit is contained in:
Carsten Haitzler 2012-10-16 09:14:21 +00:00
parent 800279c23b
commit 85349ce559
2 changed files with 0 additions and 7 deletions

View File

@ -981,8 +981,6 @@ pthread_attr_setaffinity_np(NULL, 0, NULL);
[AC_MSG_ERROR([Missing pthread.h])])
pthread_cflags="-pthread"
pthread_libs="-pthread"
AC_DEFINE(BUILD_ASYNC_EVENTS, 1, [Build async events support])
AC_DEFINE(BUILD_ASYNC_PRELOAD, 1, [Build async image preload support])
#######################################
## Pipe Renderer

View File

@ -123,11 +123,6 @@ static int initted = 0;
void
evas_common_convert_yuv_420p_601_rgba(DATA8 **src, DATA8 *dst, int w, int h)
{
int mmx = 0, sse = 0, sse2 = 0;
#ifdef BUILD_MMX
evas_common_cpu_can_do(&mmx, &sse, &sse2);
#endif
if (evas_common_cpu_has_feature(CPU_FEATURE_MMX2))
_evas_yv12torgb_sse(src, dst, w, h);
else if (evas_common_cpu_has_feature(CPU_FEATURE_MMX))