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/mp3enc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/mp3enc.c') diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c index c465420691..27d25f5da9 100644 --- a/libavformat/mp3enc.c +++ b/libavformat/mp3enc.c @@ -211,7 +211,7 @@ static int mp3_write_header(struct AVFormatContext *s) avio_w8(s->pb, 0); /* flags */ /* reserve space for size */ - size_pos = url_ftell(s->pb); + size_pos = avio_tell(s->pb); avio_wb32(s->pb, 0); ff_metadata_conv(&s->metadata, ff_id3v2_34_metadata_conv, NULL); @@ -237,7 +237,7 @@ static int mp3_write_header(struct AVFormatContext *s) totlen += ret; } - cur_pos = url_ftell(s->pb); + cur_pos = avio_tell(s->pb); avio_seek(s->pb, size_pos, SEEK_SET); id3v2_put_size(s, totlen); avio_seek(s->pb, cur_pos, SEEK_SET); -- cgit v1.2.3