summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/av1dec.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/av1dec.c b/libavformat/av1dec.c
index d5d4548d8b..88a3c325e4 100644
--- a/libavformat/av1dec.c
+++ b/libavformat/av1dec.c
@@ -390,6 +390,10 @@ static int obu_read_packet(AVFormatContext *s, AVPacket *pkt)
AV1DemuxContext *const c = s->priv_data;
int ret;
+ if (s->io_repositioned) {
+ av_bsf_flush(c->bsf);
+ s->io_repositioned = 0;
+ }
while (1) {
ret = obu_get_packet(s, pkt);
/* In case of AVERROR_EOF we need to flush the BSF. Conveniently