Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-12-11 13:38:28 +0400
committerAnton Khirnov <anton@khirnov.net>2011-12-12 23:34:38 +0400
commitcd3716b9aae7e141e7b4faf9783131809f40991f (patch)
tree242d19f2239d299454d57879582d1ef0f9fe44ca /libavfilter
parent526604545fb1cc0c11af356fbffd5cddf8cdc95f (diff)
Replace all uses of av_close_input_file() with avformat_close_input().
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vsrc_movie.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_movie.c b/libavfilter/vsrc_movie.c
index a5e9124128..dec499904e 100644
--- a/libavfilter/vsrc_movie.c
+++ b/libavfilter/vsrc_movie.c
@@ -192,7 +192,7 @@ static av_cold void uninit(AVFilterContext *ctx)
if (movie->codec_ctx)
avcodec_close(movie->codec_ctx);
if (movie->format_ctx)
- av_close_input_file(movie->format_ctx);
+ avformat_close_input(&movie->format_ctx);
avfilter_unref_buffer(movie->picref);
av_freep(&movie->frame);
}