Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2020-05-20 12:42:42 +0300
committerSebastian Dröge <sebastian@centricular.com>2020-05-20 12:42:42 +0300
commitba161a146dfc58b0ec2004f65362c5ecd8d6d5d3 (patch)
tree3b3e22f3c56cb5336032912916ef76f03c14d63f /utils
parentc91e480f09a5cae761675002eb407ef57f987d62 (diff)
utils/fallbacksrc: Set use-buffering=true on uridecodebin3 to actually get network buffering
Diffstat (limited to 'utils')
-rw-r--r--utils/fallbackswitch/src/fallbacksrc.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/fallbackswitch/src/fallbacksrc.rs b/utils/fallbackswitch/src/fallbacksrc.rs
index 484c29466..ae1541848 100644
--- a/utils/fallbackswitch/src/fallbacksrc.rs
+++ b/utils/fallbackswitch/src/fallbacksrc.rs
@@ -527,6 +527,7 @@ impl FallbackSrc {
.expect("No uridecodebin3 found");
source.set_property("uri", &uri).unwrap();
+ source.set_property("use-buffering", &true).unwrap();
source
}