diff options
author | ivoire <ivoire@271ca591-50e6-457e-a4d7-9fbfa1de8f49> | 2010-08-23 23:40:23 +0200 |
---|---|---|
committer | ivoire <ivoire@271ca591-50e6-457e-a4d7-9fbfa1de8f49> | 2010-08-23 23:40:23 +0200 |
commit | 92837ea4bb9224b6870f8aec4c2f02b63e16c7ac (patch) | |
tree | cf56249b9f4a34ea67dc24d7c14dc0be4efcc19b | |
parent | 85f4ed1f40ac1139149e4daf580309bc62e01e1c (diff) | |
download | multicat-92837ea4bb9224b6870f8aec4c2f02b63e16c7ac.tar multicat-92837ea4bb9224b6870f8aec4c2f02b63e16c7ac.zip |
Fix typos.
git-svn-id: svn://svn.videolan.org/multicat/trunk@14 271ca591-50e6-457e-a4d7-9fbfa1de8f49
-rw-r--r-- | aggregartp.c | 4 | ||||
-rw-r--r-- | desaggregartp.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/aggregartp.c b/aggregartp.c index 070bbd9..533071b 100644 --- a/aggregartp.c +++ b/aggregartp.c @@ -59,10 +59,10 @@ static uint16_t i_rtp_cc = 0; static void usage(void) { - msg_Raw( NULL, "Usage: aggregartp [-i <RT priority>] [-t <ttl>] [-w] [-s <SSRC IP>] [-U] [-m <mtu>] @<src host> <dest host 1>[,<weight 1>] ... [<dest host N>,<weight N>]" ); + msg_Raw( NULL, "Usage: aggregartp [-i <RT priority>] [-t <ttl>] [-w] [-o <SSRC IP>] [-U] [-m <mtu>] @<src host> <dest host 1>[,<weight 1>] ... [<dest host N>,<weight N>]" ); msg_Raw( NULL, " host format: [<connect addr>[:<connect port>]][@[<bind addr][:<bind port>]]" ); msg_Raw( NULL, " -w: overwrite RTP timestamps" ); - msg_Raw( NULL, " -S: overwrite RTP SSRC" ); + msg_Raw( NULL, " -o: overwrite RTP SSRC" ); msg_Raw( NULL, " -U: prepend RTP header" ); exit(EXIT_FAILURE); } diff --git a/desaggregartp.c b/desaggregartp.c index 2e9027d..f78ac9e 100644 --- a/desaggregartp.c +++ b/desaggregartp.c @@ -67,7 +67,7 @@ static uint64_t i_buffer_length = DEFAULT_BUFFER_LENGTH * 27000; static void usage(void) { - msg_Raw( NULL, "Usage: desaggregartp [-i <RT priority>] [-b <buffer length>] [-U] [-m <mtu>] <src host 1> ... [<src host N>] <dest host>" ); + msg_Raw( NULL, "Usage: desaggregartp [-i <RT priority>] [-t <ttl>] [-b <buffer length>] [-U] [-m <mtu>] <src host 1> ... [<src host N>] <dest host>" ); msg_Raw( NULL, " host format: [<connect addr>[:<connect port>]][@[<bind addr][:<bind port>]]" ); msg_Raw( NULL, " -U: strip RTP header" ); msg_Raw( NULL, " -b: buffer length in ms" ); |