summaryrefslogtreecommitdiff
path: root/gst/asfmux
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2012-08-04 16:31:30 +0100
committerTim-Philipp Müller <tim@centricular.net>2012-08-04 16:31:30 +0100
commit489b102a43653efef9aef58e1c19e4c92692a9e7 (patch)
tree89adf6504847c89e0a8bbdb9cacbc391fe7cd906 /gst/asfmux
parenta7037cd0e30fa59d26627fac27241e33d543c10c (diff)
downloadgstreamer-plugins-bad-489b102a43653efef9aef58e1c19e4c92692a9e7.tar.gz
gst_tag_list_free -> gst_tag_list_unref
Diffstat (limited to 'gst/asfmux')
-rw-r--r--gst/asfmux/gstasfmux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/asfmux/gstasfmux.c b/gst/asfmux/gstasfmux.c
index 7c350c1f9..8219c6f6c 100644
--- a/gst/asfmux/gstasfmux.c
+++ b/gst/asfmux/gstasfmux.c
@@ -475,7 +475,7 @@ gst_asf_mux_get_content_description_tags (GstAsfMux * asfmux,
tags = gst_tag_setter_get_tag_list (GST_TAG_SETTER (asfmux));
if (tags && !gst_tag_list_is_empty (tags)) {
if (asftags->tags != NULL) {
- gst_tag_list_free (asftags->tags);
+ gst_tag_list_unref (asftags->tags);
}
asftags->tags = gst_tag_list_new_empty ();
asftags->cont_desc_size = 0;
@@ -1323,7 +1323,7 @@ gst_asf_mux_start_file (GstAsfMux * asfmux)
if (asftags) {
if (asftags->tags)
- gst_tag_list_free (asftags->tags);
+ gst_tag_list_unref (asftags->tags);
g_free (asftags);
}
@@ -2017,7 +2017,7 @@ gst_asf_mux_pad_reset (GstAsfPad * pad)
gst_buffer_unref (pad->codec_data);
pad->codec_data = NULL;
if (pad->taglist)
- gst_tag_list_free (pad->taglist);
+ gst_tag_list_unref (pad->taglist);
pad->taglist = NULL;
pad->first_ts = GST_CLOCK_TIME_NONE;