mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
gstaggregator: fix the prototype of sink_event_pre_queue
This is not an API breakage, as implementors are already expected to return a GstFlowReturn
This commit is contained in:
parent
0a185c24b5
commit
26ffe05ccd
2 changed files with 2 additions and 2 deletions
|
@ -1632,7 +1632,7 @@ eat:
|
|||
* The queued events with be handled from the src-pad task in
|
||||
* gst_aggregator_do_events_and_queries().
|
||||
*/
|
||||
static gboolean
|
||||
static GstFlowReturn
|
||||
gst_aggregator_default_sink_event_pre_queue (GstAggregator * self,
|
||||
GstAggregatorPad * aggpad, GstEvent * event)
|
||||
{
|
||||
|
|
|
@ -322,7 +322,7 @@ struct _GstAggregatorClass {
|
|||
|
||||
gboolean (*negotiate) (GstAggregator * self);
|
||||
|
||||
gboolean (*sink_event_pre_queue) (GstAggregator * aggregator,
|
||||
GstFlowReturn (*sink_event_pre_queue) (GstAggregator * aggregator,
|
||||
GstAggregatorPad * aggregator_pad,
|
||||
GstEvent * event);
|
||||
|
||||
|
|
Loading…
Reference in a new issue