Discussion:
[vlc-commits] access: rist: improve/fix config help text
Sergio Ammirata
2018-12-07 08:50:10 UTC
Permalink
vlc | branch: master | Sergio Ammirata <***@ammirata.net> | Tue Nov 27 09:31:41 2018 -0500| [c05d16945ee63e53eb93156dfc5204b6b24522d0] | committer: Thomas Guillem

access: rist: improve/fix config help text
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c05d16945ee63e53eb93156dfc5204b6b24522d0
---

modules/access/rist.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/access/rist.c b/modules/access/rist.c
index 3f39f812ba..6b3384aa5a 100644
--- a/modules/access/rist.c
+++ b/modules/access/rist.c
@@ -1064,16 +1064,16 @@ vlc_module_begin ()
add_integer( "packet-size", RIST_MAX_PACKET_SIZE,
N_("RIST maximum packet size (bytes)"), NULL, true )
add_integer( "maximum-jitter", RIST_DEFAULT_POLL_TIMEOUT,
- N_("This controls the maximum jitter that will be passed to the demux/decode chain " \
- "(defaut is 5ms)"),
- N_("The lower the value, the more CPU cycles the algortyhm will consume"), true )
+ N_("RIST demux/decode maximum jitter (defaut is 5ms)"),
+ N_("This controls the maximum jitter that will be passed to the demux/decode chain. "
+ "The lower the value, the more CPU cycles the algortyhm will consume"), true )
add_integer( "latency", RIST_DEFAULT_LATENCY, N_("RIST latency (ms)"), NULL, true )
add_integer( "retry-interval", RIST_DEFAULT_RETRY_INTERVAL, N_("RIST nack retry interval (ms)"),
NULL, true )
add_integer( "reorder-buffer", RIST_DEFAULT_REORDER_BUFFER, N_("RIST reorder buffer (ms)"),
NULL, true )
add_integer( "max-retries", RIST_MAX_RETRIES, N_("RIST maximum retry count"), NULL, true )
- add_bool( "eof-on-reset", false, "Trigger and EOF event when the buffer reset is triggered",
+ add_bool( "eof-on-reset", false, "Trigger an EOF event when a buffer reset is triggered",
"This is probably useful when you are decoding but not so much if you are streaming", true )
add_integer( "nack-type", NACK_FMT_RANGE,
N_("RIST nack type, 0 = range, 1 = bitmask. Default is range"), NULL, true )
Loading...