[FFmpeg-cvslog] Rename remaining url_ftell to avio_tell.
Clément Bœsch
git at videolan.org
Mon Nov 14 07:26:15 CET 2011
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Mon Nov 14 01:23:00 2011 +0100| [63b796b0dd06fb35418d98be149fbac6bd75da09] | committer: Clément Bœsch
Rename remaining url_ftell to avio_tell.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=63b796b0dd06fb35418d98be149fbac6bd75da09
---
libavformat/g723_1.c | 2 +-
libavformat/mpegts.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/g723_1.c b/libavformat/g723_1.c
index 56ab3da..09fd614 100644
--- a/libavformat/g723_1.c
+++ b/libavformat/g723_1.c
@@ -50,7 +50,7 @@ static int g723_1_read_packet(AVFormatContext *s, AVPacket *pkt)
{
int size, byte, ret;
- pkt->pos = url_ftell(s->pb);
+ pkt->pos = avio_tell(s->pb);
byte = avio_r8(s->pb);
size = frame_size[byte & 3];
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 29a0f61..118f532 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -2113,7 +2113,7 @@ static int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
if (buf[0] != 0x47) {
if (mpegts_resync(s) < 0)
return AV_NOPTS_VALUE;
- pos = url_ftell(s->pb);
+ pos = avio_tell(s->pb);
continue;
}
if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
More information about the ffmpeg-cvslog
mailing list