diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-31 17:51:24 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-04 17:45:20 +0200 |
commit | 1869ea03b7fb8e3db2f034f4214e03bd3f8b3d30 (patch) | |
tree | 06b04228af62545e07c141a5d8f4c9fbb12b78c6 /libavformat/avio.h | |
parent | 32a97d4630e8e742cba0344054842ed059dda807 (diff) | |
download | ffmpeg-1869ea03b7fb8e3db2f034f4214e03bd3f8b3d30.tar.gz |
avio: make url_get_file_handle() internal.
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 28f24e06aa..020a75aa03 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -111,6 +111,7 @@ attribute_deprecated int url_write(URLContext *h, const unsigned char *buf, int attribute_deprecated int64_t url_seek(URLContext *h, int64_t pos, int whence); attribute_deprecated int url_close(URLContext *h); attribute_deprecated int64_t url_filesize(URLContext *h); +attribute_deprecated int url_get_file_handle(URLContext *h); #endif /** @@ -120,14 +121,6 @@ attribute_deprecated int64_t url_filesize(URLContext *h); int url_exist(const char *url); /** - * Return the file descriptor associated with this URL. For RTP, this - * will return only the RTP file descriptor, not the RTCP file descriptor. - * - * @return the file descriptor associated with this URL, or <0 on error. - */ -int url_get_file_handle(URLContext *h); - -/** * Return the maximum packet size associated to packetized file * handle. If the file is not packetized (stream like HTTP or file on * disk), then 0 is returned. |