From 62f5601723fec6f4ce01f3f2b1a1374812c8371f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 22 Feb 2016 22:08:12 +0000 Subject: [PATCH] asfdemux: fix adding bitrate to stream tags https://bugzilla.gnome.org/show_bug.cgi?id=699586 --- gst/asfdemux/gstasfdemux.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gst/asfdemux/gstasfdemux.c b/gst/asfdemux/gstasfdemux.c index ece642e..0c50b68 100644 --- a/gst/asfdemux/gstasfdemux.c +++ b/gst/asfdemux/gstasfdemux.c @@ -3748,10 +3748,10 @@ gst_asf_demux_process_bitrate_props_object (GstASFDemux * demux, guint8 * data, GST_DEBUG_OBJECT (demux, "bitrate of stream %u = %u", stream_id, bitrate); stream = gst_asf_demux_get_stream (demux, stream_id); if (stream) { - if (stream->pending_tags == NULL) { - stream->pending_tags = - gst_tag_list_new (GST_TAG_BITRATE, bitrate, NULL); - } + if (stream->pending_tags == NULL) + stream->pending_tags = gst_tag_list_new_empty (); + gst_tag_list_add (stream->pending_tags, GST_TAG_MERGE_REPLACE, + GST_TAG_BITRATE, bitrate, NULL); } else { GST_WARNING_OBJECT (demux, "Stream id %u wasn't found", stream_id); } -- 2.7.4