]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/url.h
avformat: Remove getters and setters
[ffmpeg] / libavformat / url.h
index f13e851a142be896391b4fb82329eba9d9e3842b..3bb1cf89f7689bfdeb5e832ce29b384db67cd431 100644 (file)
@@ -308,6 +308,16 @@ int ff_url_join(char *str, int size, const char *proto,
  * @param size the size of buf
  * @param base the base url, may be equal to buf.
  * @param rel the new url, which is interpreted relative to base
+ * @param handle_dos_paths handle DOS paths for file or unspecified protocol
+ */
+int ff_make_absolute_url2(char *buf, int size, const char *base,
+                         const char *rel, int handle_dos_paths);
+
+/**
+ * Convert a relative url into an absolute url, given a base url.
+ *
+ * Same as ff_make_absolute_url2 with handle_dos_paths being equal to
+ * HAVE_DOS_PATHS config variable.
  */
 int ff_make_absolute_url(char *buf, int size, const char *base,
                          const char *rel);