Skip to content

Commit 345b343

Browse files
committed
web: Switch to ExternalVideoBackend with the webcodecs feature
1 parent 88a0974 commit 345b343

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ruffle_web_common = { path = "common" }
4343
ruffle_render = { path = "../render" }
4444
ruffle_render_webgl = { path = "../render/webgl", optional = true }
4545
ruffle_render_wgpu = { path = "../render/wgpu", optional = true }
46-
ruffle_video_software = { path = "../video/software" }
46+
ruffle_video_external = { path = "../video/external", features = ["webcodecs"] }
4747
url = { workspace = true }
4848
wasm-bindgen = { workspace = true }
4949
wasm-bindgen-futures = "0.4.49"

web/src/builder.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use ruffle_core::{
1616
};
1717
use ruffle_render::backend::RenderBackend;
1818
use ruffle_render::quality::StageQuality;
19-
use ruffle_video_software::backend::SoftwareVideoBackend;
19+
use ruffle_video_external::backend::ExternalVideoBackend;
2020
use ruffle_web_common::JsResult;
2121
use std::cell::RefCell;
2222
use std::collections::HashMap;
@@ -646,7 +646,9 @@ impl RuffleInstanceBuilder {
646646
let core = builder
647647
.with_log(log_adapter::WebLogBackend::new(trace_observer.clone()))
648648
.with_ui(ui::WebUiBackend::new(js_player.clone(), &canvas))
649-
.with_video(SoftwareVideoBackend::new())
649+
.with_video(ExternalVideoBackend::new_with_webcodecs(
650+
log_subscriber.clone(),
651+
))
650652
.with_letterbox(self.letterbox)
651653
.with_max_execution_duration(self.max_execution_duration)
652654
.with_player_version(self.player_version)

0 commit comments

Comments
 (0)