mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +00:00
Fix various gboolean vs GstFlowReturn problems
Caught by building with MSVC which gave warnings for these
This commit is contained in:
parent
8b0c9e9918
commit
9b7d248982
1 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ gst_video_aggregator_pad_set_property (GObject * object, guint prop_id,
|
|||
gst_object_unref (vagg);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
static GstFlowReturn
|
||||
_flush_pad (GstAggregatorPad * aggpad, GstAggregator * aggregator)
|
||||
{
|
||||
GstVideoAggregator *vagg = GST_VIDEO_AGGREGATOR (aggregator);
|
||||
|
@ -144,7 +144,7 @@ _flush_pad (GstAggregatorPad * aggpad, GstAggregator * aggregator)
|
|||
pad->priv->start_time = -1;
|
||||
pad->priv->end_time = -1;
|
||||
|
||||
return TRUE;
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue