Commit d654f6dc authored by stefano's avatar stefano

Doxument url_open_protocol().


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21417 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 005f43af
...@@ -65,8 +65,20 @@ typedef struct URLPollEntry { ...@@ -65,8 +65,20 @@ typedef struct URLPollEntry {
typedef int URLInterruptCB(void); typedef int URLInterruptCB(void);
/**
* Creates an URLContext for accessing to the resource indicated by
* filename, and opens it using the URLProtocol up.
*
* @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 filename
* 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_protocol (URLContext **puc, struct URLProtocol *up, int url_open_protocol (URLContext **puc, struct URLProtocol *up,
const char *filename, int flags); const char *filename, int flags);
int url_open(URLContext **h, const char *filename, int flags); int url_open(URLContext **h, const char *filename, int flags);
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment