diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-31 17:36:06 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-04 17:45:20 +0200 |
commit | e52a9145c8bf0748ae970e210e528ff56508964c (patch) | |
tree | 7fbe99aa17e8bc5d966cc4beadb4b8b2202b5a54 /libavformat/applehttpproto.c | |
parent | 58a48c6511f1aded04885933fdb2449251f0ec64 (diff) | |
download | ffmpeg-e52a9145c8bf0748ae970e210e528ff56508964c.tar.gz |
avio: make url_close() internal.
Diffstat (limited to 'libavformat/applehttpproto.c')
-rw-r--r-- | libavformat/applehttpproto.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |