diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-12-11 10:38:28 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-12-12 20:34:38 +0100 |
commit | cd3716b9aae7e141e7b4faf9783131809f40991f (patch) | |
tree | 242d19f2239d299454d57879582d1ef0f9fe44ca /libavformat/applehttp.c | |
parent | 526604545fb1cc0c11af356fbffd5cddf8cdc95f (diff) | |
download | ffmpeg-cd3716b9aae7e141e7b4faf9783131809f40991f.tar.gz |
Replace all uses of av_close_input_file() with avformat_close_input().
Diffstat (limited to 'libavformat/applehttp.c')
-rw-r--r-- | libavformat/applehttp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/applehttp.c b/libavformat/applehttp.c index 366d8327ff..7cc04999d1 100644 --- a/libavformat/applehttp.c +++ b/libavformat/applehttp.c @@ -132,7 +132,7 @@ static void free_variant_list(AppleHTTPContext *c) ffurl_close(var->input); if (var->ctx) { var->ctx->pb = NULL; - av_close_input_file(var->ctx); + avformat_close_input(&var->ctx); } av_free(var); } |