diff --git a/validate/gst/validate/gst-validate-pad-monitor.c b/validate/gst/validate/gst-validate-pad-monitor.c index dbc61feeac..41da298920 100644 --- a/validate/gst/validate/gst-validate-pad-monitor.c +++ b/validate/gst/validate/gst-validate-pad-monitor.c @@ -347,6 +347,9 @@ _structures_field_is_contained (GstStructure * s1, GstStructure * s2, if (!v1) return FALSE; + if (!gst_value_is_fixed (v1) && !gst_value_is_fixed (v2)) + return TRUE; + if (gst_value_compare (v1, v2) == GST_VALUE_EQUAL) return TRUE;