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 /ffmpeg.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 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -508,7 +508,7 @@ static int ffmpeg_exit(int ret) AVFormatContext *s = output_files[i]; int j; if (!(s->oformat->flags & AVFMT_NOFILE) && s->pb) - url_fclose(s->pb); + avio_close(s->pb); avformat_free_context(s); av_free(output_streams_for_file[i]); } @@ -3789,7 +3789,7 @@ static void opt_output_file(const char *filename) } /* open the file */ - if ((err = url_fopen(&oc->pb, filename, URL_WRONLY)) < 0) { + if ((err = avio_open(&oc->pb, filename, URL_WRONLY)) < 0) { print_error(filename, err); ffmpeg_exit(1); } |