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
@ -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>
|
2008-04-17 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
* ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
|
* 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));
|
g_return_if_fail (GST_IS_RING_BUFFER (buf));
|
||||||
|
|
||||||
GST_LOG_OBJECT (buf, "may start: %d", allowed);
|
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…
x
Reference in New Issue
Block a user