diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 01:23:00 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 07:22:31 +0100 |
commit | 63b796b0dd06fb35418d98be149fbac6bd75da09 (patch) | |
tree | ca3e912fb437dff57ac930463d3d0d837ed8d90e /libavformat/g723_1.c | |
parent | 055cda8acccad3e7414132cddf0dc4e22b1ae00b (diff) | |
download | ffmpeg-63b796b0dd06fb35418d98be149fbac6bd75da09.tar.gz |
Rename remaining url_ftell to avio_tell.
Diffstat (limited to 'libavformat/g723_1.c')
-rw-r--r-- | libavformat/g723_1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/g723_1.c b/libavformat/g723_1.c index 56ab3da6ad..09fd6141fc 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]; |