RtcEventLogSource no longer uses deprecated parsing functions.
Also remove header extension map from NetEqEventLogInput and RtcEventLogSource. Bug: webrtc:8111 Change-Id: Ic9be7b03e32ab8aa12284596e21e53b6763f483a Reviewed-on: https://webrtc-review.googlesource.com/c/102622 Commit-Queue: Björn Terelius <terelius@webrtc.org> Reviewed-by: Minyue Li <minyue@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25122}
This commit is contained in:
committed by
Commit Bot
parent
499bc6c5d0
commit
5350d1cafd
@ -13,7 +13,7 @@
|
||||
namespace webrtc {
|
||||
namespace test {
|
||||
|
||||
PacketSource::PacketSource() : use_ssrc_filter_(false), ssrc_(0) {}
|
||||
PacketSource::PacketSource() = default;
|
||||
|
||||
PacketSource::~PacketSource() = default;
|
||||
|
||||
@ -21,10 +21,5 @@ void PacketSource::FilterOutPayloadType(uint8_t payload_type) {
|
||||
filter_.set(payload_type, true);
|
||||
}
|
||||
|
||||
void PacketSource::SelectSsrc(uint32_t ssrc) {
|
||||
use_ssrc_filter_ = true;
|
||||
ssrc_ = ssrc;
|
||||
}
|
||||
|
||||
} // namespace test
|
||||
} // namespace webrtc
|
||||
|
||||
Reference in New Issue
Block a user