avformat/av1dec: Remove redundant avio_tell()

AV1DemuxContext.temporal_unit_size is zero after reading the header,
so the position set when reading the header will not be used at all.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-05-01 19:53:24 +02:00
parent 889e7f2c5c
commit c914fd2977

View File

@ -97,8 +97,6 @@ static int av1_read_header(AVFormatContext *s)
if (ret < 0)
return ret;
c->pos = avio_tell(s->pb);
return 0;
}