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/srtdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/srtdec.c') diff --git a/libavformat/srtdec.c b/libavformat/srtdec.c index 17de8c91f5..0a94a7f518 100644 --- a/libavformat/srtdec.c +++ b/libavformat/srtdec.c @@ -75,7 +75,7 @@ static inline int is_eol(char c) static int srt_read_packet(AVFormatContext *s, AVPacket *pkt) { char buffer[2048], *ptr = buffer, *ptr2; - int64_t pos = url_ftell(s->pb); + int64_t pos = avio_tell(s->pb); int res = AVERROR_EOF; do { -- cgit v1.2.3