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/utils.c | |
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/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index b1c9755646..113728f389 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -621,7 +621,7 @@ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename, goto fail; } if (buf_size > 0) { - url_setbufsize(pb, buf_size); + ffio_set_buf_size(pb, buf_size); } if (!fmt && (err = av_probe_input_buffer(pb, &fmt, filename, logctx, 0, logctx ? (*ic_ptr)->probesize : 0)) < 0) { goto fail; |