We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f14be0 + b4f8d55 commit 10ebedeCopy full SHA for 10ebede
backends/gstreamer/player.rs
@@ -412,8 +412,9 @@ impl GStreamerPlayer {
412
413
let pipeline = player.get_pipeline();
414
415
- // FIXME(#282): The progressive downloading breaks playback on Windows.
416
- if !cfg!(target_os = "windows") {
+ // FIXME(#282): The progressive downloading breaks playback on Windows and Android.
+ if !cfg!(any(target_os = "windows", target_os = "android")) {
417
+
418
// Set player to perform progressive downloading. This will make the
419
// player store the downloaded media in a local temporary file for
420
// faster playback of already-downloaded chunks.
0 commit comments