diff options
author | Martin Storsjö <martin@martin.st> | 2010-06-20 23:59:15 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-11-05 16:54:39 +0200 |
commit | 18ae3626405a8b3d6dbb7e5b848d354cd7bf9a47 (patch) | |
tree | ace2e6abbe5cbdc429da760566220b290aa79a10 /libavformat/http.h | |
parent | d450cc4f4a7c4b072d6abc7af659347393e35314 (diff) | |
download | ffmpeg-18ae3626405a8b3d6dbb7e5b848d354cd7bf9a47.tar.gz |
http: Remove the custom function for disabling chunked posts
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/http.h')
-rw-r--r-- | libavformat/http.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavformat/http.h b/libavformat/http.h index c5ff5e134c..bd63a190dc 100644 --- a/libavformat/http.h +++ b/libavformat/http.h @@ -43,14 +43,6 @@ void ff_http_set_headers(URLContext *h, const char *headers); /** - * Enable or disable chunked transfer encoding. (default is enabled) - * - * @param h URL context for this HTTP connection - * @param is_chunked 0 to disable chunking, nonzero otherwise. - */ -void ff_http_set_chunked_transfer_encoding(URLContext *h, int is_chunked); - -/** * Initialize the authentication state based on another HTTP URLContext. * This can be used to pre-initialize the authentication parameters if * they are known beforehand, to avoid having to do an initial failing |