mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-04 22:48:54 +00:00
segment: use GST_SEEK_FLAG_NONE instead of 0
Fixes warning #188: enumerated type mixed with another type reported by ICC.
This commit is contained in:
parent
9f8fe424c7
commit
c0b0b977d7
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ gst_segment_init (GstSegment * segment, GstFormat format)
|
|||
segment->abs_rate = 1.0;
|
||||
segment->applied_rate = 1.0;
|
||||
segment->format = format;
|
||||
segment->flags = 0;
|
||||
segment->flags = GST_SEEK_FLAG_NONE;
|
||||
segment->start = 0;
|
||||
segment->stop = -1;
|
||||
segment->time = 0;
|
||||
|
|
Loading…
Reference in a new issue