mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
decodebin: Only enable multiqueue buffering once we're pre-rolled
Otherwise we will emit buffering messages not just from the last multiqueue but also from previous multiqueues... confusing the application with different percentages during pre-rolling.
This commit is contained in:
parent
4f32010916
commit
c4caeb73ce
1 changed files with 3 additions and 9 deletions
|
@ -3240,14 +3240,6 @@ gst_decode_group_new (GstDecodeBin * dbin, GstDecodeChain * parent)
|
||||||
if (G_UNLIKELY (!group->multiqueue))
|
if (G_UNLIKELY (!group->multiqueue))
|
||||||
goto missing_multiqueue;
|
goto missing_multiqueue;
|
||||||
|
|
||||||
/* default is for use-buffering is FALSE */
|
|
||||||
if (dbin->use_buffering) {
|
|
||||||
g_object_set (mq,
|
|
||||||
"use-buffering", TRUE,
|
|
||||||
"low-percent", dbin->low_percent,
|
|
||||||
"high-percent", dbin->high_percent, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* configure queue sizes for preroll */
|
/* configure queue sizes for preroll */
|
||||||
seekable = FALSE;
|
seekable = FALSE;
|
||||||
if (parent && parent->demuxer) {
|
if (parent && parent->demuxer) {
|
||||||
|
@ -3669,7 +3661,9 @@ gst_decode_group_reset_buffering (GstDecodeGroup * group)
|
||||||
/* all chains are buffering already, no need to do it here */
|
/* all chains are buffering already, no need to do it here */
|
||||||
g_object_set (group->multiqueue, "use-buffering", FALSE, NULL);
|
g_object_set (group->multiqueue, "use-buffering", FALSE, NULL);
|
||||||
} else {
|
} else {
|
||||||
g_object_set (group->multiqueue, "use-buffering", TRUE, NULL);
|
g_object_set (group->multiqueue, "use-buffering", TRUE,
|
||||||
|
"low-percent", group->dbin->low_percent,
|
||||||
|
"high-percent", group->dbin->high_percent, NULL);
|
||||||
}
|
}
|
||||||
decodebin_set_queue_size (group->dbin, group->multiqueue, FALSE, FALSE);
|
decodebin_set_queue_size (group->dbin, group->multiqueue, FALSE, FALSE);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue