gst_tag_list_free -> gst_tag_list_unref
authorTim-Philipp Müller <tim@centricular.net>
Sat, 4 Aug 2012 15:31:30 +0000 (16:31 +0100)
committerTim-Philipp Müller <tim@centricular.net>
Sat, 4 Aug 2012 15:31:30 +0000 (16:31 +0100)
ext/opus/gstopusenc.c
ext/opus/gstopusheader.c

index 5386286..337be8c 100644 (file)
@@ -344,7 +344,7 @@ gst_opus_enc_stop (GstAudioEncoder * benc)
     opus_multistream_encoder_destroy (enc->state);
     enc->state = NULL;
   }
-  gst_tag_list_free (enc->tags);
+  gst_tag_list_unref (enc->tags);
   enc->tags = NULL;
   g_slist_foreach (enc->headers, (GFunc) gst_buffer_unref, NULL);
   g_slist_free (enc->headers);
index 5c4edba..af97172 100644 (file)
@@ -88,7 +88,7 @@ gst_opus_enc_create_metadata_buffer (const GstTagList * tags)
   GST_BUFFER_OFFSET_END (comments) = 0;
 
   if (empty_tags)
-    gst_tag_list_free (empty_tags);
+    gst_tag_list_unref (empty_tags);
 
   return comments;
 }