diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-12-11 10:01:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-12-12 20:21:47 +0100 |
commit | 3a7f7678eb3be1f9a28414c9908ed8d34b1b9846 (patch) | |
tree | 4f74061acc8f586c6273ceea7bdaab77cd9c6e2a /libavformat/rtsp.c | |
parent | 59826cab8ad9f64bf5fd752f52c6acc16815dbb0 (diff) | |
download | ffmpeg-3a7f7678eb3be1f9a28414c9908ed8d34b1b9846.tar.gz |
lavf: deprecate av_close_input_stream().
And remove all its uses.
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index b63f9f68cf..52821545ff 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -580,7 +580,7 @@ void ff_rtsp_close_streams(AVFormatContext *s) } av_free(rt->rtsp_streams); if (rt->asf_ctx) { - av_close_input_stream (rt->asf_ctx); + av_close_input_file(rt->asf_ctx); rt->asf_ctx = NULL; } av_free(rt->p); |