diff --git a/man/ustreamer.1 b/man/ustreamer.1 index 4b0dba7..e386940 100644 --- a/man/ustreamer.1 +++ b/man/ustreamer.1 @@ -78,7 +78,7 @@ Suppress repetitive signal source errors. Default: disabled. Enable DV-timings querying and events processing to automatic resolution change. Default: disabled. .TP .BR \-b\ \fIN ", " \-\-buffers\ \fIN -The number of buffers to receive data from the device. Each buffer may processed using an independent thread. +The number of buffers to receive data from the device. Each buffer may be processed using an independent thread. Default: 2 (the number of CPU cores (but not more than 4) + 1). .TP .BR \-w\ \fIN ", " \-\-workers\ \fIN diff --git a/src/ustreamer/options.c b/src/ustreamer/options.c index e2a777b..a0fce60 100644 --- a/src/ustreamer/options.c +++ b/src/ustreamer/options.c @@ -712,7 +712,7 @@ static void _help( SAY(" -t|--dv-timings ───────────────────── Enable DV-timings querying and events processing"); SAY(" to automatic resolution change. Default: disabled.\n"); SAY(" -b|--buffers ──────────────────── The number of buffers to receive data from the device."); - SAY(" Each buffer may processed using an independent thread."); + SAY(" Each buffer may be processed using an independent thread."); SAY(" Default: %u (the number of CPU cores (but not more than 4) + 1).\n", cap->n_bufs); SAY(" -w|--workers ──────────────────── The number of worker threads but not more than buffers."); SAY(" Default: %u (the number of CPU cores (but not more than 4)).\n", enc->n_workers);