]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blobdiff - gst/gstthread.c
gst-indent run on core
[glsdk/gstreamer0-10.git] / gst / gstthread.c
index b0eac6289bd6d316bea78c26a5392ee6ee5b8624..1a66685a9a48edaf908f69529ef309773d627c71 100644 (file)
 #define GST_CAT_DEFAULT GST_CAT_THREAD
 #define STACK_SIZE 0x200000
 
-static GstElementDetails gst_thread_details = GST_ELEMENT_DETAILS (
-  "Threaded container",
-  "Generic/Bin",
-  "Container that creates/manages a thread",
-  "Erik Walthinsen <omega@cse.ogi.edu>, "
-  "Benjamin Otte <in7y118@informatik.uni-hamburg.de"
-);
+static GstElementDetails gst_thread_details =
+GST_ELEMENT_DETAILS ("Threaded container",
+    "Generic/Bin",
+    "Container that creates/manages a thread",
+    "Erik Walthinsen <omega@cse.ogi.edu>, "
+    "Benjamin Otte <in7y118@informatik.uni-hamburg.de");
 
 /* Thread signals and args */
-enum {
+enum
+{
   SHUTDOWN,
   /* FILL ME */
   LAST_SIGNAL
 };
 
-enum {
-  SPINUP=0,
+enum
+{
+  SPINUP = 0,
   STATECHANGE,
   STARTUP
 };
 
-enum {
+enum
+{
   ARG_0,
   ARG_PRIORITY
 };
 
 
-static void            gst_thread_base_init            (gpointer g_class);
-static void            gst_thread_class_init           (gpointer g_class, gpointer class_data);
-static void            gst_thread_init                 (GTypeInstance *instance, gpointer g_class);
+static void gst_thread_base_init (gpointer g_class);
+static void gst_thread_class_init (gpointer g_class, gpointer class_data);
+static void gst_thread_init (GTypeInstance * instance, gpointer g_class);
 
-static void            gst_thread_dispose              (GObject *object);
+static void gst_thread_dispose (GObject * object);
 
-static void            gst_thread_set_property         (GObject *object, guint prop_id, 
-                                                        const GValue *value, GParamSpec *pspec);
-static void            gst_thread_get_property         (GObject *object, guint prop_id,
-                                                        GValue *value, GParamSpec *pspec);
-static GstElementStateReturn gst_thread_change_state   (GstElement *element);
-static void            gst_thread_child_state_change   (GstBin *bin, GstElementState oldstate, 
-                                                        GstElementState newstate, GstElement *element);
+static void gst_thread_set_property (GObject * object, guint prop_id,
+    const GValue * value, GParamSpec * pspec);
+static void gst_thread_get_property (GObject * object, guint prop_id,
+    GValue * value, GParamSpec * pspec);
+static GstElementStateReturn gst_thread_change_state (GstElement * element);
+static void gst_thread_child_state_change (GstBin * bin,
+    GstElementState oldstate, GstElementState newstate, GstElement * element);
 
-static void            gst_thread_catch                (GstThread *thread);
-static void            gst_thread_release              (GstThread *thread);
+static void gst_thread_catch (GstThread * thread);
+static void gst_thread_release (GstThread * thread);
 
 #ifndef GST_DISABLE_LOADSAVE
-static xmlNodePtr      gst_thread_save_thyself         (GstObject *object,
-                                                        xmlNodePtr parent);
-static void            gst_thread_restore_thyself      (GstObject *object,
-                                                        xmlNodePtr self);
+static xmlNodePtr gst_thread_save_thyself (GstObject * object,
+    xmlNodePtr parent);
+static void gst_thread_restore_thyself (GstObject * object, xmlNodePtr self);
 #endif
 
-static void *          gst_thread_main_loop            (void *arg);
+static void *gst_thread_main_loop (void *arg);
 
 #define GST_TYPE_THREAD_PRIORITY (gst_thread_priority_get_type())
 static GType
-gst_thread_priority_get_type(void) 
+gst_thread_priority_get_type (void)
 {
   static GType thread_priority_type = 0;
-  static GEnumValue thread_priority[] = 
-  {
-    { G_THREAD_PRIORITY_LOW,    "LOW",     "Low Priority Scheduling" },
-    { G_THREAD_PRIORITY_NORMAL, "NORMAL",  "Normal Scheduling" },
-    { G_THREAD_PRIORITY_HIGH,   "HIGH",    "High Priority Scheduling" },
-    { G_THREAD_PRIORITY_URGENT, "URGENT",  "Urgent Scheduling" },
-    { 0, NULL, NULL },
+  static GEnumValue thread_priority[] = {
+    {G_THREAD_PRIORITY_LOW, "LOW", "Low Priority Scheduling"},
+    {G_THREAD_PRIORITY_NORMAL, "NORMAL", "Normal Scheduling"},
+    {G_THREAD_PRIORITY_HIGH, "HIGH", "High Priority Scheduling"},
+    {G_THREAD_PRIORITY_URGENT, "URGENT", "Urgent Scheduling"},
+    {0, NULL, NULL},
   };
   if (!thread_priority_type) {
-    thread_priority_type = g_enum_register_static("GstThreadPriority", thread_priority);
+    thread_priority_type =
+       g_enum_register_static ("GstThreadPriority", thread_priority);
   }
   return thread_priority_type;
 }
@@ -109,16 +110,17 @@ static guint gst_thread_signals[LAST_SIGNAL] = { 0 };
 GPrivate *gst_thread_current;
 
 GType
-gst_thread_get_type(void) {
+gst_thread_get_type (void)
+{
   static GType thread_type = 0;
 
   if (!thread_type) {
     static const GTypeInfo thread_info = {
       sizeof (GstThreadClass),
-      gst_thread_base_init, 
+      gst_thread_base_init,
+      NULL,
+      gst_thread_class_init,
       NULL,
-      gst_thread_class_init, 
-      NULL, 
       NULL,
       sizeof (GstThread),
       4,
@@ -126,7 +128,7 @@ gst_thread_get_type(void) {
       NULL
     };
     thread_type = g_type_register_static (GST_TYPE_BIN, "GstThread",
-                                         &thread_info, 0);
+       &thread_info, 0);
   }
   return thread_type;
 }
@@ -138,11 +140,15 @@ gst_thread_base_init (gpointer g_class)
 
   gst_element_class_set_details (gstelement_class, &gst_thread_details);
 }
-static void do_nothing (gpointer hi) {}
+static void
+do_nothing (gpointer hi)
+{
+}
 static void
 gst_thread_class_init (gpointer g_class, gpointer class_data)
 {
   GObjectClass *gobject_class = G_OBJECT_CLASS (g_class);
+
 #ifndef GST_DISABLE_LOADSAVE
   GstObjectClass *gstobject_class = GST_OBJECT_CLASS (g_class);
 #endif
@@ -156,31 +162,34 @@ gst_thread_class_init (gpointer g_class, gpointer class_data)
   parent_class = g_type_class_peek_parent (g_class);
 
   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_PRIORITY,
-    g_param_spec_enum ("priority", "Scheduling Policy", "The scheduling priority of the thread",
-                       GST_TYPE_THREAD_PRIORITY, G_THREAD_PRIORITY_NORMAL, G_PARAM_READWRITE));
+      g_param_spec_enum ("priority", "Scheduling Policy",
+         "The scheduling priority of the thread", GST_TYPE_THREAD_PRIORITY,
+         G_THREAD_PRIORITY_NORMAL, G_PARAM_READWRITE));
 
   gst_thread_signals[SHUTDOWN] =
-    g_signal_new ("shutdown", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
-                  G_STRUCT_OFFSET (GstThreadClass, shutdown), NULL, NULL,
-                  gst_marshal_VOID__VOID, G_TYPE_NONE, 0);
+      g_signal_new ("shutdown", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
+      G_STRUCT_OFFSET (GstThreadClass, shutdown), NULL, NULL,
+      gst_marshal_VOID__VOID, G_TYPE_NONE, 0);
 
-  gobject_class->dispose =             gst_thread_dispose;
+  gobject_class->dispose = gst_thread_dispose;
 
 #ifndef GST_DISABLE_LOADSAVE
-  gstobject_class->save_thyself =      GST_DEBUG_FUNCPTR (gst_thread_save_thyself);
-  gstobject_class->restore_thyself =   GST_DEBUG_FUNCPTR (gst_thread_restore_thyself);
+  gstobject_class->save_thyself = GST_DEBUG_FUNCPTR (gst_thread_save_thyself);
+  gstobject_class->restore_thyself =
+      GST_DEBUG_FUNCPTR (gst_thread_restore_thyself);
 #endif
 
-  gstelement_class->change_state =     GST_DEBUG_FUNCPTR (gst_thread_change_state);
+  gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_thread_change_state);
 
   gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_thread_set_property);
   gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_thread_get_property);
 
