spell fixes (#323)

This commit is contained in:
Paul Donald 2026-02-09 15:59:05 +01:00 committed by GitHub
parent 29ee20e864
commit 1cda22bfd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ For example, the recommended way of running µStreamer with TC358743-based captu
.RS .RS
\fB\-\-format=uyvy \e\fR # Device input format \fB\-\-format=uyvy \e\fR # Device input format
.nf .nf
\fB\-\-encoder=m2m-image \e\fR # Hardware encoding with V4L2 M2M intraface \fB\-\-encoder=m2m-image \e\fR # Hardware encoding with V4L2 M2M interface
.nf .nf
\fB\-\-workers=3 \e\fR # Maximum workers for V4L2 encoder \fB\-\-workers=3 \e\fR # Maximum workers for V4L2 encoder
.nf .nf
@ -66,7 +66,7 @@ Available: MMAP, USERPTR; default: MMAP.
Desired FPS. Default: maximum possible. Desired FPS. Default: maximum possible.
.TP .TP
.BR \-z\ \fIN ", " \-\-min\-frame\-size\ \fIN .BR \-z\ \fIN ", " \-\-min\-frame\-size\ \fIN
Drop frames smaller then this limit. Useful if the device produces small\-sized garbage frames. Default: 128 bytes. Drop frames smaller than this limit. Useful if the device produces small\-sized garbage frames. Default: 128 bytes.
.TP .TP
.BR \-T ", " \-\-allow\-truncated\-frames .BR \-T ", " \-\-allow\-truncated\-frames
Allows to handle truncated frames. Useful if the device produces incorrect but still acceptable frames. Default: disabled. Allows to handle truncated frames. Useful if the device produces incorrect but still acceptable frames. Default: disabled.

View File

@ -705,7 +705,7 @@ static void _help(
SAY(" Changing of this parameter may increase the performance. Or not."); SAY(" Changing of this parameter may increase the performance. Or not.");
SAY(" Available: %s; default: MMAP.\n", US_IO_METHODS_STR); SAY(" Available: %s; default: MMAP.\n", US_IO_METHODS_STR);
SAY(" -f|--desired-fps <N> ──────────────── Desired FPS. Default: maximum possible.\n"); SAY(" -f|--desired-fps <N> ──────────────── Desired FPS. Default: maximum possible.\n");
SAY(" -z|--min-frame-size <N> ───────────── Drop frames smaller then this limit. Useful if the device"); SAY(" -z|--min-frame-size <N> ───────────── Drop frames smaller than this limit. Useful if the device");
SAY(" produces small-sized garbage frames. Default: %zu bytes.\n", cap->min_frame_size); SAY(" produces small-sized garbage frames. Default: %zu bytes.\n", cap->min_frame_size);
SAY(" -T|--allow-truncated-frames ───────── Allows to handle truncated frames. Useful if the device"); SAY(" -T|--allow-truncated-frames ───────── Allows to handle truncated frames. Useful if the device");
SAY(" produces incorrect but still acceptable frames. Default: disabled.\n"); SAY(" produces incorrect but still acceptable frames. Default: disabled.\n");