summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-08-18 15:01:33 +0300
committerSebastian Dröge <sebastian@centricular.com>2015-08-18 15:19:03 +0300
commit1ea81114ea6bd48b581f19002018680933aa7a12 (patch)
treef080fc34f818eb65b8965fd43177b2e1b3c70300
parent5c8ef0ea05123506dfc35c70c8b165bca7435dad (diff)
decodebin: Store extra_buffer_required per group, not globally
It's only relevant for each group, and by storing it in the group we have locking and everything else like for the other buffering-related variables. Locking looks a bit fishy still, but it was like that for a long time already so shouldn't be worse than before.
-rw-r--r--gst/playback/gstdecodebin2.c57
1 files changed, 31 insertions, 26 deletions
diff --git a/gst/playback/gstdecodebin2.c b/gst/playback/gstdecodebin2.c
index 6e5f362e2..1d0383c16 100644
--- a/gst/playback/gstdecodebin2.c
+++ b/gst/playback/gstdecodebin2.c
@@ -186,8 +186,6 @@ struct _GstDecodeBin
GList *filtered_errors; /* filtered error messages */
GList *buffering_status; /* element currently buffering messages */
-
- gboolean extra_buffer_required; /* whether to controll queue size or not */
};
struct _GstDecodeBinClass
@@ -287,10 +285,11 @@ static void type_found (GstElement * typefind, guint probability,
GstCaps * caps, GstDecodeBin * decode_bin);
static void decodebin_set_queue_size (GstDecodeBin * dbin,
- GstElement * multiqueue, gboolean preroll, gboolean seekable);
+ GstElement * multiqueue, gboolean preroll, gboolean seekable,
+ gboolean extra_buffer_required);
static void decodebin_set_queue_size_full (GstDecodeBin * dbin,
GstElement * multiqueue, gboolean use_buffering, gboolean preroll,
- gboolean seekable);
+ gboolean seekable, gboolean extra_buffer_required);
static gboolean gst_decode_bin_autoplug_continue (GstElement * element,
GstPad * pad, GstCaps * caps);
@@ -407,6 +406,7 @@ struct _GstDecodeGroup
gboolean overrun; /* TRUE if the multiqueue signaled overrun. This
* means that we should really expose the group */
+ gboolean extra_buffer_required; /* whether we allow some extra buffering to happen because of overrun */
gboolean no_more_pads; /* TRUE if the demuxer signaled no-more-pads */
gboolean drained; /* TRUE if the all children are drained */
@@ -1102,8 +1102,6 @@ gst_decode_bin_init (GstDecodeBin * decode_bin)
decode_bin->expose_allstreams = DEFAULT_EXPOSE_ALL_STREAMS;
decode_bin->connection_speed = DEFAULT_CONNECTION_SPEED;
-
- decode_bin->extra_buffer_required = FALSE;
}
static void
@@ -3051,13 +3049,15 @@ no_more_pads_cb (GstElement * element, GstDecodeChain * chain)
GST_DEBUG_OBJECT (element, "Setting group %p to complete", group);
group->no_more_pads = TRUE;
- group->dbin->extra_buffer_required = FALSE;
+ group->extra_buffer_required = FALSE;
+
/* this group has prerolled enough to not need more pads,
* we can probably set its buffering state to playing now */
GST_DEBUG_OBJECT (group->dbin, "Setting group %p multiqueue to "
"'playing' buffering mode", group);
decodebin_set_queue_size (group->dbin, group->multiqueue, FALSE,
- (group->parent ? group->parent->seekable : TRUE));
+ (group->parent ? group->parent->seekable : TRUE),
+ group->extra_buffer_required);
CHAIN_MUTEX_UNLOCK (chain);
EXPOSE_LOCK (chain->dbin);
@@ -3490,16 +3490,17 @@ multi_queue_overrun_cb (GstElement * queue, GstDecodeGroup * group)
/* this group has prerolled enough to not need more pads,
* we can probably set its buffering state to playing now */
if (!group->no_more_pads && group->parent->demuxer
- && !dbin->extra_buffer_required) {
+ && !group->extra_buffer_required) {
group->overrun = FALSE;
- dbin->extra_buffer_required = TRUE;
+ group->extra_buffer_required = TRUE;
} else {
GST_DEBUG_OBJECT (group->dbin, "Setting group %p multiqueue to "
"'playing' buffering mode", group);
group->overrun = TRUE;
- dbin->extra_buffer_required = FALSE;
+ group->extra_buffer_required = FALSE;
decodebin_set_queue_size (group->dbin, group->multiqueue, FALSE,
- (group->parent ? group->parent->seekable : TRUE));
+ (group->parent ? group->parent->seekable : TRUE),
+ group->extra_buffer_required);
}
/* FIXME: We should make sure that everything gets exposed now
@@ -3514,17 +3515,17 @@ multi_queue_overrun_cb (GstElement * queue, GstDecodeGroup * group)
if (!gst_decode_bin_expose (dbin))
GST_WARNING_OBJECT (dbin, "Couldn't expose group");
} else {
- dbin->extra_buffer_required = TRUE;
+ group->extra_buffer_required = TRUE;
}
}
EXPOSE_UNLOCK (dbin);
- if (dbin->extra_buffer_required) {
+ if (group->extra_buffer_required) {
GST_DEBUG_OBJECT (group->dbin,
- "Setting group %p multiqueue to " "'extra_buffer_required' mode",
- group);
+ "Setting group %p multiqueue to 'extra_buffer_required' mode", group);
decodebin_set_queue_size (group->dbin, group->multiqueue, FALSE,
- (group->parent ? group->parent->seekable : TRUE));
+ (group->parent ? group->parent->seekable : TRUE),
+ group->extra_buffer_required);
}
}
@@ -3667,7 +3668,7 @@ gst_decode_chain_start_free_hidden_groups_thread (GstDecodeChain * chain)
static void
decodebin_set_queue_size (GstDecodeBin * dbin, GstElement * multiqueue,
- gboolean preroll, gboolean seekable)
+ gboolean preroll, gboolean seekable, gboolean extra_buffer_required)
{
gboolean use_buffering;
@@ -3675,21 +3676,22 @@ decodebin_set_queue_size (GstDecodeBin * dbin, GstElement * multiqueue,
g_object_get (multiqueue, "use-buffering", &use_buffering, NULL);
decodebin_set_queue_size_full (dbin, multiqueue, use_buffering, preroll,
- seekable);
+ seekable, extra_buffer_required);
}
/* configure queue sizes, this depends on the buffering method and if we are
* playing or prerolling. */
static void
decodebin_set_queue_size_full (GstDecodeBin * dbin, GstElement * multiqueue,
- gboolean use_buffering, gboolean preroll, gboolean seekable)
+ gboolean use_buffering, gboolean preroll, gboolean seekable,
+ gboolean extra_buffer_required)
{
guint max_bytes, max_buffers;
guint64 max_time;
GST_DEBUG_OBJECT (multiqueue,
- "use buffering %d, add extra buffer size mode %d", use_buffering,
- dbin->extra_buffer_required);
+ "preroll: %d, use buffering: %d, seekable: %d, extra buffer mode: %d",
+ preroll, use_buffering, seekable, extra_buffer_required);
if (preroll || use_buffering) {
/* takes queue limits, initially we only queue up up to the max bytes limit,
@@ -3705,7 +3707,7 @@ decodebin_set_queue_size_full (GstDecodeBin * dbin, GstElement * multiqueue,
max_time = seekable ? AUTO_PREROLL_SEEKABLE_SIZE_TIME :
AUTO_PREROLL_NOT_SEEKABLE_SIZE_TIME;
}
- } else if (dbin->extra_buffer_required) {
+ } else if (extra_buffer_required) {
max_bytes = AUTO_PREROLL_SIZE_BYTES + DEFAULT_EXTRA_SIZE_BUFFERS_BYTES;
max_buffers = AUTO_PREROLL_SIZE_BUFFERS;
if ((max_time = dbin->max_size_time) == 0)
@@ -3769,7 +3771,10 @@ gst_decode_group_new (GstDecodeBin * dbin, GstDecodeChain * parent)
gst_object_unref (pad);
}
}
- decodebin_set_queue_size_full (dbin, mq, FALSE, TRUE, seekable);
+ group->extra_buffer_required = FALSE;
+
+ decodebin_set_queue_size_full (dbin, mq, FALSE, TRUE, seekable,
+ group->extra_buffer_required);
group->overrunsig = g_signal_connect (mq, "overrun",
G_CALLBACK (multi_queue_overrun_cb), group);
@@ -4247,7 +4252,8 @@ gst_decode_group_reset_buffering (GstDecodeGroup * group)
}
decodebin_set_queue_size_full (group->dbin, group->multiqueue, !ret,
- FALSE, (group->parent ? group->parent->seekable : TRUE));
+ FALSE, (group->parent ? group->parent->seekable : TRUE),
+ group->extra_buffer_required);
if (ret) {
/* all chains are buffering already, no need to do it here */
@@ -5201,7 +5207,6 @@ gst_decode_bin_change_state (GstElement * element, GstStateChange transition)
g_list_free_full (dbin->buffering_status,
(GDestroyNotify) gst_message_unref);
dbin->buffering_status = NULL;
- dbin->extra_buffer_required = FALSE;
break;
case GST_STATE_CHANGE_READY_TO_NULL:
default: