We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb38dc0 commit 29a3896Copy full SHA for 29a3896
.changeset/four-adults-smile.md
@@ -0,0 +1,5 @@
1
+---
2
+"livekit-client": patch
3
4
+
5
+Fix slow start on vp9
src/room/PCTransport.ts
@@ -321,9 +321,8 @@ export default class PCTransport extends EventEmitter {
321
this.ensureVideoDDExtensionForSVC(media, sdpParsed);
322
}
323
324
- // TODO: av1 slow starting issue already fixed in chrome 124, clean this after some versions
325
- // mung sdp for av1 bitrate setting that can't apply by sendEncoding
326
- if (trackbr.codec !== 'av1') {
+ // mung sdp for bitrate setting that can't apply by sendEncoding
+ if (!isSVCCodec(trackbr.codec)) {
327
return true;
328
329
0 commit comments