From 4f443c81cf2bb8af98af27b9ffff337d429a0309 Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Thu, 19 Mar 2020 23:51:47 +0900 Subject: [PATCH] qtmux: Fix build warning gstqtmux.c(644): warning C4133: '=': incompatible types - from 'gboolean (__cdecl *)(GstAggregator *,GstAggregatorPad *,GstEvent *)' to 'GstFlowReturn (__cdecl *)(GstAggregator *,GstAggregatorPad *,GstEvent *)' --- gst/isomp4/gstqtmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c index cdd06134e2..1bc39a5462 100644 --- a/gst/isomp4/gstqtmux.c +++ b/gst/isomp4/gstqtmux.c @@ -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 */