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/url.h | |
parent | 5652bb94719c0bb0c58f73e44531af9977493223 (diff) | |
download | ffmpeg-62eaaeacb5ac083d9a96e95ec7df12113cd3ca81.tar.gz |
avio: make url_connect internal.
Diffstat (limited to 'libavformat/url.h')
-rw-r--r-- | libavformat/url.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/url.h b/libavformat/url.h index d15d4abba2..30fbf62aec 100644 --- a/libavformat/url.h +++ b/libavformat/url.h @@ -40,4 +40,9 @@ */ int ffurl_alloc(URLContext **h, const char *url, int flags); +/** + * Connect an URLContext that has been allocated by ffurl_alloc + */ +int ffurl_connect(URLContext *h); + #endif //AVFORMAT_URL_H |