Skip to content

Commit

Permalink
Merge pull request #1584 from canalplus/misc/demo-wasm-opt
Browse files Browse the repository at this point in the history
Demo: Only include DASH_WASM parser when explicitly asked for
  • Loading branch information
peaBerberian authored Dec 12, 2024
2 parents acd7b46 + 002b868 commit c564bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/scripts/modules/player/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ const PlayerModule = declareModule(
player
.attachWorker({
workerUrl: "./worker.js",
dashWasmUrl: "./mpd-parser.wasm",
dashWasmUrl: __INCLUDE_WASM_PARSER__ ? "./mpd-parser.wasm" : undefined,
})
.catch((err) => {
// eslint-disable-next-line no-console
Expand Down

0 comments on commit c564bdf

Please sign in to comment.