We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b085ef5 + c68ffe9 commit 0f7985fCopy full SHA for 0f7985f
include/rtc/rtppacketizationconfig.hpp
@@ -63,11 +63,11 @@ class RTC_CPP_EXPORT RtpPacketizationConfig {
63
64
// the negotiated ID of the playout delay header extension
65
// https://webrtc.googlesource.com/src/+/main/docs/native-code/rtp-hdrext/playout-delay/README.md
66
- uint8_t playoutDelayId;
+ uint8_t playoutDelayId = 0;
67
68
// Minimum/maxiumum playout delay, in 10ms intervals. A value of 10 would equal a 100ms delay
69
- uint16_t playoutDelayMin;
70
- uint16_t playoutDelayMax;
+ uint16_t playoutDelayMin = 0;
+ uint16_t playoutDelayMax = 0;
71
72
/// Construct RTP configuration used in packetization process
73
/// @param ssrc SSRC of source
0 commit comments