avformat/mov: force parsing of headers if stts is absent
Fixes Ticket2991
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit e41ea866fc
)
This commit is contained in:

committed by
Carl Eugen Hoyos

parent
14e258d847
commit
6559bb893f
@@ -1679,6 +1679,8 @@ static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
|||||||
if (!entries)
|
if (!entries)
|
||||||
{
|
{
|
||||||
sc->keyframe_absent = 1;
|
sc->keyframe_absent = 1;
|
||||||
|
if (!st->need_parsing)
|
||||||
|
st->need_parsing = AVSTREAM_PARSE_HEADERS;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if (entries >= UINT_MAX / sizeof(int))
|
if (entries >= UINT_MAX / sizeof(int))
|
||||||
|
Reference in New Issue
Block a user