Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 06656ec

Browse files
authored
Fix arguments for SIP video frame packetizer (#857)
1 parent 75213b4 commit 06656ec

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

source/agent/sip/sipCallConnection.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,12 @@ exports.SipCallConnection = function (spec, onMediaUpdate) {
4545
});
4646
videoFrameConstructor.bindTransport(sip_callConnection);
4747

48-
const transportExt = 0;
48+
const transportExt = -1;
49+
const mid = '';
50+
const midExt = -1;
4951
const selfRequestKeyFrame = true;
5052
videoFramePacketizer = new VideoFramePacketizer(
51-
support_red, support_ulpfec, transportExt, selfRequestKeyFrame);
53+
support_red, support_ulpfec, transportExt, mid, midExt, selfRequestKeyFrame);
5254
videoFramePacketizer.bindTransport(sip_callConnection);
5355
}
5456

0 commit comments

Comments
 (0)