diff options
author | Anton Khirnov | 2011-12-11 10:38:28 +0100 |
---|---|---|
committer | Anton Khirnov | 2011-12-12 20:34:38 +0100 |
commit | cd3716b9aae7e141e7b4faf9783131809f40991f (patch) | |
tree | 242d19f2239d299454d57879582d1ef0f9fe44ca /libavformat/rdt.c | |
parent | 526604545fb1cc0c11af356fbffd5cddf8cdc95f (diff) |
Replace all uses of av_close_input_file() with avformat_close_input().
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r-- | libavformat/rdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c index c06583e105..207fc92542 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -544,7 +544,7 @@ rdt_free_context (PayloadContext *rdt) av_freep(&rdt->rmst[i]); } if (rdt->rmctx) - av_close_input_file(rdt->rmctx); + avformat_close_input(&rdt->rmctx); av_freep(&rdt->mlti_data); av_freep(&rdt->rmst); av_free(rdt); |