diff options
author | Aurélien Zanelli <aurelien.zanelli@parrot.com> | 2014-09-12 09:30:04 +0200 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2014-09-12 11:31:59 +0200 |
commit | 77b850c08de28afb4d306d74788fb4d044d5a0e4 (patch) | |
tree | 986f6ddc052437fc89733ef0a930221598360bbc /gst | |
parent | 6d767a09d8b85918304115255dbaacdac644a7d2 (diff) |
tsdemux: fix trivial coding style issue
https://bugzilla.gnome.org/show_bug.cgi?id=736531
Diffstat (limited to 'gst')
-rw-r--r-- | gst/mpegtsdemux/tsdemux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mpegtsdemux/tsdemux.c b/gst/mpegtsdemux/tsdemux.c index 4cd051c90..23c35d2ac 100644 --- a/gst/mpegtsdemux/tsdemux.c +++ b/gst/mpegtsdemux/tsdemux.c @@ -1972,7 +1972,7 @@ calculate_and_push_newsegment (GstTSDemux * demux, TSDemuxStream * stream) if (demux->segment.rate > 0) { demux->segment.start = firstts; - if (GST_CLOCK_TIME_IS_VALID (demux->segment.stop) ) + if (GST_CLOCK_TIME_IS_VALID (demux->segment.stop)) demux->segment.stop += firstts - demux->segment.start; demux->segment.position = firstts; } |