We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The RtpPacketizer takes a RtpPacketizationConfig when created. After creation, this config must have the playoutDelayId initialized manually eg.:
playoutDelayId
auto rtpConf_ = std::make_shared<rtc::RtpPacketizationConfig>(42, "foo", 96, 90000); rtpConf_->playoutDelayId = 0;
Otherwise, valgrind will complain about a Conditional jump or move depends on uninitialised value at
Conditional jump or move depends on uninitialised value
==48363== at 0x312384: rtc::RtpPacketizer::packetize(std::shared_ptr<std::vector<std::byte, std::allocator<std::byte> > >, bool) (rtppacketizer.cpp:34)
I would expect the config class to initialize this value automatically.
The text was updated successfully, but these errors were encountered:
Related to #1152
I'll push a fix.
Sorry, something went wrong.
Thank you for reporting, it is fixed by #1217. The fix will be released in v0.21.2.
Successfully merging a pull request may close this issue.
The RtpPacketizer takes a RtpPacketizationConfig when created. After creation, this config must have the
playoutDelayId
initialized manually eg.:Otherwise, valgrind will complain about a
Conditional jump or move depends on uninitialised value
atI would expect the config class to initialize this value automatically.
The text was updated successfully, but these errors were encountered: