update for bus api changes
authorWim Taymans <wim.taymans@collabora.co.uk>
Wed, 20 Jun 2012 10:30:36 +0000 (12:30 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Wed, 20 Jun 2012 10:34:01 +0000 (12:34 +0200)
gst-libs/gst/video/videooverlay.c
tests/examples/playback/playback-test.c
tests/examples/seek/jsseek.c
tests/icles/stress-videooverlay.c

index 99e2f48..f8419fb 100644 (file)
@@ -88,7 +88,8 @@
  * {
  * ...
  *  bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
- *  gst_bus_set_sync_handler (bus, (GstBusSyncHandler) create_window, pipeline);
+ *  gst_bus_set_sync_handler (bus, (GstBusSyncHandler) create_window, pipeline,
+        NULL);
  * ...
  * }
  * ]|
  *   ...
  *   // set up sync handler for setting the xid once the pipeline is started
  *   bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
- *   gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bus_sync_handler, NULL);
+ *   gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bus_sync_handler, NULL,
+ *       NULL);
  *   gst_object_unref (bus);
  *   ...
  *   gst_element_set_state (pipeline, GST_STATE_PLAYING);
index 559168f..7a04493 100644 (file)
@@ -2279,7 +2279,8 @@ connect_bus_signals (PlaybackApp * app)
 #if defined (GDK_WINDOWING_X11) || defined (GDK_WINDOWING_WIN32) || defined (GDK_WINDOWING_QUARTZ)
   if (app->pipeline_type != 0) {
     /* handle prepare-xwindow-id element message synchronously, but only for non-playbin */
-    gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bus_sync_handler, app);
+    gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bus_sync_handler, app,
+        NULL);
   }
 #endif
 
index 69cda4e..2c978d0 100644 (file)
@@ -2523,7 +2523,7 @@ connect_bus_signals (GstElement * pipeline)
 #ifdef HAVE_X
   /* handle prepare-window-handle element message synchronously */
   gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bus_sync_handler,
-      pipeline);
+      pipeline, NULL);
 #endif
 
   gst_bus_add_signal_watch_full (bus, G_PRIORITY_HIGH);
index b007222..dd15daa 100644 (file)
@@ -226,7 +226,8 @@ main (int argc, char **argv)
   open_display ();
 
   bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
-  gst_bus_set_sync_handler (bus, (GstBusSyncHandler) create_window, pipeline);
+  gst_bus_set_sync_handler (bus, (GstBusSyncHandler) create_window, pipeline,
+      NULL);
 
   gst_element_set_state (pipeline, GST_STATE_PLAYING);