gst/: Don't use g_atomic_set_int where it's not needed.
authorTim-Philipp Müller <tim@centricular.net>
Thu, 17 Apr 2008 10:09:39 +0000 (10:09 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Thu, 17 Apr 2008 10:09:39 +0000 (10:09 +0000)
Original commit message from CVS:
* gst/gstcaps.c: (gst_static_caps_get):
* gst/gstclock.c: (gst_clock_entry_new):
Don't use g_atomic_set_int where it's not needed.

ChangeLog
gst/gstcaps.c
gst/gstclock.c

index d4f52f8..4d9ae0a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-04-17  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst/gstcaps.c: (gst_static_caps_get):
+       * gst/gstclock.c: (gst_clock_entry_new):
+         Don't use g_atomic_set_int where it's not needed.
+
 2008-04-17  Wim Taymans  <wim.taymans@collabora.co.uk>
 
        * gst/gstvalue.c: (gst_value_deserialize_caps):
index 02af814..19ba104 100644 (file)
@@ -453,7 +453,7 @@ gst_static_caps_get (GstStaticCaps * static_caps)
 
     /* initialize the caps to a refcount of 1 so the caps can be writable for
      * the next statement */
-    g_atomic_int_set (&temp.refcount, 1);
+    temp.refcount = 1;
 
     /* convert to string */
     if (G_UNLIKELY (!gst_caps_from_string_inplace (&temp, string)))
index a6037e6..e7a8074 100644 (file)
@@ -161,7 +161,7 @@ gst_clock_entry_new (GstClock * clock, GstClockTime time,
   GST_CAT_DEBUG_OBJECT (GST_CAT_CLOCK, clock,
       "created entry %p, time %" GST_TIME_FORMAT, entry, GST_TIME_ARGS (time));
 
-  g_atomic_int_set (&entry->refcount, 1);
+  entry->refcount = 1;
   entry->clock = clock;
   entry->type = type;
   entry->time = time;