From 16fc8541b56223483e37097c865ef086c27d581c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 11 Jul 2017 20:54:25 +0300 Subject: [PATCH] mxfdemux: Create index table arrays with a big enough size --- gst/mxf/mxfdemux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/mxf/mxfdemux.c b/gst/mxf/mxfdemux.c index f2a6f93fc5..39f34d0020 100644 --- a/gst/mxf/mxfdemux.c +++ b/gst/mxf/mxfdemux.c @@ -1804,7 +1804,7 @@ gst_mxf_demux_handle_generic_container_essence_element (GstMXFDemux * demux, index.dts = dts; index.keyframe = keyframe; 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); } } @@ -3667,7 +3667,7 @@ collect_index_table_segments (GstMXFDemux * demux) pts_i = start + i + temporal_offset; 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); if (!index->initialized) {