Skip to content

Commit 10ebede

Browse files
author
bors-servo
authored
Auto merge of #318 - ferjm:progressive.download.android, r=jdm
Disable progressive downloading on Android This fixes servo/servo#24413
2 parents 2f14be0 + b4f8d55 commit 10ebede

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

backends/gstreamer/player.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,9 @@ impl GStreamerPlayer {
412412

413413
let pipeline = player.get_pipeline();
414414

415-
// FIXME(#282): The progressive downloading breaks playback on Windows.
416-
if !cfg!(target_os = "windows") {
415+
// FIXME(#282): The progressive downloading breaks playback on Windows and Android.
416+
if !cfg!(any(target_os = "windows", target_os = "android")) {
417+
417418
// Set player to perform progressive downloading. This will make the
418419
// player store the downloaded media in a local temporary file for
419420
// faster playback of already-downloaded chunks.

0 commit comments

Comments
 (0)