diff options
author | Joungkook Seo <jk7704.seo@samsung.com> | 2013-10-28 15:47:30 +0900 |
---|---|---|
committer | Joungkook Seo <jk7704.seo@samsung.com> | 2013-10-28 15:47:30 +0900 |
commit | 2320b3989c1be37eb1c078812c8b3b73cd3b622a (patch) | |
tree | 4e2d30053642e477acd58dc8cfcbdcafd975b591 | |
parent | 6bec7a413a9840d23131171f86c814202790d655 (diff) | |
download | gst-plugins-good0.10-tizen_2.2.tar.gz gst-plugins-good0.10-tizen_2.2.tar.bz2 gst-plugins-good0.10-tizen_2.2.zip |
[gst-plugins-good] Prevent issues fixed in matroska demuxsubmit/tizen_2.2/20131107.0604082.2.1_releasetizen_2.2
Change-Id: Iaf82abe29bd6383c7a750a46f5d8ca61137e9bed
-rw-r--r-- | gst/matroska/matroska-demux.c | 2 | ||||
-rw-r--r-- | packaging/gst-plugins-good.spec | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index 81d1d71..8ac0e59 100644 --- a/gst/matroska/matroska-demux.c +++ b/gst/matroska/matroska-demux.c @@ -3852,6 +3852,8 @@ gst_matroska_demux_parse_blockgroup_or_simpleblock (GstMatroskaDemux * demux, g_array_append_val(demux->common.index, *idx); GST_INFO("size of the index is %d",demux->common.index->len); } + free(idx); + idx = NULL; } else { //demux->common.segment.duration = (GST_BUFFER_TIMESTAMP(sub) + GST_BUFFER_DURATION (sub)); demux->duration = GST_BUFFER_TIMESTAMP(sub) + GST_BUFFER_DURATION (sub); diff --git a/packaging/gst-plugins-good.spec b/packaging/gst-plugins-good.spec index 5024ddf..93e4449 100644 --- a/packaging/gst-plugins-good.spec +++ b/packaging/gst-plugins-good.spec @@ -2,7 +2,7 @@ Name: gst-plugins-good Summary: GStreamer plugins from the "good" set Version: 0.10.32 -Release: 26 +Release: 27 Group: Applications/Multimedia License: LGPLv2+ Source0: %{name}-%{version}.tar.gz |