-  gstbin_class->child_state_change =   GST_DEBUG_FUNCPTR (gst_thread_child_state_change);
+  gstbin_class->child_state_change =
+      GST_DEBUG_FUNCPTR (gst_thread_child_state_change);
 }
 
 static void
-gst_thread_init (GTypeInstance *instance, gpointer g_class)
+gst_thread_init (GTypeInstance * instance, gpointer g_class)
 {
   GstScheduler *scheduler;
   GstThread *thread = GST_THREAD (instance);
@@ -198,12 +207,12 @@ gst_thread_init (GTypeInstance *instance, gpointer g_class)
   thread->lock = g_mutex_new ();
   thread->cond = g_cond_new ();
 
-  thread->thread_id = (GThread *) NULL; /* set in NULL -> READY */
+  thread->thread_id = (GThread *) NULL;        /* set in NULL -> READY */
   thread->priority = G_THREAD_PRIORITY_NORMAL;
 }
 
 static void
-gst_thread_dispose (GObject *object)
+gst_thread_dispose (GObject * object)
 {
   GstThread *thread = GST_THREAD (object);
 
@@ -216,7 +225,7 @@ gst_thread_dispose (GObject *object)
   g_mutex_free (thread->lock);
   g_cond_free (thread->cond);
 
-  gst_object_replace ((GstObject **)&GST_ELEMENT_SCHED (thread), NULL);
+  gst_object_replace ((GstObject **) & GST_ELEMENT_SCHED (thread), NULL);
 }
 
 /**
@@ -227,7 +236,7 @@ gst_thread_dispose (GObject *object)
  * change the thread's priority
  */
 void
