From 323517f5278e55023e1c10e59315e890c477b2eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 18 Jun 2009 23:37:11 +0100 Subject: [PATCH] matroska-demux: post container-format tags --- gst/matroska/matroska-demux.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index 068119e76c..5c1248246a 100644 --- a/gst/matroska/matroska-demux.c +++ b/gst/matroska/matroska-demux.c @@ -3090,11 +3090,10 @@ gst_matroska_demux_parse_metadata (GstMatroskaDemux * demux) DEBUG_ELEMENT_STOP (demux, ebml, "Tags", ret); - if (gst_structure_n_fields (GST_STRUCTURE (taglist)) > 0) { - gst_element_found_tags (GST_ELEMENT (ebml), taglist); - } else { - gst_tag_list_free (taglist); - } + /* FIXME: tags must be pushed *after* the initial newsegment event */ + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_CONTAINER_FORMAT, + "Matroska", NULL); + gst_element_found_tags (GST_ELEMENT (ebml), taglist); return ret; }