diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c index 0a22c7f002..96c58e839b 100644 --- a/ext/flac/gstflacenc.c +++ b/ext/flac/gstflacenc.c @@ -1003,7 +1003,8 @@ gst_flac_enc_sink_event (GstPad * pad, GstEvent * event) case GST_EVENT_TAG: if (flacenc->tags) { gst_event_parse_tag (event, &taglist); - gst_tag_list_insert (flacenc->tags, taglist, GST_TAG_MERGE_REPLACE); + gst_tag_list_insert (flacenc->tags, taglist, + gst_tag_setter_get_tag_merge_mode (GST_TAG_SETTER (flacenc))); } else { g_assert_not_reached (); }