diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2012-08-04 16:31:30 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-08-04 16:31:30 +0100 |
commit | 489b102a43653efef9aef58e1c19e4c92692a9e7 (patch) | |
tree | 89adf6504847c89e0a8bbdb9cacbc391fe7cd906 /gst/aiff | |
parent | a7037cd0e30fa59d26627fac27241e33d543c10c (diff) |
gst_tag_list_free -> gst_tag_list_unref
Diffstat (limited to 'gst/aiff')
-rw-r--r-- | gst/aiff/aiffparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/aiff/aiffparse.c b/gst/aiff/aiffparse.c index 3ccf9d785..937be7f18 100644 --- a/gst/aiff/aiffparse.c +++ b/gst/aiff/aiffparse.c @@ -171,7 +171,7 @@ gst_aiff_parse_reset (GstAiffParse * aiff) } if (aiff->tags != NULL) { - gst_tag_list_free (aiff->tags); + gst_tag_list_unref (aiff->tags); aiff->tags = NULL; } } @@ -931,7 +931,7 @@ gst_aiff_parse_stream_headers (GstAiffParse * aiff) aiff->tags = tags; } else { gst_tag_list_insert (aiff->tags, tags, GST_TAG_MERGE_APPEND); - gst_tag_list_free (tags); + gst_tag_list_unref (tags); } break; } |