diff --git a/man/ustreamer.1 b/man/ustreamer.1 index cb78ddb..7a280a4 100644 --- a/man/ustreamer.1 +++ b/man/ustreamer.1 @@ -253,6 +253,9 @@ Interval between keyframes. Default: 30. .TP .BR \-\-h264\-m2m\-device\ \fI/dev/path Path to V4L2 mem-to-mem encoder device. Default: auto-select. +.TP +.BR \-\-h264\-boost\-device +Increase encoder performance on PiKVM V4. Default: disabled. .SS "RAW sink options" .TP diff --git a/src/ustreamer/options.c b/src/ustreamer/options.c index b18bdba..d70b565 100644 --- a/src/ustreamer/options.c +++ b/src/ustreamer/options.c @@ -749,6 +749,7 @@ static void _help(FILE *fp, const us_capture_s *cap, const us_encoder_s *enc, co SAY(" --h264-bitrate ───────── H264 bitrate in Kbps. Default: %u.\n", stream->h264_bitrate); SAY(" --h264-gop ──────────────── Interval between keyframes. Default: %u.\n", stream->h264_gop); SAY(" --h264-m2m-device ─ Path to V4L2 M2M encoder device. Default: auto select.\n"); + SAY(" --h264-boost ────────────────── Increase encoder performance on PiKVM V4. Default: disabled.\n"); # ifdef WITH_V4P SAY("Passthrough options for PiKVM V4:"); SAY("═════════════════════════════════");