diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-31 16:10:50 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-04 17:45:20 +0200 |
commit | 62eaaeacb5ac083d9a96e95ec7df12113cd3ca81 (patch) | |
tree | 8772497d42fbd2c746a22b382cb05afaf9d71ea5 /libavformat/avio.h | |
parent | 5652bb94719c0bb0c58f73e44531af9977493223 (diff) | |
download | ffmpeg-62eaaeacb5ac083d9a96e95ec7df12113cd3ca81.tar.gz |
avio: make url_connect internal.
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 8ba8a23f6e..311a51f8c4 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -103,14 +103,10 @@ typedef int URLInterruptCB(void); attribute_deprecated int url_open_protocol (URLContext **puc, struct URLProtocol *up, const char *url, int flags); attribute_deprecated int url_alloc(URLContext **h, const char *url, int flags); +attribute_deprecated int url_connect(URLContext *h); #endif /** - * Connect an URLContext that has been allocated by url_alloc - */ -int url_connect(URLContext *h); - -/** * Create an URLContext for accessing to the resource indicated by * url, and open it. * |