mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-05 07:40:01 +00:00
check: fix appsink test
Fix the appsink test now that the method signature changed.
This commit is contained in:
parent
f25e4e4743
commit
4cdfc4b900
1 changed files with 3 additions and 1 deletions
|
@ -68,10 +68,12 @@ notify_test_function (gpointer userdata)
|
|||
global_testdata = operate_on_data (GPOINTER_TO_INT (userdata));
|
||||
}
|
||||
|
||||
void
|
||||
static GstFlowReturn
|
||||
callback_function (GstAppSink * appsink, gpointer callback_data)
|
||||
{
|
||||
global_testdata = operate_on_data (*((gint *) callback_data));
|
||||
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue