mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/mov: Mark avio context of decompressed atoms as seekable
Fixes Ticket4329
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 8ce564ea28
)
This commit is contained in:
parent
65d61a4bbb
commit
57d094e3e3
|
@ -2987,6 +2987,7 @@ static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
||||||
goto free_and_return;
|
goto free_and_return;
|
||||||
if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
|
if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
|
||||||
goto free_and_return;
|
goto free_and_return;
|
||||||
|
ctx.seekable = AVIO_SEEKABLE_NORMAL;
|
||||||
atom.type = MKTAG('m','o','o','v');
|
atom.type = MKTAG('m','o','o','v');
|
||||||
atom.size = moov_len;
|
atom.size = moov_len;
|
||||||
ret = mov_read_default(c, &ctx, atom);
|
ret = mov_read_default(c, &ctx, atom);
|
||||||
|
|
Loading…
Reference in New Issue