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/mov.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/mov.c')
-rw-r--r-- | libavformat/mov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index eadb8f8988..6becc77c0c 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1718,7 +1718,7 @@ static int mov_open_dref(AVIOContext **pb, char *src, MOVDref *ref) av_strlcat(filename, ref->path + l + 1, 1024); - if (!url_fopen(pb, filename, URL_RDONLY)) + if (!avio_open(pb, filename, URL_RDONLY)) return 0; } } @@ -2546,7 +2546,7 @@ static int mov_read_close(AVFormatContext *s) } av_freep(&sc->drefs); if (sc->pb && sc->pb != s->pb) - url_fclose(sc->pb); + avio_close(sc->pb); av_freep(&st->codec->palctrl); } |