This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: qv4l2: open the device node using libv4l if supplied on the command line. Author: Hans Verkuil <[email protected]> Date: Fri Dec 24 19:50:28 2010 +0100 It did open the device node using the system call open(), but libv4l should be used by default. The difference in behavior between passing the device node on the command line and via the open button on the toolbar was confusing. Signed-off-by: Hans Verkuil <[email protected]> utils/qv4l2/qv4l2.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=d9464e6b5e9dbbba090bf218427c847ee99159a9 diff --git a/utils/qv4l2/qv4l2.cpp b/utils/qv4l2/qv4l2.cpp index 9d11a46..5646bcf 100644 --- a/utils/qv4l2/qv4l2.cpp +++ b/utils/qv4l2/qv4l2.cpp @@ -522,7 +522,7 @@ int main(int argc, char **argv) a.setWindowIcon(QIcon(":/qv4l2.png")); g_mw = new ApplicationWindow(); g_mw->setWindowTitle("V4L2 Test Bench"); - g_mw->setDevice(a.argc() > 1 ? a.argv()[1] : "/dev/video0", true); + g_mw->setDevice(a.argc() > 1 ? a.argv()[1] : "/dev/video0", false); g_mw->show(); a.connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit())); return a.exec(); _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
