diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-21 22:45:20 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-23 10:18:55 -0500 |
commit | 22a3212e32b696028e21f00871f3cb48c044029d (patch) | |
tree | 4d85172aedcc3cfd79ee8a828fc8b8fe5e0dc9f8 /libavformat/sapenc.c | |
parent | 28c4741a6617a4c1d2490cb13fc70ae4c9c472da (diff) | |
download | ffmpeg-22a3212e32b696028e21f00871f3cb48c044029d.tar.gz |
avio: rename url_fopen/fclose -> avio_open/close.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/sapenc.c')
-rw-r--r-- | libavformat/sapenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sapenc.c b/libavformat/sapenc.c index bd3483e296..bc66adcd77 100644 --- a/libavformat/sapenc.c +++ b/libavformat/sapenc.c @@ -46,7 +46,7 @@ static int sap_write_close(AVFormatContext *s) if (!rtpctx) continue; av_write_trailer(rtpctx); - url_fclose(rtpctx->pb); + avio_close(rtpctx->pb); avformat_free_context(rtpctx); s->streams[i]->priv_data = NULL; } |