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/libnut.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/libnut.c') diff --git a/libavformat/libnut.c b/libavformat/libnut.c index 467ca9c4a5..28bf76dc84 100644 --- a/libavformat/libnut.c +++ b/libavformat/libnut.c @@ -272,7 +272,7 @@ static int nut_read_packet(AVFormatContext * avf, AVPacket * pkt) { if (pd.flags & NUT_FLAG_KEY) pkt->flags |= AV_PKT_FLAG_KEY; pkt->pts = pd.pts; pkt->stream_index = pd.stream; - pkt->pos = url_ftell(avf->pb); + pkt->pos = avio_tell(avf->pb); ret = nut_read_frame(priv->nut, &pd.len, pkt->data); -- cgit v1.2.1