mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
mxfdec: Zero nb_ptses in mxf_compute_ptses_fake_index()
This fixes SIGSEGV on files with both CBR and VBR index segments (zzuf6.mxf).
This commit is contained in:
parent
46d65fb8a5
commit
0cd21ddaed
@ -1028,8 +1028,10 @@ static int mxf_compute_ptses_fake_index(MXFContext *mxf, MXFIndexTable *index_ta
|
||||
for (i = 0; i < index_table->nb_segments; i++) {
|
||||
MXFIndexTableSegment *s = index_table->segments[i];
|
||||
|
||||
if (!s->nb_index_entries)
|
||||
if (!s->nb_index_entries) {
|
||||
index_table->nb_ptses = 0;
|
||||
return 0; /* no TemporalOffsets */
|
||||
}
|
||||
|
||||
index_table->nb_ptses += s->index_duration;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user