mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
valve: Make the drop variable into an atomic.
Using an atomic allows us to avoid locking the whole object all time time. As suggested by Stefan Kost.
This commit is contained in:
parent
473be88d5d
commit
11eb6ef836
2 changed files with 10 additions and 35 deletions
|
@ -153,9 +153,7 @@ gst_valve_set_property (GObject * object,
|
|||
|
||||
switch (prop_id) {
|
||||
case ARG_DROP:
|
||||
GST_OBJECT_LOCK (object);
|
||||
valve->drop = g_value_get_boolean (value);
|
||||
GST_OBJECT_UNLOCK (object);
|
||||
g_atomic_int_set (&valve->drop, g_value_get_boolean (value));
|
||||
break;
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
|
@ -171,9 +169,7 @@ gst_valve_get_property (GObject * object,
|
|||
|
||||
switch (prop_id) {
|
||||
case ARG_DROP:
|
||||
GST_OBJECT_LOCK (object);
|
||||
g_value_set_boolean (value, valve->drop);
|
||||
GST_OBJECT_UNLOCK (object);
|
||||
g_value_set_boolean (value, g_atomic_int_get (&valve->drop));
|
||||
break;
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
|
@ -186,13 +182,8 @@ gst_valve_chain (GstPad * pad, GstBuffer * buffer)
|
|||
{
|
||||
GstValve *valve = GST_VALVE (gst_pad_get_parent_element (pad));
|
||||
GstFlowReturn ret = GST_FLOW_OK;
|
||||
gboolean drop;
|
||||
|
||||
GST_OBJECT_LOCK (valve);
|
||||
drop = valve->drop;
|
||||
GST_OBJECT_UNLOCK (valve);
|
||||
|
||||
if (drop) {
|
||||
if (g_atomic_int_get (&valve->drop)) {
|
||||
gst_buffer_unref (buffer);
|
||||
valve->discont = TRUE;
|
||||
} else {
|
||||
|
@ -208,10 +199,8 @@ gst_valve_chain (GstPad * pad, GstBuffer * buffer)
|
|||
/* Ignore errors if "drop" was changed while the thread was blocked
|
||||
* downwards
|
||||
*/
|
||||
GST_OBJECT_LOCK (valve);
|
||||
if (valve->drop)
|
||||
if (g_atomic_int_get (&valve->drop))
|
||||
ret = GST_FLOW_OK;
|
||||
GST_OBJECT_UNLOCK (valve);
|
||||
|
||||
gst_object_unref (valve);
|
||||
|
||||
|
@ -224,13 +213,8 @@ gst_valve_event (GstPad * pad, GstEvent * event)
|
|||
{
|
||||
GstValve *valve = GST_VALVE (gst_pad_get_parent_element (pad));
|
||||
gboolean ret = TRUE;
|
||||
gboolean drop;
|
||||
|
||||
GST_OBJECT_LOCK (valve);
|
||||
drop = valve->drop;
|
||||
GST_OBJECT_UNLOCK (valve);
|
||||
|
||||
if (drop)
|
||||
if (g_atomic_int_get (&valve->drop))
|
||||
gst_event_unref (event);
|
||||
else
|
||||
ret = gst_pad_push_event (valve->srcpad, event);
|
||||
|
@ -238,10 +222,8 @@ gst_valve_event (GstPad * pad, GstEvent * event)
|
|||
/* Ignore errors if "drop" was changed while the thread was blocked
|
||||
* downwards.
|
||||
*/
|
||||
GST_OBJECT_LOCK (valve);
|
||||
if (valve->drop)
|
||||
if (g_atomic_int_get (&valve->drop))
|
||||
ret = TRUE;
|
||||
GST_OBJECT_UNLOCK (valve);
|
||||
|
||||
gst_object_unref (valve);
|
||||
return ret;
|
||||
|
@ -253,13 +235,8 @@ gst_valve_buffer_alloc (GstPad * pad, guint64 offset, guint size,
|
|||
{
|
||||
GstValve *valve = GST_VALVE (gst_pad_get_parent_element (pad));
|
||||
GstFlowReturn ret = GST_FLOW_OK;
|
||||
gboolean drop;
|
||||
|
||||
GST_OBJECT_LOCK (valve);
|
||||
drop = valve->drop;
|
||||
GST_OBJECT_UNLOCK (valve);
|
||||
|
||||
if (drop)
|
||||
if (g_atomic_int_get (&valve->drop))
|
||||
*buf = NULL;
|
||||
else
|
||||
ret = gst_pad_alloc_buffer (valve->srcpad, offset, size, caps, buf);
|
||||
|
@ -267,10 +244,8 @@ gst_valve_buffer_alloc (GstPad * pad, guint64 offset, guint size,
|
|||
/* Ignore errors if "drop" was changed while the thread was blocked
|
||||
* downwards
|
||||
*/
|
||||
GST_OBJECT_LOCK (valve);
|
||||
if (valve->drop)
|
||||
if (g_atomic_int_get (&valve->drop))
|
||||
ret = GST_FLOW_OK;
|
||||
GST_OBJECT_UNLOCK (valve);
|
||||
|
||||
gst_object_unref (valve);
|
||||
|
||||
|
|
|
@ -55,8 +55,8 @@ struct _GstValve
|
|||
/*< private >*/
|
||||
GstElement parent;
|
||||
|
||||
/* Protected by the object lock */
|
||||
gboolean drop;
|
||||
/* atomic boolean */
|
||||
volatile gint drop;
|
||||
|
||||
/* Protected by the stream lock */
|
||||
gboolean discont;
|
||||
|
|
Loading…
Reference in a new issue