diff options
author | Jun Li <junli1026@gmail.com> | 2019-03-30 21:35:51 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-03-31 23:23:52 +0200 |
commit | 4f5e660e69545bd54955002c13dcbe4dbddb1dc4 (patch) | |
tree | b8f729820d498cb2ab617bb609a67d72fe37f4b4 /doc/protocols.texi | |
parent | 93748a2efa66c49b2b84d163829566ebbfc2bd58 (diff) | |
download | ffmpeg-4f5e660e69545bd54955002c13dcbe4dbddb1dc4.tar.gz |
avformat/doc, http, icecast, rtsp: Add option to disable send-expect-100
Fix ticket #7297
The current setting for send-expect-100 option is either
enabled if applicable or forced enabled, no option to force
disable the header. This change is to expand the option setting
to provide more flexibility, which is useful for rstp case.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'doc/protocols.texi')
-rw-r--r-- | doc/protocols.texi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/protocols.texi b/doc/protocols.texi index f0fd344ce9..e1caa049a5 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -385,6 +385,11 @@ ffmpeg -i somefile.ogg -chunked_post 0 -c copy -f ogg http://@var{server}:@var{p wget --post-file=somefile.ogg http://@var{server}:@var{port} @end example +@item send_expect_100 +Send an Expect: 100-continue header for POST. If set to 1 it will send, if set +to 0 it won't, if set to -1 it will try to send if it is applicable. Default +value is -1. + @end table @subsection HTTP Cookies |