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:
Seungha Yang 2020-03-19 23:51:47 +09:00 committed by GStreamer Merge Bot
parent c5181c23a4
commit 4f443c81cf

View file

@ -409,7 +409,7 @@ static void gst_qt_mux_release_pad (GstElement * element, GstPad * pad);
/* event */
static gboolean gst_qt_mux_sink_event (GstAggregator * agg,
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);
/* aggregator */