From a2704c9712ad35cc22e7e0d8a79b581c07fa383b Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 3 Mar 2011 20:11:45 +0100 Subject: avio: add avio_tell macro as a replacement for url_ftell Signed-off-by: Ronald S. Bultje --- libavformat/yop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/yop.c') diff --git a/libavformat/yop.c b/libavformat/yop.c index e4437b7a0e..6c450c7cf7 100644 --- a/libavformat/yop.c +++ b/libavformat/yop.c @@ -136,7 +136,7 @@ static int yop_read_packet(AVFormatContext *s, AVPacket *pkt) if (ret < 0) return ret; - yop->video_packet.pos = url_ftell(pb); + yop->video_packet.pos = avio_tell(pb); ret = avio_read(pb, yop->video_packet.data, yop->palette_size); if (ret < 0) { -- cgit v1.2.3