From e52a9145c8bf0748ae970e210e528ff56508964c Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 31 Mar 2011 17:36:06 +0200 Subject: avio: make url_close() internal. --- libavformat/applehttpproto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/applehttpproto.c') diff --git a/libavformat/applehttpproto.c b/libavformat/applehttpproto.c index fbc243e534..c7e12a9fb8 100644 --- a/libavformat/applehttpproto.c +++ b/libavformat/applehttpproto.c @@ -246,7 +246,7 @@ start: return ret; } if (s->seg_hd) { - url_close(s->seg_hd); + ffurl_close(s->seg_hd); s->seg_hd = NULL; s->cur_seq_no++; } @@ -292,7 +292,7 @@ static int applehttp_close(URLContext *h) free_segment_list(s); free_variant_list(s); - url_close(s->seg_hd); + ffurl_close(s->seg_hd); av_free(s); return 0; } -- cgit v1.2.3