mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
tsdemux: Use FALSE instead of 0 for bool parameter
This commit is contained in:
parent
744101a417
commit
c86aba3469
1 changed files with 1 additions and 1 deletions
|
@ -2167,7 +2167,7 @@ calculate_and_push_newsegment (GstTSDemux * demux, TSDemuxStream * stream)
|
||||||
GST_TIME_FORMAT " time: %" GST_TIME_FORMAT, GST_TIME_ARGS (start),
|
GST_TIME_FORMAT " time: %" GST_TIME_FORMAT, GST_TIME_ARGS (start),
|
||||||
GST_TIME_ARGS (stop), GST_TIME_ARGS (position));
|
GST_TIME_ARGS (stop), GST_TIME_ARGS (position));
|
||||||
newsegmentevent =
|
newsegmentevent =
|
||||||
gst_event_new_new_segment (0, 1.0, GST_FORMAT_TIME, start, stop,
|
gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_TIME, start, stop,
|
||||||
position);
|
position);
|
||||||
|
|
||||||
push_event ((MpegTSBase *) demux, newsegmentevent);
|
push_event ((MpegTSBase *) demux, newsegmentevent);
|
||||||
|
|
Loading…
Reference in a new issue