mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
validate: pad-monitor: Do not compare not fixed sinkpad caps fields
We are only able to check that the sink pad caps values are inside the src pad value.
This commit is contained in:
parent
93d9032712
commit
e847d7061a
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ _structures_field_is_contained (GstStructure * s1, GstStructure * s2,
|
|||
if (!v1)
|
||||
return !mandatory;
|
||||
|
||||
if (!gst_value_is_fixed (v1) && !gst_value_is_fixed (v2))
|
||||
if (!gst_value_is_fixed (v1))
|
||||
return TRUE;
|
||||
|
||||
if (gst_value_compare (v1, v2) == GST_VALUE_EQUAL)
|
||||
|
|
Loading…
Reference in a new issue