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]
/
libavformat
/
seek-test.c
diff --git
a/libavformat/seek-test.c
b/libavformat/seek-test.c
index
43dee56
..
699c693
100644
(file)
--- a/
libavformat/seek-test.c
+++ b/
libavformat/seek-test.c
@@
-127,7
+127,7
@@
int main(int argc, char **argv)
printf("ret:%-10s st:%2d flags:%d ts:%s\n", ret_str(ret), stream_id, i&1, ts_buf);
}
- av
_close_input_file(
ic);
+ av
format_close_input(&
ic);
return 0;
}