validate-media-descriptor: Don't check segment position field

The position field of GstSegment is meant for private usage within
elements. Don't compare the values of it when doing media-check.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/251>
This commit is contained in:
Edward Hervey 2021-07-15 14:42:51 +02:00 committed by Edward Hervey
parent ea3bd58289
commit cdfa0778c7

View file

@ -377,7 +377,8 @@ compare_segments (GstValidateMediaDescriptor * ref,
CHECK_SEGMENT_FIELD (start, "%" G_GUINT64_FORMAT);
CHECK_SEGMENT_FIELD (stop, "%" G_GUINT64_FORMAT);
CHECK_SEGMENT_FIELD (time, "%" G_GUINT64_FORMAT);
CHECK_SEGMENT_FIELD (position, "%" G_GUINT64_FORMAT);
/* We do not compare segment position since it's a field for usage only within the element */
/* CHECK_SEGMENT_FIELD (position, "%" G_GUINT64_FORMAT); */
CHECK_SEGMENT_FIELD (duration, "%" G_GUINT64_FORMAT);
return TRUE;