mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
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:
parent
ea3bd58289
commit
cdfa0778c7
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue