fix bug in loading samplelist with active streams, fix fade in button, fix exiting v4l2 thread

This commit is contained in:
niels
2015-12-01 01:29:32 +01:00
parent 6e8106b40d
commit f3fd9297f0
3 changed files with 26 additions and 17 deletions

View File

@@ -1962,7 +1962,6 @@ static void *v4l2_grabber_thread( void *v )
i->stop = 1;
unlock_(v);
veejay_msg(VEEJAY_MSG_ERROR, "v4l2: Not a device file: %s" , i->file );
pthread_exit(NULL);
return NULL;
}
@@ -1971,7 +1970,6 @@ static void *v4l2_grabber_thread( void *v )
i->stop = 1;
veejay_msg(0, "v4l2: error opening v4l2 device '%s'",i->file );
unlock_(v);
pthread_exit(NULL);
return NULL;
}
@@ -1992,7 +1990,6 @@ static void *v4l2_grabber_thread( void *v )
v4l2_close( v4l2 );
veejay_msg(0, "v4l2: error allocating memory" );
unlock_(v);
pthread_exit(NULL);
return NULL;
}