mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
aggregator: Document locking of GstAggregatorPrivate members
Most of them are protected by the object lock, specify which ones use a different lock. https://bugzilla.gnome.org/show_bug.cgi?id=742684
This commit is contained in:
parent
fd326639ea
commit
0588222925
1 changed files with 5 additions and 11 deletions
|
@ -192,6 +192,8 @@ gst_aggregator_pad_flush (GstAggregatorPad * aggpad, GstAggregator * agg)
|
|||
*************************************/
|
||||
static GstElementClass *aggregator_parent_class = NULL;
|
||||
|
||||
/* All members are protected by the object lock unless otherwise noted */
|
||||
|
||||
struct _GstAggregatorPrivate
|
||||
{
|
||||
gint padcount;
|
||||
|
@ -200,23 +202,15 @@ struct _GstAggregatorPrivate
|
|||
gboolean running; /* protected by SRC_STREAM_LOCK */
|
||||
|
||||
gint seqnum;
|
||||
gboolean send_stream_start;
|
||||
gboolean send_stream_start; /* protected by srcpad stream lock */
|
||||
gboolean send_segment;
|
||||
gboolean flush_seeking;
|
||||
gboolean pending_flush_start;
|
||||
gboolean send_eos;
|
||||
GstFlowReturn flow_return;
|
||||
|
||||
gboolean send_stream_start; /* protected by srcpad stream lock */
|
||||
gboolean send_segment; /* protected by object lock */
|
||||
gboolean flush_seeking; /* protected by object lock */
|
||||
gboolean pending_flush_start; /* protected by object lock */
|
||||
gboolean send_eos; /* protected by srcpad stream lock */
|
||||
GstFlowReturn flow_return; /* protected by object lock */
|
||||
GstFlowReturn flow_return;
|
||||
|
||||
GstCaps *srccaps; /* protected by the srcpad stream lock */
|
||||
|
||||
/* protected by object lock */
|
||||
GstTagList *tags;
|
||||
gboolean tags_changed;
|
||||
|
||||
|
@ -228,7 +222,7 @@ struct _GstAggregatorPrivate
|
|||
GstClockTime sub_latency_max;
|
||||
|
||||
/* aggregate */
|
||||
GstClockID aggregate_id;
|
||||
GstClockID aggregate_id; /* protected by src_lock */
|
||||
GMutex src_lock;
|
||||
GCond src_cond;
|
||||
|
||||
|
|
Loading…
Reference in a new issue