# HG changeset patch # User stefano # Date 1264370852 0 # Node ID 0ab98b4a377877af742fae80a3257aef950f2ed0 # Parent fc7b009926b5e4a5ca6269ab045f91284ffe004e Doxument url_open(). diff -r fc7b009926b5 -r 0ab98b4a3778 avio.h --- a/avio.h Sun Jan 24 21:37:35 2010 +0000 +++ b/avio.h Sun Jan 24 22:07:32 2010 +0000 @@ -79,6 +79,17 @@ int url_open_protocol (URLContext **puc, struct URLProtocol *up, const char *url, int flags); +/** + * Creates an URLContext for accessing to the resource indicated by + * url, and opens it. + * + * @param puc pointer to the location where, in case of success, the + * function puts the pointer to the created URLContext + * @param flags flags which control how the resource indicated by url + * is to be opened + * @return 0 in case of success, a negative value corresponding to an + * AVERROR code in case of failure + */ int url_open(URLContext **h, const char *url, int flags); /**