diff options
author | Moritz Barsnick <barsnick@gmx.net> | 2014-06-20 10:16:01 +0200 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2014-06-20 10:21:31 -0800 |
commit | 10b8481a26346c5586185f65f6f4fca216277fdf (patch) | |
tree | dc03ee3b70e8bcb1da22d3186cd3512c6f9c1731 /libavformat/rtsp.c | |
parent | 0a995311ceeb4987086b6d42185400f804cecfb7 (diff) | |
download | ffmpeg-10b8481a26346c5586185f65f6f4fca216277fdf.tar.gz |
fix several typos
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 8960a9a8ba..dfd0f83ab0 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -91,7 +91,7 @@ const AVOption ff_rtsp_options[] = { { "min_port", "set minimum local UDP port", OFFSET(rtp_port_min), AV_OPT_TYPE_INT, {.i64 = RTSP_RTP_PORT_MIN}, 0, 65535, DEC|ENC }, { "max_port", "set maximum local UDP port", OFFSET(rtp_port_max), AV_OPT_TYPE_INT, {.i64 = RTSP_RTP_PORT_MAX}, 0, 65535, DEC|ENC }, { "timeout", "set maximum timeout (in seconds) to wait for incoming connections (-1 is infinite, imply flag listen)", OFFSET(initial_timeout), AV_OPT_TYPE_INT, {.i64 = -1}, INT_MIN, INT_MAX, DEC }, - { "stimeout", "set timeout (in micro seconds) of socket TCP I/O operations", OFFSET(stimeout), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, DEC }, + { "stimeout", "set timeout (in microseconds) of socket TCP I/O operations", OFFSET(stimeout), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, DEC }, RTSP_REORDERING_OPTS(), { "user-agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = LIBAVFORMAT_IDENT}, 0, 0, DEC }, { NULL }, |