qtdemux: NULL is not a valid taglist
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Wed, 7 Oct 2009 14:15:55 +0000 (16:15 +0200)
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Fri, 9 Oct 2009 15:49:04 +0000 (17:49 +0200)
gst/qtdemux/qtdemux.c

index 105a1fa..b744d4c 100644 (file)
@@ -3558,12 +3558,14 @@ gst_qtdemux_add_stream (GstQTDemux * qtdemux,
     if (stream->pending_tags)
       gst_tag_list_free (stream->pending_tags);
     stream->pending_tags = list;
-    /* post now, send event on pad later */
-    GST_DEBUG_OBJECT (qtdemux, "Posting tags %" GST_PTR_FORMAT,
-        stream->pending_tags);
-    gst_element_post_message (GST_ELEMENT (qtdemux),
-        gst_message_new_tag_full (GST_OBJECT (qtdemux), stream->pad,
-            gst_tag_list_copy (list)));
+    if (list) {
+      /* post now, send event on pad later */
+      GST_DEBUG_OBJECT (qtdemux, "Posting tags %" GST_PTR_FORMAT, list);
+      gst_element_post_message (GST_ELEMENT (qtdemux),
+          gst_message_new_tag_full (GST_OBJECT (qtdemux), stream->pad,
+              gst_tag_list_copy (list)));
+    }
+    /* global tags go on each pad anyway */
     stream->send_global_tags = TRUE;
   }
 done: