mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 15:36:35 +00:00
ext/: gst_atomic_int_set ==> g_atomic_int_set
Original commit message from CVS: * ext/cdio/gstcdiocddasrc.c: * ext/dv/gstdvdemux.c: gst_atomic_int_set ==> g_atomic_int_set
This commit is contained in:
parent
719b797ad0
commit
ee84c0e8d3
2 changed files with 2 additions and 2 deletions
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit d3ace35f57dd196a3e83a0a48f1350ca32db8e39
|
Subproject commit 3bb6edfe927d6d3020d2f2a4604f54caa61cd104
|
|
@ -359,7 +359,7 @@ gst_cdio_cdda_src_set_property (GObject * object, guint prop_id,
|
||||||
gint speed;
|
gint speed;
|
||||||
|
|
||||||
speed = g_value_get_int (value);
|
speed = g_value_get_int (value);
|
||||||
gst_atomic_int_set (&src->read_speed, speed);
|
g_atomic_int_set (&src->read_speed, speed);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue