summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-04 19:57:36 +0100
committerRonald S. Bultje <rsbultje@gmail.com>2011-03-07 11:03:39 -0500
commit76aa876e69cf78a40821e66dec0a1006e4eb23ec (patch)
tree48122de51aeb99266e25f78bc715296e7fe85d59 /ffplay.c
parente51975392d85e72801193123945a35fb5221248f (diff)
avio: avio_ prefix for url_fsize
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index edc59380b6..e304aab3b1 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2838,7 +2838,7 @@ static void event_loop(void)
}
if (cur_stream) {
if(seek_by_bytes || cur_stream->ic->duration<=0){
- uint64_t size= url_fsize(cur_stream->ic->pb);
+ uint64_t size= avio_size(cur_stream->ic->pb);
stream_seek(cur_stream, size*x/cur_stream->width, 0, 1);
}else{
int64_t ts;