mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
audiofilter: Also copy metas if their API has no tags attached to it
This is the default basetransform behaviour, being more strict than that is not really useful.
This commit is contained in:
parent
4bb9548026
commit
0acdfeed69
1 changed files with 3 additions and 3 deletions
|
@ -72,9 +72,9 @@ gst_audio_filter_transform_meta (GstBaseTransform * trans, GstBuffer * inbuf,
|
||||||
|
|
||||||
tags = gst_meta_api_type_get_tags (info->api);
|
tags = gst_meta_api_type_get_tags (info->api);
|
||||||
|
|
||||||
if (tags && g_strv_length ((gchar **) tags) == 1
|
if (!tags || (g_strv_length ((gchar **) tags) == 1
|
||||||
&& gst_meta_api_type_has_tag (info->api,
|
&& gst_meta_api_type_has_tag (info->api,
|
||||||
g_quark_from_string (GST_META_TAG_AUDIO_STR)))
|
g_quark_from_string (GST_META_TAG_AUDIO_STR))))
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue