projects
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Replace all uses of av_close_input_file() with avformat_close_input().
[ffmpeg.git]
/
libavfilter
/
vsrc_movie.c
diff --git
a/libavfilter/vsrc_movie.c
b/libavfilter/vsrc_movie.c
index
a5e9124
..
dec4999
100644
(file)
--- 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);
+ av
format_close_input(&
movie->format_ctx);
avfilter_unref_buffer(movie->picref);
av_freep(&movie->frame);
}