summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2017-10-17 07:51:51 +0200
committerTim-Philipp Müller <tim@centricular.com>2017-12-02 15:10:27 +0000
commit23692ee688eafe035343c2a0b045df77e1608dee (patch)
tree06c6d3529f3ae7f7684cbc552ab70b6df07c0d1e
parentfb3c9f380852cdb487f11f4f9ad6c299647b0e69 (diff)
aggregator: init latency values with 0 instead of FALSE
-rw-r--r--libs/gst/base/gstaggregator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gst/base/gstaggregator.c b/libs/gst/base/gstaggregator.c
index 1b2a43afc..d4fe65576 100644
--- a/libs/gst/base/gstaggregator.c
+++ b/libs/gst/base/gstaggregator.c
@@ -1546,7 +1546,7 @@ gst_aggregator_stop (GstAggregator * agg)
agg->priv->has_peer_latency = FALSE;
agg->priv->peer_latency_live = FALSE;
- agg->priv->peer_latency_min = agg->priv->peer_latency_max = FALSE;
+ agg->priv->peer_latency_min = agg->priv->peer_latency_max = 0;
if (agg->priv->tags)
gst_tag_list_unref (agg->priv->tags);