mxfdemux: Create index table arrays with a big enough size
This commit is contained in:
parent
3a1912f88c
commit
16fc8541b5
@ -1804,7 +1804,7 @@ gst_mxf_demux_handle_generic_container_essence_element (GstMXFDemux * demux,
|
|||||||
index.dts = dts;
|
index.dts = dts;
|
||||||
index.keyframe = keyframe;
|
index.keyframe = keyframe;
|
||||||
if (etrack->offsets->len < etrack->position)
|
if (etrack->offsets->len < etrack->position)
|
||||||
g_array_set_size (etrack->offsets, etrack->position);
|
g_array_set_size (etrack->offsets, etrack->position + 1);
|
||||||
g_array_insert_val (etrack->offsets, etrack->position, index);
|
g_array_insert_val (etrack->offsets, etrack->position, index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -3667,7 +3667,7 @@ collect_index_table_segments (GstMXFDemux * demux)
|
|||||||
pts_i = start + i + temporal_offset;
|
pts_i = start + i + temporal_offset;
|
||||||
|
|
||||||
if (t->offsets->len < pts_i)
|
if (t->offsets->len < pts_i)
|
||||||
g_array_set_size (t->offsets, pts_i);
|
g_array_set_size (t->offsets, pts_i + 1);
|
||||||
|
|
||||||
index = &g_array_index (t->offsets, GstMXFDemuxIndex, pts_i);
|
index = &g_array_index (t->offsets, GstMXFDemuxIndex, pts_i);
|
||||||
if (!index->initialized) {
|
if (!index->initialized) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user