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: qvidcap: update the man page Author: Hans Verkuil <hverk...@xs4all.nl> Date: Thu Jan 30 13:38:16 2025 +0100 Update the man page. In the usage message move the two new options to the 'file' specific section. Signed-off-by: Hans Verkuil <hverk...@xs4all.nl> utils/qvidcap/qvidcap.1.in | 10 ++++++++-- utils/qvidcap/qvidcap.cpp | 7 ++++--- 2 files changed, 12 insertions(+), 5 deletions(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=d63ab223aed14858111a9d642396b1b5a82a7771 diff --git a/utils/qvidcap/qvidcap.1.in b/utils/qvidcap/qvidcap.1.in index e133f1e87fe6..20047b972519 100644 --- a/utils/qvidcap/qvidcap.1.in +++ b/utils/qvidcap/qvidcap.1.in @@ -30,7 +30,7 @@ Stop after <cnt> captured frames Request <bufs> buffers (default 4) when streaming from a video device. .TP \fB\-s\fR, \fB\-\-single\-step\fR\fI[=<frm>]\fR -Starting with frame <frm> (default 1), pause after displaying each frame +Starting with frame <frm> (default 0), pause after displaying each frame until Space is pressed. .TP \fB\-C\fR, \fB\-\-colorspace\fR=\fI<c>\fR @@ -86,11 +86,17 @@ set additional horizontal padding (after width) \fB--fps\fR=\fI<fps>\fR Set frames-per-second (default is 30) .TP -The following option is only valid when reading from a file: +The following options are only valid when reading from a file: .TP \fB\-F\fR, \fB-\-field\fR=\fI<f>\fR Override field setting. <f> can be one of the following field layouts: any, none, top, bottom, interlaced, seq_tb, seq_bt, alternate, interlaced_tb, interlaced_bt .TP +\fB\-\-no\-loop\fR +Stop at the end of the file, don't loop back to the beginning. +.TP +\fB\-\-from\-frame\fR=\fI<frame>\fR +Start playing back the file at the given frame number (the first frame is frame 0). +.TP The following options are specific to the test pattern generator: .TP \fB--list-patterns\fR diff --git a/utils/qvidcap/qvidcap.cpp b/utils/qvidcap/qvidcap.cpp index 0c614976214d..5a9c7eccf701 100644 --- a/utils/qvidcap/qvidcap.cpp +++ b/utils/qvidcap/qvidcap.cpp @@ -64,8 +64,6 @@ static void usage() " -t, --timings report frame render timings\n" " -v, --verbose be more verbose\n" " -R, --raw open device in raw mode\n" - " --no-loop stop at the end of the file, don't loop back to the beginning\n" - " --from-frame=<frame> start playing back the file at the given frame number (starts at 0)\n" "\n" " --opengl force openGL to display the video\n" " --opengles force openGL ES to display the video\n" @@ -77,12 +75,15 @@ static void usage() " -A, --padding=<bytes> set additional horizontal padding (after width)\n" " --fps=<fps> set frames-per-second (default is 30)\n" "\n" - " The following option is only valid when reading from a file:\n" + " The following options are only valid when reading from a file:\n" "\n" " -F, --field=<f> override field setting\n" " <f> can be one of the following field layouts:\n" " any, none, top, bottom, interlaced, seq_tb, seq_bt,\n" " alternate, interlaced_tb, interlaced_bt\n" + " --no-loop stop at the end of the file, don't loop back to the beginning\n" + " --from-frame=<frame> start playing back the file at the given frame number (starts at 0)\n" + "\n" " The following options are specific to the test pattern generator:\n" "\n" " --list-patterns list available patterns for use with --pattern\n"