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:
49d8207
)
qv4l2: fix broken VBI support
author
Hans Verkuil
<hans.verkuil@cisco.com>
Sat, 14 Dec 2013 11:13:40 +0000
(12:13 +0100)
committer
Hans Verkuil
<hans.verkuil@cisco.com>
Sat, 14 Dec 2013 11:13:40 +0000
(12:13 +0100)
Using qv4l2 with a vbi node broke when the pixel aspect ratio code was added.
Pixel aspect doesn't apply to vbi, and that wasn't checked.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
utils/qv4l2/general-tab.cpp
patch
|
blob
|
history
diff --git
a/utils/qv4l2/general-tab.cpp
b/utils/qv4l2/general-tab.cpp
index
a0bc75f
..
ad519c0
100644
(file)
--- a/
utils/qv4l2/general-tab.cpp
+++ b/
utils/qv4l2/general-tab.cpp
@@
-972,7
+972,8
@@
void GeneralTab::updateStandard()
m_tvStandard->setStatusTip(what);
m_tvStandard->setWhatsThis(what);
updateVidCapFormat();
- changePixelAspectRatio();
+ if (!isVbi())
+ changePixelAspectRatio();
}
void GeneralTab::qryStdClicked()