From 22a3212e32b696028e21f00871f3cb48c044029d Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 21 Feb 2011 22:45:20 +0100 Subject: avio: rename url_fopen/fclose -> avio_open/close. Signed-off-by: Ronald S. Bultje --- libavformat/aviobuf.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'libavformat/aviobuf.c') diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index eb48758c46..270352ecb6 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -356,6 +356,15 @@ void put_nbyte(AVIOContext *s, int b, int count) { ffio_fill(s, b, count); } + +int url_fopen(AVIOContext **s, const char *filename, int flags) +{ + return avio_open(s, filename, flags); +} +int url_fclose(AVIOContext *s) +{ + return avio_close(s); +} #endif int avio_put_str(AVIOContext *s, const char *str) @@ -843,7 +852,7 @@ int ff_rewind_with_probe_data(AVIOContext *s, unsigned char *buf, int buf_size) return 0; } -int url_fopen(AVIOContext **s, const char *filename, int flags) +int avio_open(AVIOContext **s, const char *filename, int flags) { URLContext *h; int err; @@ -859,7 +868,7 @@ int url_fopen(AVIOContext **s, const char *filename, int flags) return 0; } -int url_fclose(AVIOContext *s) +int avio_close(AVIOContext *s) { URLContext *h = s->opaque; -- cgit v1.2.3