Skip to content

Commit 0f7985f

Browse files
Merge branch 'v0.21'
2 parents b085ef5 + c68ffe9 commit 0f7985f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/rtc/rtppacketizationconfig.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ class RTC_CPP_EXPORT RtpPacketizationConfig {
6363

6464
// the negotiated ID of the playout delay header extension
6565
// https://webrtc.googlesource.com/src/+/main/docs/native-code/rtp-hdrext/playout-delay/README.md
66-
uint8_t playoutDelayId;
66+
uint8_t playoutDelayId = 0;
6767

6868
// Minimum/maxiumum playout delay, in 10ms intervals. A value of 10 would equal a 100ms delay
69-
uint16_t playoutDelayMin;
70-
uint16_t playoutDelayMax;
69+
uint16_t playoutDelayMin = 0;
70+
uint16_t playoutDelayMax = 0;
7171

7272
/// Construct RTP configuration used in packetization process
7373
/// @param ssrc SSRC of source

0 commit comments

Comments
 (0)