mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
gst-libs/gst/audio/gstringbuffer.c: Use g_atomic_int_set() instead of gst_atomic_int_set().
Original commit message from CVS: * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_may_start): Use g_atomic_int_set() instead of gst_atomic_int_set().
This commit is contained in:
parent
ee1cf43285
commit
66bbadadd0
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-04-17 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_may_start):
|
||||
Use g_atomic_int_set() instead of gst_atomic_int_set().
|
||||
|
||||
2008-04-17 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
|
||||
|
|
|
@ -1757,5 +1757,5 @@ gst_ring_buffer_may_start (GstRingBuffer * buf, gboolean allowed)
|
|||
g_return_if_fail (GST_IS_RING_BUFFER (buf));
|
||||
|
||||
GST_LOG_OBJECT (buf, "may start: %d", allowed);
|
||||
gst_atomic_int_set (&buf->abidata.ABI.may_start, allowed);
|
||||
g_atomic_int_set (&buf->abidata.ABI.may_start, allowed);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue