summaryrefslogtreecommitdiff
path: root/libavformat/url.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-01-29 02:06:50 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-02 23:53:29 +0100
commit7b43646e18343eae65fc2d40f3423209b532f6a7 (patch)
treedbcfe2f7230fa11f209e01b2aedde0346630dddf /libavformat/url.h
parent5cad6c6e855b2ed2941426474b5b06f34dec9ce4 (diff)
avformat/avio: Remove ffurl_open
It is only used in commented-out (and nonworking) code in async.c. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/url.h')
-rw-r--r--libavformat/url.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/libavformat/url.h b/libavformat/url.h
index 1ef5ca35d5..f13e851a14 100644
--- a/libavformat/url.h
+++ b/libavformat/url.h
@@ -56,8 +56,8 @@ typedef struct URLProtocol {
int (*url_open)( URLContext *h, const char *url, int flags);
/**
* This callback is to be used by protocols which open further nested
- * protocols. options are then to be passed to ffurl_open()/ffurl_connect()
- * for those nested protocols.
+ * protocols. options are then to be passed to ffurl_open_whitelist()
+ * or ffurl_connect() for those nested protocols.
*/
int (*url_open2)(URLContext *h, const char *url, int flags, AVDictionary **options);
int (*url_accept)(URLContext *s, URLContext **c);
@@ -148,9 +148,6 @@ int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags,
const char *whitelist, const char* blacklist,
URLContext *parent);
-int ffurl_open(URLContext **puc, const char *filename, int flags,
- const AVIOInterruptCB *int_cb, AVDictionary **options);
-
/**
* Accept an URLContext c on an URLContext s
*