mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
qtmux: Fix build warning
gstqtmux.c(644): warning C4133: '=': incompatible types - from 'gboolean (__cdecl *)(GstAggregator *,GstAggregatorPad *,GstEvent *)' to 'GstFlowReturn (__cdecl *)(GstAggregator *,GstAggregatorPad *,GstEvent *)'
This commit is contained in:
parent
c5181c23a4
commit
4f443c81cf
1 changed files with 1 additions and 1 deletions
|
@ -409,7 +409,7 @@ static void gst_qt_mux_release_pad (GstElement * element, GstPad * pad);
|
||||||
/* event */
|
/* event */
|
||||||
static gboolean gst_qt_mux_sink_event (GstAggregator * agg,
|
static gboolean gst_qt_mux_sink_event (GstAggregator * agg,
|
||||||
GstAggregatorPad * agg_pad, GstEvent * event);
|
GstAggregatorPad * agg_pad, GstEvent * event);
|
||||||
static gboolean gst_qt_mux_sink_event_pre_queue (GstAggregator * self,
|
static GstFlowReturn gst_qt_mux_sink_event_pre_queue (GstAggregator * self,
|
||||||
GstAggregatorPad * aggpad, GstEvent * event);
|
GstAggregatorPad * aggpad, GstEvent * event);
|
||||||
|
|
||||||
/* aggregator */
|
/* aggregator */
|
||||||
|
|
Loading…
Reference in a new issue