From: ddennedy Date: Fri, 12 Dec 2008 19:10:00 +0000 (+0000) Subject: motion_est/filter_motion_est.c: the sse compilation flag logic was inverted X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=1305c947ce29e5b12e770ed562879a9648f62ffa;p=melted motion_est/filter_motion_est.c: the sse compilation flag logic was inverted git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1264 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/modules/motion_est/filter_motion_est.c b/src/modules/motion_est/filter_motion_est.c index 3403a12..80a11ad 100644 --- a/src/modules/motion_est/filter_motion_est.c +++ b/src/modules/motion_est/filter_motion_est.c @@ -34,7 +34,7 @@ #include #include -#ifndef USE_SSE +#ifdef USE_SSE #include "sad_sse.h" #endif @@ -614,7 +614,7 @@ static void motion_search( uint8_t *from, //mb_w){ -#ifndef USE_SSE +#ifdef USE_SSE case 4: if(c->mb_h == 4) c->compare_optimized = sad_sse_422_luma_4x4; else c->compare_optimized = sad_sse_422_luma_4w; break;