diff --git a/pc/rtp_receiver.cc b/pc/rtp_receiver.cc index a2b3353c0e..9431aab10a 100644 --- a/pc/rtp_receiver.cc +++ b/pc/rtp_receiver.cc @@ -12,6 +12,7 @@ #include +#include #include #include @@ -22,8 +23,10 @@ namespace webrtc { // This function is only expected to be called on the signalling thread. +// On the other hand, some test or even production setups may use +// several signaling threads. int RtpReceiverInternal::GenerateUniqueId() { - static int g_unique_id = 0; + static std::atomic g_unique_id{0}; return ++g_unique_id; }