mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/mov: Set fragment.found_tfhd only after TFHD has been parsed
Fixes: Assertion failure Fixes: crbug971646.mp4 Reported-by: Matt Wolenetz <wolenetz@google.com> Reviewed-by: Matt Wolenetz <wolenetz@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
bd3672ba75
commit
696312c487
|
@ -4562,8 +4562,6 @@ static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
|||
MOVTrackExt *trex = NULL;
|
||||
int flags, track_id, i;
|
||||
|
||||
c->fragment.found_tfhd = 1;
|
||||
|
||||
avio_r8(pb); /* version */
|
||||
flags = avio_rb24(pb);
|
||||
|
||||
|
@ -4579,6 +4577,7 @@ static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
|||
av_log(c->fc, AV_LOG_WARNING, "could not find corresponding trex (id %u)\n", track_id);
|
||||
return 0;
|
||||
}
|
||||
c->fragment.found_tfhd = 1;
|
||||
frag->track_id = track_id;
|
||||
set_frag_stream(&c->frag_index, track_id);
|
||||
|
||||
|
|
Loading…
Reference in New Issue