diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-12 09:37:10 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-12 19:17:05 +0200 |
commit | ff1ec0c3f8fce10e92010f82f7e859e08f9c742a (patch) | |
tree | 8eb19b5d1e5fd63807620ce4cdd7e166ad513b6b /libavformat/utils.c | |
parent | c5e03cebd31e5bd2b6851d09a60280403a57faf0 (diff) | |
download | ffmpeg-ff1ec0c3f8fce10e92010f82f7e859e08f9c742a.tar.gz |
avio: undeprecate av_url_read_fseek/fpause under nicer names
It seems their replacements won't be ready anytime soon.
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 1d58682a66..f93b83f5da 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2579,7 +2579,7 @@ int av_read_play(AVFormatContext *s) if (s->iformat->read_play) return s->iformat->read_play(s); if (s->pb) - return ffio_read_pause(s->pb, 0); + return avio_pause(s->pb, 0); return AVERROR(ENOSYS); } @@ -2588,7 +2588,7 @@ int av_read_pause(AVFormatContext *s) if (s->iformat->read_pause) return s->iformat->read_pause(s); if (s->pb) - return ffio_read_pause(s->pb, 1); + return avio_pause(s->pb, 1); return AVERROR(ENOSYS); } |