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/asfdec.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/asfdec.c')
-rw-r--r-- | libavformat/asfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 20b498758e..57e8fb6df4 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -1242,7 +1242,7 @@ static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int /* Try using the protocol's read_seek if available */ if(s->pb) { - int ret = ffio_read_seek(s->pb, stream_index, pts, flags); + int ret = avio_seek_time(s->pb, stream_index, pts, flags); if(ret >= 0) asf_reset_header(s); if (ret != AVERROR(ENOSYS)) |