diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-17 08:44:44 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-03 22:47:39 +0200 |
commit | 724f6a0fa43f615dcebb2cb16ccb7c60ef7ec95c (patch) | |
tree | 1f0ef0812a25da2ba0710e104ec134c47225c273 /libavformat/aviobuf.c | |
parent | 403ee835e7913eb9536b22c2b22edfdd700166a9 (diff) | |
download | ffmpeg-724f6a0fa43f615dcebb2cb16ccb7c60ef7ec95c.tar.gz |
avio: make url_fdopen internal.
The unbuffered URLContext API will be made private, so there's no point
in this function being public.
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r-- | libavformat/aviobuf.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 73045e6599..ad969ae72e 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -431,6 +431,10 @@ int url_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer) { return avio_close_dyn_buf(s, pbuffer); } +int url_fdopen(AVIOContext **s, URLContext *h) +{ + return ffio_fdopen(s, h); +} #endif int avio_put_str(AVIOContext *s, const char *str) @@ -818,7 +822,7 @@ uint64_t ffio_read_varlen(AVIOContext *bc){ return val; } -int url_fdopen(AVIOContext **s, URLContext *h) +int ffio_fdopen(AVIOContext **s, URLContext *h) { uint8_t *buffer; int buffer_size, max_packet_size; @@ -943,7 +947,7 @@ int avio_open(AVIOContext **s, const char *filename, int flags) err = url_open(&h, filename, flags); if (err < 0) return err; - err = url_fdopen(s, h); + err = ffio_fdopen(s, h); if (err < 0) { url_close(h); return err; |