From 408fda50c451915eca2d53b4e074057ea3f3af07 Mon Sep 17 00:00:00 2001 From: Oliver Dewdney Date: Wed, 8 Jun 2016 07:57:09 +0000 Subject: [PATCH] made mmal priority --- videosourceplugin.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/videosourceplugin.c b/videosourceplugin.c index 5a0fbae..a937707 100644 --- a/videosourceplugin.c +++ b/videosourceplugin.c @@ -13,15 +13,15 @@ void video_source_plugins_init(struct context *cnt) { struct config *conf = &cnt->conf; - if (conf->filecam_path) { - filecam_select_as_plugin(cnt); - return; - } #ifdef HAVE_MMAL if (conf->mmalcam_name) { mmalcam_select_as_plugin(cnt); return; } #endif + if (conf->filecam_path) { + filecam_select_as_plugin(cnt); + return; + } }