diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-07-02 14:47:34 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-07-14 04:09:49 +0200 |
commit | 96c1e6d40d389eeb628840030dfe340d762a7ac8 (patch) | |
tree | b66be319363b96162dea4f44073eba331e652d07 /libavformat/url.h | |
parent | 806212498ae6b333d0c85dbc9c750580da7c6838 (diff) | |
download | ffmpeg-96c1e6d40d389eeb628840030dfe340d762a7ac8.tar.gz |
doxygen: Make sure parameter names match between .c and .h files.
Diffstat (limited to 'libavformat/url.h')
-rw-r--r-- | libavformat/url.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/url.h b/libavformat/url.h index caafe07cce..d69d0bc5c5 100644 --- a/libavformat/url.h +++ b/libavformat/url.h @@ -74,12 +74,12 @@ typedef struct URLProtocol { * @return 0 in case of success, a negative value corresponding to an * AVERROR code in case of failure */ -int ffurl_alloc(URLContext **h, const char *url, int flags); +int ffurl_alloc(URLContext **puc, const char *filename, int flags); /** * Connect an URLContext that has been allocated by ffurl_alloc */ -int ffurl_connect(URLContext *h); +int ffurl_connect(URLContext *uc); /** * Create an URLContext for accessing to the resource indicated by @@ -92,7 +92,7 @@ int ffurl_connect(URLContext *h); * @return 0 in case of success, a negative value corresponding to an * AVERROR code in case of failure */ -int ffurl_open(URLContext **h, const char *url, int flags); +int ffurl_open(URLContext **puc, const char *filename, int flags); /** * Read up to size bytes from the resource accessed by h, and store |