Commit 8ce564ea authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mov: Mark avio context of decompressed atoms as seekable

Fixes Ticket4329
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1cacecce
......@@ -3344,6 +3344,7 @@ static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
goto free_and_return;
if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
goto free_and_return;
ctx.seekable = AVIO_SEEKABLE_NORMAL;
atom.type = MKTAG('m','o','o','v');
atom.size = moov_len;
ret = mov_read_default(c, &ctx, atom);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment