This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/xawtv3.git tree:
Subject: x11: If not specified otherwise, try to use libv4l plugin first Author: Mauro Carvalho Chehab <[email protected]> Date: Tue Feb 1 16:45:05 2011 -0200 Signed-off-by: Mauro Carvalho Chehab <[email protected]> x11/xt.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) --- http://git.linuxtv.org/xawtv3.git?a=commitdiff;h=dc9d37eab5fd6a6a0af8a9a687c13a57d29e761d diff --git a/x11/xt.c b/x11/xt.c index ec56160..5fcc0ee 100644 --- a/x11/xt.c +++ b/x11/xt.c @@ -1389,9 +1389,15 @@ grabber_init() } #endif if (!do_overlay) { + drv = NULL; + if (debug) fprintf(stderr,"x11: remote display (overlay disabled)\n"); - drv = ng_vid_open(args.device, args.driver, NULL, base, &h_drv); + + if (!args.driver) + drv = ng_vid_open(args.device, "libv4l", NULL, base, &h_drv); + if (!drv) + drv = ng_vid_open(args.device, args.driver, NULL, base, &h_drv); } else { screen.width = XtScreen(app_shell)->width; screen.height = XtScreen(app_shell)->height; _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
