check: fix appsink test

Fix the appsink test now that the method signature changed.
This commit is contained in:
Wim Taymans 2009-04-10 12:27:53 +02:00
parent f25e4e4743
commit 4cdfc4b900

View file

@ -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