SWIG kullanarak PHP içine biraz Gstreamer functionlity sarmak için çalışıyorum, ama C geri çağrıları işlemek için nasıl anlamaya olamaz. Ben C bir PHP işlevi arayabilir miyim? Nasıl aşağıdaki gibi bir geri arama idare edecek?
#include <gst/gst.h>
// ...
static gboolean my_callback(GstBus *bus, GstMessage *message, gpointer user_data) {
g_print("Got %s message\n", GST_MESSAGE_TYPE_NAME(message));
switch(GST_MESSAGE_TYPE(message)) {
// ...
}
return TRUE;
}
main(gint argc, gchar *argv[])
{
GstElement *pipeline;
GstBus *bus;
gst_init (&argc, &argv);
pipeline = gst_pipeline_new ("my_pipeline");
/* add handler */
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
gst_bus_add_watch (bus, my_bus_callback, NULL); // ------------<
gst_object_unref (bus);
// ...
}