Audio stack traces

Bug: webrtc:0
Change-Id: I90ea6301f02c2ebe72711ddbeda0bf000a6873aa
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/276940
Auto-Submit: Olga Sharonova <olka@webrtc.org>
Commit-Queue: Henrik Andreassson <henrika@webrtc.org>
Reviewed-by: Henrik Andreassson <henrika@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#38223}
This commit is contained in:
Olga Sharonova
2022-09-27 15:22:34 +02:00
committed by WebRTC LUCI CQ
parent c42eb8346f
commit 2d0ba28e25
14 changed files with 35 additions and 1 deletions

View File

@ -13,6 +13,8 @@
#include <algorithm>
#include <utility>
#include "rtc_base/trace_event.h"
namespace webrtc {
constexpr int64_t SourceTracker::kTimeoutMs;
@ -24,6 +26,8 @@ void SourceTracker::OnFrameDelivered(const RtpPacketInfos& packet_infos) {
return;
}
TRACE_EVENT0("webrtc", "SourceTracker::OnFrameDelivered");
int64_t now_ms = clock_->TimeInMilliseconds();
MutexLock lock_scope(&lock_);