summaryrefslogtreecommitdiff
path: root/libavformat/mp3dec.c
diff options
context:
space:
mode:
authorZhao Zhili <zhilizhao@tencent.com>2022-09-25 12:28:41 +0800
committerZhao Zhili <zhilizhao@tencent.com>2022-10-08 22:56:30 +0800
commit94644343a66947d22253cfdd73531f0f670de5d8 (patch)
tree717c2d9ee1255ad1df84c357af69d5f0ff7016d7 /libavformat/mp3dec.c
parent0d17f5228f4d3854066ec1001f69c7d1714b0df9 (diff)
avformat/mp3dec: remove a call to avio_tell()
Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
Diffstat (limited to 'libavformat/mp3dec.c')
-rw-r--r--libavformat/mp3dec.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c
index a9e494452d..05c13228bc 100644
--- a/libavformat/mp3dec.c
+++ b/libavformat/mp3dec.c
@@ -424,15 +424,14 @@ static int mp3_read_header(AVFormatContext *s)
}
}
if (i == 64 * 1024) {
- ret = avio_seek(s->pb, off, SEEK_SET);
+ off = avio_seek(s->pb, off, SEEK_SET);
} else {
av_log(s, i > 0 ? AV_LOG_INFO : AV_LOG_VERBOSE, "Skipping %d bytes of junk at %"PRId64".\n", i, off);
- ret = avio_seek(s->pb, off + i, SEEK_SET);
+ off = avio_seek(s->pb, off + i, SEEK_SET);
}
- if (ret < 0)
- return ret;
+ if (off < 0)
+ return off;
- off = avio_tell(s->pb);
// the seek index is relative to the end of the xing vbr headers
for (int i = 0; i < sti->nb_index_entries; i++)
sti->index_entries[i].pos += off;