diff --git a/.changeset/silly-crews-show.md b/.changeset/silly-crews-show.md new file mode 100644 index 0000000000..26bdb72b9f --- /dev/null +++ b/.changeset/silly-crews-show.md @@ -0,0 +1,5 @@ +--- +'livekit-client': patch +--- + +Remove Firefox VP9 SVC workaround diff --git a/src/room/utils.ts b/src/room/utils.ts index 52a586479b..935f370609 100644 --- a/src/room/utils.ts +++ b/src/room/utils.ts @@ -91,11 +91,6 @@ export function supportsVP9(): boolean { if (!('getCapabilities' in RTCRtpSender)) { return false; } - if (isFireFox()) { - // technically speaking FireFox supports VP9, but SVC publishing is broken - // https://bugzilla.mozilla.org/show_bug.cgi?id=1633876 - return false; - } if (isSafari()) { const browser = getBrowser(); if (browser?.version && compareVersions(browser.version, '16') < 0) {