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]
/
avplay.c
diff --git
a/avplay.c
b/avplay.c
index
fd9774e
..
f90899c
100644
(file)
--- a/
avplay.c
+++ b/
avplay.c
@@
-2593,8
+2593,7
@@
static int decode_thread(void *arg)
if (is->subtitle_stream >= 0)
stream_component_close(is, is->subtitle_stream);
if (is->ic) {
- av_close_input_file(is->ic);
- is->ic = NULL; /* safety */
+ avformat_close_input(&is->ic);
}
avio_set_interrupt_cb(NULL);