]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blobdiff - gst/gstthreaddummy.c
gst-indent run on core
[glsdk/gstreamer0-10.git] / gst / gstthreaddummy.c
index 1f32dd2eeea69700c50fe924b36e0a435069de23..fedbd589ced81eff0e42a8cb400bf31ba3808b30 100644 (file)
 #include "gstlog.h"
 
 static GMutex *mutex = NULL;
-static GCond  *cond = NULL;
+static GCond *cond = NULL;
 
-static GMutex*
-gst_mutex_new_dummy_impl (void) 
+static GMutex *
+gst_mutex_new_dummy_impl (void)
 {
   if (!mutex)
     mutex = g_malloc (8);
@@ -34,16 +34,19 @@ gst_mutex_new_dummy_impl (void)
   return mutex;
 }
 
-static void gst_mutex_dummy_impl (GMutex *mutex) { /* NOP */ }
+static void
+gst_mutex_dummy_impl (GMutex * mutex)
+{                              /* NOP */
+}
 
 static gboolean
-gst_mutex_trylock_dummy_impl (GMutex *mutex)
+gst_mutex_trylock_dummy_impl (GMutex * mutex)
 {
   return TRUE;
 }
 
-static GCond*
-gst_cond_new_dummy_impl (void) 
+static GCond *
+gst_cond_new_dummy_impl (void)
 {
   if (!cond)
     cond = g_malloc (8);
@@ -52,16 +55,19 @@ gst_cond_new_dummy_impl (void)
 }
 
 static void
-gst_cond_dummy_impl (GCond *cond) { /* NOP */ }
+gst_cond_dummy_impl (GCond * cond)
+{                              /* NOP */
+}
 
 static gboolean
-gst_cond_timed_wait_dummy_impl (GCond *cond, GMutex *mutex, GTimeVal *end_time)
+gst_cond_timed_wait_dummy_impl (GCond * cond, GMutex * mutex,
+    GTimeVal * end_time)
 {
   struct timeval tvtarget;
   GTimeVal tvnow;
   guint64 now, target;
   gint64 diff;
-  
+
   target = end_time->tv_sec * 1000000 + end_time->tv_usec;
 
   g_get_current_time (&tvnow);
@@ -72,13 +78,13 @@ gst_cond_timed_wait_dummy_impl (GCond *cond, GMutex *mutex, GTimeVal *end_time)
     tvtarget.tv_usec = diff % 1000000;
     tvtarget.tv_sec = diff / 1000000;
 
-    select(0, NULL, NULL, NULL, &tvtarget);
+    select (0, NULL, NULL, NULL, &tvtarget);
   }
-  
+
   return TRUE;
 }
 
-static GPrivate*
+static GPrivate *
 gst_private_new_dummy_impl (GDestroyNotify destructor)
 {
   gpointer data;
@@ -89,35 +95,41 @@ gst_private_new_dummy_impl (GDestroyNotify destructor)
 }
 
 static gpointer
-gst_private_get_dummy_impl (GPrivate *private_key)
+gst_private_get_dummy_impl (GPrivate * private_key)
 {
   gpointer *data = (gpointer) private_key;
-  
+
   return *data;
 }
 
 static void
-gst_private_set_dummy_impl (GPrivate *private_key, gpointer data)
+gst_private_set_dummy_impl (GPrivate * private_key, gpointer data)
 {
-  *((gpointer*)private_key) = data;
+  *((gpointer *) private_key) = data;
 }
 
 static void
-gst_thread_create_dummy_impl (GThreadFunc func, gpointer data, gulong stack_size,
-                             gboolean joinable, gboolean bound, GThreadPriority priority,
-                             gpointer thread, GError **error)
+gst_thread_create_dummy_impl (GThreadFunc func, gpointer data,
+    gulong stack_size, gboolean joinable, gboolean bound,
+    GThreadPriority priority, gpointer thread, GError ** error)
 {
   g_warning ("GStreamer configured to not use threads");
 }
 
 static void
-gst_thread_dummy_impl (void) { /* NOP */ }
+gst_thread_dummy_impl (void)
+{                              /* NOP */
+}
 
 static void
-gst_thread_dummy_impl_1 (gpointer thread) { /* NOP */ }
+gst_thread_dummy_impl_1 (gpointer thread)
+{                              /* NOP */
+}
 
 static void
-gst_thread_set_priority_dummy_impl (gpointer thread, GThreadPriority priority) { /* NOP */ }
+gst_thread_set_priority_dummy_impl (gpointer thread, GThreadPriority priority)
+{                              /* NOP */
+}
 
 static gboolean
 gst_thread_equal_dummy_impl (gpointer thread1, gpointer thread2)
@@ -125,29 +137,24 @@ gst_thread_equal_dummy_impl (gpointer thread1, gpointer thread2)
   return (thread1 == thread2);
 }
 
-GThreadFunctions 
-gst_thread_dummy_functions =
-{
-  gst_mutex_new_dummy_impl,
-  (void (*)(GMutex *)) gst_mutex_dummy_impl,
-  gst_mutex_trylock_dummy_impl,
-  (void (*)(GMutex *)) gst_mutex_dummy_impl,
-  gst_mutex_dummy_impl,
-  gst_cond_new_dummy_impl,
-  (void (*)(GCond *)) gst_cond_dummy_impl,
-  (void (*)(GCond *)) gst_cond_dummy_impl,
-  (void (*)(GCond *, GMutex *)) gst_cond_dummy_impl,
-  gst_cond_timed_wait_dummy_impl,
-  gst_cond_dummy_impl,
-  gst_private_new_dummy_impl,
-  gst_private_get_dummy_impl,
-  gst_private_set_dummy_impl,
-  gst_thread_create_dummy_impl,
-  gst_thread_dummy_impl,
-  gst_thread_dummy_impl_1,
-  gst_thread_dummy_impl,
-  gst_thread_set_priority_dummy_impl,
-  gst_thread_dummy_impl_1,
-  gst_thread_equal_dummy_impl
-};
-
+GThreadFunctions gst_thread_dummy_functions = {
+gst_mutex_new_dummy_impl,
+      (void (*)(GMutex *)) gst_mutex_dummy_impl,
+      gst_mutex_trylock_dummy_impl,
+      (void (*)(GMutex *)) gst_mutex_dummy_impl,
+      gst_mutex_dummy_impl,
+      gst_cond_new_dummy_impl,
+      (void (*)(GCond *)) gst_cond_dummy_impl,
+      (void (*)(GCond *)) gst_cond_dummy_impl,
+      (void (*)(GCond *, GMutex *)) gst_cond_dummy_impl,
+      gst_cond_timed_wait_dummy_impl,
+      gst_cond_dummy_impl,
+      gst_private_new_dummy_impl,
+      gst_private_get_dummy_impl,
+      gst_private_set_dummy_impl,
+      gst_thread_create_dummy_impl,
+      gst_thread_dummy_impl,
+      gst_thread_dummy_impl_1,
+      gst_thread_dummy_impl,
+      gst_thread_set_priority_dummy_impl,
+      gst_thread_dummy_impl_1, gst_thread_equal_dummy_impl};