diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-03 20:11:45 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-03-04 11:26:57 -0500 |
commit | a2704c9712ad35cc22e7e0d8a79b581c07fa383b (patch) | |
tree | ebf5a27a98dbd52d983e38e901661f7525b38e9a /libavformat/r3d.c | |
parent | e16ead0716c2f988d1e26369a4c67b354ff86134 (diff) | |
download | ffmpeg-a2704c9712ad35cc22e7e0d8a79b581c07fa383b.tar.gz |
avio: add avio_tell macro as a replacement for url_ftell
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/r3d.c')
-rw-r--r-- | libavformat/r3d.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/r3d.c b/libavformat/r3d.c index 0e103b6aa4..6cda30fd31 100644 --- a/libavformat/r3d.c +++ b/libavformat/r3d.c @@ -38,7 +38,7 @@ typedef struct { static int read_atom(AVFormatContext *s, Atom *atom) { - atom->offset = url_ftell(s->pb); + atom->offset = avio_tell(s->pb); atom->size = avio_rb32(s->pb); if (atom->size < 8) return -1; @@ -175,7 +175,7 @@ static int r3d_read_header(AVFormatContext *s, AVFormatParameters *ap) return -1; } - s->data_offset = url_ftell(s->pb); + s->data_offset = avio_tell(s->pb); av_dlog(s, "data offset %#llx\n", s->data_offset); if (url_is_streamed(s->pb)) return 0; @@ -210,7 +210,7 @@ static int r3d_read_redv(AVFormatContext *s, AVPacket *pkt, Atom *atom) { AVStream *st = s->streams[0]; int tmp, tmp2; - uint64_t pos = url_ftell(s->pb); + uint64_t pos = avio_tell(s->pb); unsigned dts; int ret; @@ -241,7 +241,7 @@ static int r3d_read_redv(AVFormatContext *s, AVPacket *pkt, Atom *atom) tmp = avio_rb32(s->pb); av_dlog(s, "metadata len %d\n", tmp); } - tmp = atom->size - 8 - (url_ftell(s->pb) - pos); + tmp = atom->size - 8 - (avio_tell(s->pb) - pos); if (tmp < 0) return -1; ret = av_get_packet(s->pb, pkt, tmp); @@ -264,7 +264,7 @@ static int r3d_read_reda(AVFormatContext *s, AVPacket *pkt, Atom *atom) { AVStream *st = s->streams[1]; int tmp, tmp2, samples, size; - uint64_t pos = url_ftell(s->pb); + uint64_t pos = avio_tell(s->pb); unsigned dts; int ret; @@ -287,7 +287,7 @@ static int r3d_read_reda(AVFormatContext *s, AVPacket *pkt, Atom *atom) tmp = avio_rb32(s->pb); // unknown av_dlog(s, "unknown %d\n", tmp); - size = atom->size - 8 - (url_ftell(s->pb) - pos); + size = atom->size - 8 - (avio_tell(s->pb) - pos); if (size < 0) return -1; ret = av_get_packet(s->pb, pkt, size); |