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:
Josep Torra 2011-08-25 21:30:57 +02:00
parent 9f8fe424c7
commit c0b0b977d7

View file

@ -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;