fix chrome ufrag too short to play webrtc

This commit is contained in:
xgj 2021-11-29 16:54:40 +08:00
parent edbbaa4541
commit 78d014cf51

View File

@ -47,7 +47,7 @@ static atomic<uint64_t> s_key{0};
WebRtcTransport::WebRtcTransport(const EventPoller::Ptr &poller) {
_poller = poller;
_identifier = to_string(++s_key);
_identifier = "zlm_"+to_string(++s_key);
_packet_pool.setSize(64);
}