summaryrefslogtreecommitdiff
path: root/libavformat/utils.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-14 20:38:59 +0100
committerRonald S. Bultje <rsbultje@gmail.com>2011-03-21 14:54:52 -0400
commit933e90a69a4b9c558d4fae9dffb15378910481d3 (patch)
tree5d69d266003c5cd2869114bfe2b909bd24f2092b /libavformat/utils.c
parentf44d6445b7a189fde27ca0e95c7eb08f697e109f (diff)
avio: make av_url_read_fseek/fpause internal.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 89ce39593b..8c0bf77f35 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2553,7 +2553,7 @@ int av_read_play(AVFormatContext *s)
if (s->iformat->read_play)
return s->iformat->read_play(s);
if (s->pb)
- return av_url_read_fpause(s->pb, 0);
+ return ffio_read_pause(s->pb, 0);
return AVERROR(ENOSYS);
}
@@ -2562,7 +2562,7 @@ int av_read_pause(AVFormatContext *s)
if (s->iformat->read_pause)
return s->iformat->read_pause(s);
if (s->pb)
- return av_url_read_fpause(s->pb, 1);
+ return ffio_read_pause(s->pb, 1);
return AVERROR(ENOSYS);
}