summaryrefslogtreecommitdiff
path: root/libavformat/cafdec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-11-20 13:46:21 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-11-26 18:55:58 +0100
commit7c2b9067d065a1ed503aa76ea82e5dd1763452dd (patch)
treeebf69b89d4c084fb2b5086452a204b13c470aae0 /libavformat/cafdec.c
parent81be19b90640c2989ab55e3e9c8a6c299aaa249b (diff)
avformat/cafdec: Avoid unnecessary avio_tell() calls
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/cafdec.c')
-rw-r--r--libavformat/cafdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/cafdec.c b/libavformat/cafdec.c
index 3ff0558afe..4b5b15b58d 100644
--- a/libavformat/cafdec.c
+++ b/libavformat/cafdec.c
@@ -224,7 +224,7 @@ static int read_pakt_chunk(AVFormatContext *s, int64_t size)
av_log(s, AV_LOG_ERROR, "error reading packet table\n");
return AVERROR_INVALIDDATA;
}
- avio_skip(pb, ccount + size - avio_tell(pb));
+ avio_seek(pb, ccount + size, SEEK_SET);
caf->num_bytes = pos;
return 0;
@@ -331,7 +331,7 @@ static int read_header(AVFormatContext *s)
if (size > 0 && (pb->seekable & AVIO_SEEKABLE_NORMAL)) {
if (pos > INT64_MAX - size)
return AVERROR_INVALIDDATA;
- avio_skip(pb, FFMAX(0, pos + size - avio_tell(pb)));
+ avio_seek(pb, pos + size, SEEK_SET);
}
}