-gst_thread_set_priority (GstThread *thread, GThreadPriority priority)
+gst_thread_set_priority (GstThread * thread, GThreadPriority priority)
 {
   g_return_if_fail (GST_IS_THREAD (thread));
 
@@ -235,7 +244,8 @@ gst_thread_set_priority (GstThread *thread, GThreadPriority priority)
 }
 
 static void
-gst_thread_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
+gst_thread_set_property (GObject * object, guint prop_id, const GValue * value,
+    GParamSpec * pspec)
 {
   GstThread *thread;
 
@@ -252,7 +262,8 @@ gst_thread_set_property (GObject *object, guint prop_id, const GValue *value, GP
 }
 
 static void
-gst_thread_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
+gst_thread_get_property (GObject * object, guint prop_id, GValue * value,
+    GParamSpec * pspec)
 {
   GstThread *thread;
 
@@ -277,8 +288,8 @@ gst_thread_get_property (GObject *object, guint prop_id, GValue *value, GParamSp
  *
  * Returns: The new thread
  */
-GstElement*
-gst_thread_new (const gchar *name)
+GstElement *
+gst_thread_new (const gchar * name)
 {
   return gst_element_factory_make ("thread", name);
 }
@@ -298,7 +309,7 @@ gst_thread_get_current (void)
 }
 
 static inline void
-gst_thread_release_children_locks (GstThread *thread)
+gst_thread_release_children_locks (GstThread * thread)
 {
   GstRealPad *peer = NULL;
   GstElement *peerelement;
@@ -309,17 +320,19 @@ gst_thread_release_children_locks (GstThread *thread)
     GList *pads;
 
     g_assert (element);
-    GST_DEBUG_OBJECT (thread, "waking element \"%s\"", GST_ELEMENT_NAME (element));
+    GST_DEBUG_OBJECT (thread, "waking element \"%s\"",
+       GST_ELEMENT_NAME (element));
     elements = g_list_next (elements);
 
     if (!gst_element_release_locks (element))
-      g_warning ("element %s could not release locks", GST_ELEMENT_NAME (element));
+      g_warning ("element %s could not release locks",
+         GST_ELEMENT_NAME (element));
 
     pads = GST_ELEMENT_PADS (element);
 
     while (pads) {
       if (GST_PAD_PEER (pads->data)) {
-        peer = GST_REAL_PAD (GST_PAD_PEER (pads->data));
+       peer = GST_REAL_PAD (GST_PAD_PEER (pads->data));
        pads = g_list_next (pads);
       } else {
        pads = g_list_next (pads);
@@ -327,27 +340,32 @@ gst_thread_release_children_locks (GstThread *thread)
       }
 
       if (!peer)
-        continue;
+       continue;
 
       peerelement = GST_PAD_PARENT (peer);
       if (!peerelement)
-        continue; /* FIXME: deal with case where there's no peer */
+       continue;               /* FIXME: deal with case where there's no peer */
 
       if (GST_ELEMENT_SCHED (peerelement) != GST_ELEMENT_SCHED (thread)) {
-        GST_LOG_OBJECT (thread, "element \"%s\" has pad cross sched boundary", GST_ELEMENT_NAME (element));
-        GST_LOG_OBJECT (thread, "waking element \"%s\"", GST_ELEMENT_NAME (peerelement));
-        if (!gst_element_release_locks (peerelement))
-          g_warning ("element %s could not release locks", GST_ELEMENT_NAME (peerelement));
+       GST_LOG_OBJECT (thread, "element \"%s\" has pad cross sched boundary",
+           GST_ELEMENT_NAME (element));
+       GST_LOG_OBJECT (thread, "waking element \"%s\"",
+           GST_ELEMENT_NAME (peerelement));
+       if (!gst_element_release_locks (peerelement))
+         g_warning ("element %s could not release locks",
+             GST_ELEMENT_NAME (peerelement));
       }
     }
   }
 }
+
 /* stops the main thread, if there is one and grabs the thread's mutex */
 static void
-gst_thread_catch (GstThread *thread)
+gst_thread_catch (GstThread * thread)
 {
   gboolean wait;
-  if (thread == gst_thread_get_current()) {
+
+  if (thread == gst_thread_get_current ()) {
     /* we're trying to catch ourself */
     if (!GST_FLAG_IS_SET (thread, GST_THREAD_MUTEX_LOCKED)) {
       g_mutex_lock (thread->lock);
@@ -361,12 +379,13 @@ gst_thread_catch (GstThread *thread)
     wait = !GST_FLAG_IS_SET (thread, GST_THREAD_STATE_SPINNING);
     while (!wait) {
       GTimeVal tv;
+
       GST_LOG_OBJECT (thread, "catching thread...");
       GST_FLAG_UNSET (thread, GST_THREAD_STATE_SPINNING);
       g_cond_signal (thread->cond);
       gst_thread_release_children_locks (thread);
       g_get_current_time (&tv);
-      g_time_val_add (&tv, 1000); /* wait a millisecond to catch the thread */
+      g_time_val_add (&tv, 1000);      /* wait a millisecond to catch the thread */
       wait = g_cond_timed_wait (thread->cond, thread->lock, &tv);
     }
     GST_LOG_OBJECT (thread, "caught thread");
@@ -375,16 +394,16 @@ gst_thread_catch (GstThread *thread)
 }
 
 static void
-gst_thread_release (GstThread *thread)
+gst_thread_release (GstThread * thread)
 {
-  if (thread != gst_thread_get_current()) {
+  if (thread != gst_thread_get_current ()) {
     g_cond_signal (thread->cond);
     g_mutex_unlock (thread->lock);
   }
 }
 
 static GstElementStateReturn
-gst_thread_change_state (GstElement *element)
+gst_thread_change_state (GstElement * element)
 {
   GstThread *thread;
   GstElementStateReturn ret;
@@ -396,8 +415,8 @@ gst_thread_change_state (GstElement *element)
   thread = GST_THREAD (element);
 
   GST_DEBUG_OBJECT (element, "changing state from %s to %s",
-            gst_element_state_get_name (GST_STATE (element)),
-            gst_element_state_get_name (GST_STATE_PENDING (element)));
+      gst_element_state_get_name (GST_STATE (element)),
+      gst_element_state_get_name (GST_STATE_PENDING (element)));
 
   gst_thread_catch (thread);
 
@@ -412,12 +431,11 @@ gst_thread_change_state (GstElement *element)
     case GST_STATE_NULL_TO_READY:
       /* create the thread */
       GST_FLAG_UNSET (thread, GST_THREAD_STATE_REAPING);
-      thread->thread_id = g_thread_create_full(gst_thread_main_loop,
-         thread, STACK_SIZE, FALSE, TRUE, thread->priority,
-         NULL);
-      if (!thread->thread_id){
-        GST_ERROR_OBJECT (element, "g_thread_create_full failed");
-        goto error_out;
+      thread->thread_id = g_thread_create_full (gst_thread_main_loop,
+         thread, STACK_SIZE, FALSE, TRUE, thread->priority, NULL);
+      if (!thread->thread_id) {
+       GST_ERROR_OBJECT (element, "g_thread_create_full failed");
+       goto error_out;
       }
       GST_LOG_OBJECT (element, "GThread created");
 
@@ -430,21 +448,25 @@ gst_thread_change_state (GstElement *element)
     {
       /* FIXME: recurse into sub-bins */
       GList *elements = (GList *) gst_bin_get_list (GST_BIN (thread));
+
       while (elements) {
-        gst_element_enable_threadsafe_properties ((GstElement*)elements->data);
-        elements = g_list_next (elements);
+       gst_element_enable_threadsafe_properties ((GstElement *) elements->
+           data);
+       elements = g_list_next (elements);
       }
       /* reset self to spinning */
-      if (thread == gst_thread_get_current()) 
-        GST_FLAG_SET (thread, GST_THREAD_STATE_SPINNING);
+      if (thread == gst_thread_get_current ())
+       GST_FLAG_SET (thread, GST_THREAD_STATE_SPINNING);
       break;
     }
     case GST_STATE_PLAYING_TO_PAUSED:
     {
       GList *elements = (GList *) gst_bin_get_list (GST_BIN (thread));
+
       while (elements) {
-        gst_element_disable_threadsafe_properties ((GstElement*)elements->data);
-        elements = g_list_next (elements);
+       gst_element_disable_threadsafe_properties ((GstElement *) elements->
+           data);
+       elements = g_list_next (elements);
       }
       break;
     }
@@ -456,19 +478,21 @@ gst_thread_change_state (GstElement *element)
       GST_LOG_OBJECT (thread, "destroying GThread %p", thread->thread_id);
       GST_FLAG_SET (thread, GST_THREAD_STATE_REAPING);
       thread->thread_id = NULL;
-      if (thread == gst_thread_get_current()) {
-        /* or should we continue? */
-        g_warning ("Thread %s is destroying itself. Function call will not return!", GST_ELEMENT_NAME (thread));
-        gst_scheduler_reset (GST_ELEMENT_SCHED (thread));
-       
-        /* unlock and signal - we are out */
-        gst_thread_release (thread);
+      if (thread == gst_thread_get_current ()) {
+       /* or should we continue? */
+       g_warning
+           ("Thread %s is destroying itself. Function call will not return!",
+           GST_ELEMENT_NAME (thread));
+       gst_scheduler_reset (GST_ELEMENT_SCHED (thread));
 
-       GST_INFO_OBJECT (thread, "GThread %p is exiting", g_thread_self());
+       /* unlock and signal - we are out */
+       gst_thread_release (thread);
 
-       g_signal_emit (G_OBJECT (thread), gst_thread_signals[SHUTDOWN], 0);
+       GST_INFO_OBJECT (thread, "GThread %p is exiting", g_thread_self ());
 
-        g_thread_exit (NULL);
+       g_signal_emit (G_OBJECT (thread), gst_thread_signals[SHUTDOWN], 0);
+
+       g_thread_exit (NULL);
       }
       /* now wait for the thread to destroy itself */
       g_cond_signal (thread->cond);
@@ -476,13 +500,14 @@ gst_thread_change_state (GstElement *element)
       /* it should be dead now */
       break;
     default:
-      GST_ERROR_OBJECT (element, "unhandled state change! %x", 
-                        GST_STATE_TRANSITION (element));
-      g_warning ("thread %s: UNHANDLED STATE CHANGE! %x", 
-                        GST_STR_NULL (GST_OBJECT_NAME (element)), GST_STATE_TRANSITION (element));
+      GST_ERROR_OBJECT (element, "unhandled state change! %x",
+         GST_STATE_TRANSITION (element));
+      g_warning ("thread %s: UNHANDLED STATE CHANGE! %x",
+         GST_STR_NULL (GST_OBJECT_NAME (element)),
+         GST_STATE_TRANSITION (element));
       /* FIXME: not doable with current threading mess:
-      g_assert_not_reached ();
-      */
+         g_assert_not_reached ();
+       */
       break;
   }
 
@@ -494,12 +519,12 @@ gst_thread_change_state (GstElement *element)
 
   gst_thread_release (thread);
   return ret;
-  
+
 error_out:
   GST_CAT_DEBUG (GST_CAT_STATES, "changing state from %s to %s failed for %s",
-             gst_element_state_get_name (GST_STATE (element)),
-            gst_element_state_get_name (GST_STATE_PENDING (element)),
-             GST_ELEMENT_NAME (element));
+      gst_element_state_get_name (GST_STATE (element)),
+      gst_element_state_get_name (GST_STATE_PENDING (element)),
+      GST_ELEMENT_NAME (element));
   gst_thread_release (thread);
   return GST_STATE_FAILURE;
 }
@@ -508,13 +533,14 @@ error_out:
    spinning (via gst_thread_catch) - then we change the state. After that the
    thread may spin on. */
 static void
-gst_thread_child_state_change (GstBin *bin, GstElementState oldstate, 
-                              GstElementState newstate, GstElement *element)
+gst_thread_child_state_change (GstBin * bin, GstElementState oldstate,
+    GstElementState newstate, GstElement * element)
 {
   GST_LOG_OBJECT (bin, "(from thread %s) child %s changed state from %s to %s",
-              gst_thread_get_current() ? GST_ELEMENT_NAME (gst_thread_get_current()) : "(none)", 
-              GST_ELEMENT_NAME (element), gst_element_state_get_name (oldstate),
-              gst_element_state_get_name (newstate));
+      gst_thread_get_current ()? GST_ELEMENT_NAME (gst_thread_get_current ()) :
+      "(none)", GST_ELEMENT_NAME (element),
+      gst_element_state_get_name (oldstate),
+      gst_element_state_get_name (newstate));
   if (parent_class->child_state_change)
     parent_class->child_state_change (bin, oldstate, newstate, element);
   /* We'll wake up the main thread now. Note that we can't lock the thread here, 
@@ -523,6 +549,7 @@ gst_thread_child_state_change (GstBin *bin, GstElementState oldstate,
   if (newstate == GST_STATE_PLAYING)
     g_cond_signal (GST_THREAD (bin)->cond);
 }
+
 /**
  * gst_thread_main_loop:
  * @arg: the thread to start
@@ -554,12 +581,12 @@ gst_thread_main_loop (void *arg)
       status = TRUE;
       GST_LOG_OBJECT (thread, "starting to iterate");
       while (status && GST_FLAG_IS_SET (thread, GST_THREAD_STATE_SPINNING)) {
-        g_mutex_unlock (thread->lock);
-        status = gst_bin_iterate (GST_BIN (thread));
-        if (GST_FLAG_IS_SET (thread, GST_THREAD_MUTEX_LOCKED)) {
+       g_mutex_unlock (thread->lock);
+       status = gst_bin_iterate (GST_BIN (thread));
+       if (GST_FLAG_IS_SET (thread, GST_THREAD_MUTEX_LOCKED)) {
          GST_FLAG_UNSET (thread, GST_THREAD_MUTEX_LOCKED);
        } else {
-          g_mutex_lock (thread->lock);
+         g_mutex_lock (thread->lock);
        }
       }
       GST_FLAG_UNSET (thread, GST_THREAD_STATE_SPINNING);
@@ -579,8 +606,8 @@ gst_thread_main_loop (void *arg)
   g_signal_emit (G_OBJECT (thread), gst_thread_signals[SHUTDOWN], 0);
 
   /* unlock and signal - we are out */
-  
-  GST_LOG_OBJECT (thread, "Thread %p exits main loop", g_thread_self());
+
+  GST_LOG_OBJECT (thread, "Thread %p exits main loop", g_thread_self ());
   g_cond_signal (thread->cond);
   g_mutex_unlock (thread->lock);
   /* don't assume the GstThread object exists anymore now */
@@ -590,8 +617,7 @@ gst_thread_main_loop (void *arg)
 
 #ifndef GST_DISABLE_LOADSAVE
 static xmlNodePtr
-gst_thread_save_thyself (GstObject *object,
-                        xmlNodePtr self)
+gst_thread_save_thyself (GstObject * object, xmlNodePtr self)
 {
   if (GST_OBJECT_CLASS (parent_class)->save_thyself)
     GST_OBJECT_CLASS (parent_class)->save_thyself (object, self);
@@ -599,8 +625,7 @@ gst_thread_save_thyself (GstObject *object,
 }
 
 static void
-gst_thread_restore_thyself (GstObject *object,
-                           xmlNodePtr self)
+gst_thread_restore_thyself (GstObject * object, xmlNodePtr self)
 {
   GST_LOG_OBJECT (object, "restoring");