mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-05 15:49:54 +00:00
webrtc: Fix sctp task's return type.
GstWebRTCBinFunc expects a GstStructure* return type. Fixes segfault on PowerPC. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2188>
This commit is contained in:
parent
08b792d24c
commit
4e29ba9fce
1 changed files with 2 additions and 1 deletions
|
@ -62,11 +62,12 @@ struct task
|
|||
GDestroyNotify notify;
|
||||
};
|
||||
|
||||
static void
|
||||
static GstStructure *
|
||||
_execute_task (GstWebRTCBin * webrtc, struct task *task)
|
||||
{
|
||||
if (task->func)
|
||||
task->func (task->sctp, task->user_data);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue