projects
/
platform
/
upstream
/
v4l-utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0472cd2
)
qv4l2: add support for the new V4L2_CTRL_FLAG_VOLATILE flag.
author
Hans Verkuil
<hans.verkuil@cisco.com>
Fri, 7 Oct 2011 06:31:03 +0000
(08:31 +0200)
committer
Hans Verkuil
<hans.verkuil@cisco.com>
Fri, 7 Oct 2011 06:31:03 +0000
(08:31 +0200)
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
utils/qv4l2/ctrl-tab.cpp
patch
|
blob
|
history
diff --git
a/utils/qv4l2/ctrl-tab.cpp
b/utils/qv4l2/ctrl-tab.cpp
index
d274440
..
beadaed
100644
(file)
--- a/
utils/qv4l2/ctrl-tab.cpp
+++ b/
utils/qv4l2/ctrl-tab.cpp
@@
-803,6
+803,8
@@
QString ApplicationWindow::getCtrlFlags(unsigned flags)
s += "update ";
if (flags & V4L2_CTRL_FLAG_INACTIVE)
s += "inactive ";
+ if (flags & V4L2_CTRL_FLAG_VOLATILE)
+ s += "volatile ";
if (flags & V4L2_CTRL_FLAG_SLIDER)
s += "slider ";
if (s.length()) s = QString("\nFlags: ") + s;