Migrate modules/rtp_rtcp to webrtc::Mutex.
Bug: webrtc:11567 Change-Id: I4c71f3a28ef875af2c232b1b553840d6e21649d3 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/178804 Commit-Queue: Markus Handell <handellm@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31645}
This commit is contained in:
committed by
Commit Bot
parent
6deec38ede
commit
e7c015e112
@ -24,7 +24,7 @@
|
||||
#include "modules/rtp_rtcp/source/rtcp_nack_stats.h"
|
||||
#include "modules/rtp_rtcp/source/rtcp_packet/dlrr.h"
|
||||
#include "modules/rtp_rtcp/source/rtp_rtcp_interface.h"
|
||||
#include "rtc_base/critical_section.h"
|
||||
#include "rtc_base/synchronization/mutex.h"
|
||||
#include "rtc_base/thread_annotations.h"
|
||||
#include "system_wrappers/include/ntp_time.h"
|
||||
|
||||
@ -235,7 +235,7 @@ class RTCPReceiver final {
|
||||
VideoBitrateAllocationObserver* const bitrate_allocation_observer_;
|
||||
const TimeDelta report_interval_;
|
||||
|
||||
rtc::CriticalSection rtcp_receiver_lock_;
|
||||
mutable Mutex rtcp_receiver_lock_;
|
||||
uint32_t remote_ssrc_ RTC_GUARDED_BY(rtcp_receiver_lock_);
|
||||
|
||||
// Received sender report.
|
||||
|
||||
Reference in New Issue
Block a user