]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/tcp.c
Merge commit 'cecf45b2bfbb85e9e59f355428fbd4d8cbc652a8'
[ffmpeg] / libavformat / tcp.c
index 0aabc9db07b0d4d29999b5b2dc663e18afae584e..4016c0e1ac91fc8b6d1e439bf4d2eb9dea09f20b 100644 (file)
@@ -46,7 +46,7 @@ typedef struct TCPContext {
 static const AVOption options[] = {
     { "listen",          "Listen for incoming connections",  OFFSET(listen),         AV_OPT_TYPE_INT, { .i64 = 0 },     0,       1,       .flags = D|E },
     { "timeout",     "set timeout (in microseconds) of socket I/O operations", OFFSET(rw_timeout),     AV_OPT_TYPE_INT, { .i64 = -1 },         -1, INT_MAX, .flags = D|E },
-    { "listen_timeout",  "Connection awaiting timeout",      OFFSET(listen_timeout), AV_OPT_TYPE_INT, { .i64 = -1 },         -1, INT_MAX, .flags = D|E },
+    { "listen_timeout",  "Connection awaiting timeout (in milliseconds)",      OFFSET(listen_timeout), AV_OPT_TYPE_INT, { .i64 = -1 },         -1, INT_MAX, .flags = D|E },
     { NULL }
 };