filtedr_motion_est.c: respect new --disable-sse configure flag and whitespace cleanup
[melted] / src / inigo / inigo.c
index 456fe74..592900e 100644 (file)
@@ -322,18 +322,10 @@ int main( int argc, char **argv )
        mlt_producer inigo = NULL;
        FILE *store = NULL;
        char *name = NULL;
-       struct sched_param scp;
        mlt_profile profile = NULL;
        int is_progress = 0;
        int is_silent = 0;
 
-       // Use realtime scheduling if possible
-       memset( &scp, '\0', sizeof( scp ) );
-       scp.sched_priority = sched_get_priority_max( SCHED_FIFO ) - 1;
-#ifndef __DARWIN__
-       sched_setscheduler( 0, SCHED_FIFO, &scp );
-#endif
-
        // Construct the factory
        mlt_repository repo = mlt_factory_init( NULL );