diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-14 20:38:58 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-03-16 22:59:38 -0400 |
commit | 59f65d9579262651731e9a22845957d78b4c4f57 (patch) | |
tree | 3978aa992471ab5a963d82cad2b2d4f70fb66bdb /libavformat/avio.h | |
parent | 4839c192de7782605e1b7c9cc84aaf692cf67284 (diff) | |
download | ffmpeg-59f65d9579262651731e9a22845957d78b4c4f57.tar.gz |
avio: make url_setbufsize internal.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 8b404d067d..36be9fe4dd 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -429,6 +429,7 @@ attribute_deprecated int64_t url_ftell(AVIOContext *s); attribute_deprecated int64_t url_fsize(AVIOContext *s); #define URL_EOF (-1) attribute_deprecated int url_fgetc(AVIOContext *s); +attribute_deprecated int url_setbufsize(AVIOContext *s, int buf_size); /** * @} */ @@ -586,8 +587,6 @@ static inline int url_is_streamed(AVIOContext *s) */ int url_fdopen(AVIOContext **s, URLContext *h); -/** @warning must be called before any I/O */ -int url_setbufsize(AVIOContext *s, int buf_size); #if FF_API_URL_RESETBUF /** Reset the buffer for reading or writing. * @note Will drop any data currently in the buffer without transmitting it. |