utils/fallbacksrc: Set use-buffering=true on uridecodebin3 to actually get network buffering

This commit is contained in:
Sebastian Dröge 2020-05-20 12:42:42 +03:00
parent c91e480f09
commit ba161a146d

View file

@ -527,6 +527,7 @@ impl FallbackSrc {
.expect("No uridecodebin3 found");
source.set_property("uri", &uri).unwrap();
source.set_property("use-buffering", &true).unwrap();
source
}