diff options
Diffstat (limited to 'libavformat/avs.c')
-rw-r--r-- | libavformat/avs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avs.c b/libavformat/avs.c index 476c0a9af9..0ddb0af06d 100644 --- a/libavformat/avs.c +++ b/libavformat/avs.c @@ -123,9 +123,9 @@ static int avs_read_audio_packet(AVFormatContext * s, AVPacket * pkt) AvsFormat *avs = s->priv_data; int ret, size; - size = url_ftell(s->pb); + size = avio_tell(s->pb); ret = voc_get_packet(s, pkt, avs->st_audio, avs->remaining_audio_size); - size = url_ftell(s->pb) - size; + size = avio_tell(s->pb) - size; avs->remaining_audio_size -= size; if (ret == AVERROR(EIO)) |