From cdfa0778c7e7f7b76e431b9dabdb44679e8ebed2 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 15 Jul 2021 14:42:51 +0200 Subject: [PATCH] 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: --- validate/gst/validate/media-descriptor.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/validate/gst/validate/media-descriptor.c b/validate/gst/validate/media-descriptor.c index e442e8e568..100fdc3b4b 100644 --- a/validate/gst/validate/media-descriptor.c +++ b/validate/gst/validate/media-descriptor.c @@ -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; -- 2.34.1