diff options
author | Andrey Utkin <andrey.krieger.utkin@gmail.com> | 2012-08-27 16:31:08 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2016-03-24 10:33:50 +0200 |
commit | ccea588f831906084b8c8235222920e6984beb72 (patch) | |
tree | 571171710e83cbfc7f3842d4d053b5bb0023b478 /doc | |
parent | d44f3e4059506a182f59218b1e967d42b01e097c (diff) | |
download | ffmpeg-ccea588f831906084b8c8235222920e6984beb72.tar.gz |
avio: Add an option 'rw_timeout'
If set non-zero, this limits duration of the retry_transfer_wrapper()
loop, thus affecting ffurl_read*(), ffurl_write(). As soon as
one single byte is successfully received/transmitted, the timer
restarts.
This has further changes by Michael Niedermayer and Martin Storsjö.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/protocols.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/protocols.texi b/doc/protocols.texi index f30567d839..c0663ac76a 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -17,6 +17,14 @@ particular protocol using the option The option "-protocols" of the av* tools will display the list of supported protocols. +All protocols accept the following options: + +@table @option +@item rw_timeout +Maximum time to wait for (network) read/write operations to complete, +in microseconds. +@end table + A description of the currently available protocols follows. @section concat |