This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: qv4l2: reduce the minimum allowed width/height Author: Hans Verkuil <[email protected]> Date: Mon Nov 30 21:00:00 2015 +0100 The minimum allowed width and height for a capture window was 160x120, but for a raw VBI window that was too large (specifically the height). So set it to 16x12, that should be OK. Signed-off-by: Hans Verkuil <[email protected]> utils/qv4l2/capture-win.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=68768bd68afa0f3b820bd1f68630733628019578 diff --git a/utils/qv4l2/capture-win.cpp b/utils/qv4l2/capture-win.cpp index 6029345f55c0..4c3c145603f3 100644 --- a/utils/qv4l2/capture-win.cpp +++ b/utils/qv4l2/capture-win.cpp @@ -28,8 +28,8 @@ #include <math.h> -#define MIN_WIN_SIZE_WIDTH 160 -#define MIN_WIN_SIZE_HEIGHT 120 +#define MIN_WIN_SIZE_WIDTH 16 +#define MIN_WIN_SIZE_HEIGHT 12 bool CaptureWin::m_enableScaling = true; double CaptureWin::m_pixelAspectRatio = 1.0; _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
