]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/http.h
avformat/rmdec: Check for EOF in index packet reading
[ffmpeg] / libavformat / http.h
index 662bd2cab69955cd9edaea3e37fadc33e27bec4f..5557ce9b5801ba2dcdd8daa5a255db8e4060df32 100644 (file)
@@ -56,6 +56,19 @@ int ff_http_get_shutdown_status(URLContext *h);
  */
 int ff_http_do_new_request(URLContext *h, const char *uri);
 
+/**
+ * Send a new HTTP request, reusing the old connection.
+ *
+ * @param h pointer to the resource
+ * @param uri uri used to perform the request
+ * @param options  A dictionary filled with HTTP options. On return
+ * this parameter will be destroyed and replaced with a dict containing options
+ * that were not found. May be NULL.
+ * @return a negative value if an error condition occurred, 0
+ * otherwise
+ */
+int ff_http_do_new_request2(URLContext *h, const char *uri, AVDictionary **options);
+
 int ff_http_averror(int status_code, int default_averror);
 
 #endif /* AVFORMAT_HTTP_H */