diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-31 17:36:06 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-04 17:45:20 +0200 |
commit | e52a9145c8bf0748ae970e210e528ff56508964c (patch) | |
tree | 7fbe99aa17e8bc5d966cc4beadb4b8b2202b5a54 /libavformat/avio.h | |
parent | 58a48c6511f1aded04885933fdb2449251f0ec64 (diff) | |
download | ffmpeg-e52a9145c8bf0748ae970e210e528ff56508964c.tar.gz |
avio: make url_close() internal.
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 7f53fdddc6..cd78d932d9 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -109,18 +109,10 @@ attribute_deprecated int url_read(URLContext *h, unsigned char *buf, int size); attribute_deprecated int url_read_complete(URLContext *h, unsigned char *buf, int size); attribute_deprecated int url_write(URLContext *h, const unsigned char *buf, int size); attribute_deprecated int64_t url_seek(URLContext *h, int64_t pos, int whence); +attribute_deprecated int url_close(URLContext *h); #endif /** - * Close the resource accessed by the URLContext h, and free the - * memory used by it. - * - * @return a negative value if an error condition occurred, 0 - * otherwise - */ -int url_close(URLContext *h); - -/** * Return a non-zero value if the resource indicated by url * exists, 0 otherwise. */ |