mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
audioencoder: protect pending_events with proper lock
This commit is contained in:
parent
9a9541ff35
commit
89f6720545
1 changed files with 2 additions and 2 deletions
|
@ -1282,10 +1282,10 @@ gst_audio_encoder_sink_eventfunc (GstAudioEncoder * enc, GstEvent * event)
|
||||||
gst_tag_list_remove_tag (tags, GST_TAG_AUDIO_CODEC);
|
gst_tag_list_remove_tag (tags, GST_TAG_AUDIO_CODEC);
|
||||||
event = gst_event_new_tag (tags);
|
event = gst_event_new_tag (tags);
|
||||||
|
|
||||||
GST_OBJECT_LOCK (enc);
|
GST_AUDIO_ENCODER_STREAM_LOCK (enc);
|
||||||
enc->priv->pending_events =
|
enc->priv->pending_events =
|
||||||
g_list_append (enc->priv->pending_events, event);
|
g_list_append (enc->priv->pending_events, event);
|
||||||
GST_OBJECT_UNLOCK (enc);
|
GST_AUDIO_ENCODER_STREAM_UNLOCK (enc);
|
||||||
handled = TRUE;
|
handled = TRUE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue