Files
Michael Froman 5b11b5bd6a Bug 2064200 - Vendor libwebrtc from 93173ec4f5
Upstream commit: https://webrtc.googlesource.com/src/+/93173ec4f5fdf71a9249e56e87707ccae750ad52
    Restrict rtc_event_log.proto to offline tools + add documentation

    1. Remove the legacy rtc_event_log_proto dependency from the production
       libwebrtc static library GN target in root BUILD.gn.
    2. Restrict proto_library("rtc_event_log_proto") visibility in logging/BUILD.gn
       exclusively to offline parsers, neteq tools, and test suites to prevent
       accidental linking into production runtimes.
    3. Add a deprecation banner and usage instruction to rtc_event_log.proto,
       update doc comments in rtc_event_log.h, and add a dedicated section in
       logging/g3doc/rtc_event_log.md guiding humans and AI agents on format rules.

    CONV=ac69de71-4eeb-4b00-b142-f66d9edf397b

    Bug: webrtc:144833892
    Change-Id: I91f19d1f9664ecf17e38e0fa44a46b854361d6bd
    Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/493540
    Reviewed-by: Björn Terelius <terelius@webrtc.org>
    Commit-Queue: Fredrik Solenberg <solenberg@webrtc.org>
    Cr-Commit-Position: refs/heads/main@{#48287}
2026-08-28 09:30:55 +00:00

74 lines
3.0 KiB
Diff

From: Michael Froman <mfroman@mozilla.com>
Date: Fri, 21 Jun 2024 16:28:00 -0500
Subject: Bug 1903098 - (fix-cd09858f4a) disable perfetto usage to avoid new
third_party library.
Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/b050c455caa1d24a0cfa4933ac8cd82c9cd3c347
---
BUILD.gn | 2 +-
modules/video_coding/generic_decoder.cc | 10 +++++-----
rtc_base/BUILD.gn | 2 ++
3 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/BUILD.gn b/BUILD.gn
index ad83200fa5..afa6710ed1 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -653,7 +653,7 @@ if (!build_with_chromium) {
if (rtc_include_internal_audio_device) {
deps += [ "api/audio:create_audio_device_module" ]
}
- if (!build_with_chromium) {
+ if (!build_with_chromium && !build_with_mozilla) {
if (is_android) {
deps += [ "sdk/android" ]
}
diff --git a/modules/video_coding/generic_decoder.cc b/modules/video_coding/generic_decoder.cc
index e88107f3a5..9d521e08c7 100644
--- a/modules/video_coding/generic_decoder.cc
+++ b/modules/video_coding/generic_decoder.cc
@@ -119,9 +119,9 @@ void VCMDecodedFrameCallback::Decoded(VideoFrame& decodedImage,
std::optional<int32_t> decode_time_ms,
std::optional<uint8_t> qp) {
RTC_DCHECK(receive_callback_) << "Callback must not be null at this point";
- TRACE_EVENT(
- "webrtc", "VCMDecodedFrameCallback::Decoded",
- perfetto::TerminatingFlow::ProcessScoped(decodedImage.rtp_timestamp()));
+ TRACE_EVENT_INSTANT1("webrtc", "VCMDecodedFrameCallback::Decoded",
+ TRACE_EVENT_SCOPE_GLOBAL, "timestamp",
+ decodedImage.rtp_timestamp());
// TODO(holmer): We should improve this so that we can handle multiple
// callbacks from one call to Decode().
std::optional<FrameInfo> frame_info;
@@ -326,8 +326,8 @@ int32_t VCMGenericDecoder::Decode(
Timestamp now,
int64_t render_time_ms,
const std::optional<FrameInstrumentationData>& frame_instrumentation_data) {
- TRACE_EVENT("webrtc", "VCMGenericDecoder::Decode",
- perfetto::Flow::ProcessScoped(frame.RtpTimestamp()));
+ TRACE_EVENT1("webrtc", "VCMGenericDecoder::Decode", "timestamp",
+ frame.RtpTimestamp());
FrameInfo frame_info;
frame_info.rtp_timestamp = frame.RtpTimestamp();
frame_info.decode_start = now;
diff --git a/rtc_base/BUILD.gn b/rtc_base/BUILD.gn
index d328c609f1..fb65482ba9 100644
--- a/rtc_base/BUILD.gn
+++ b/rtc_base/BUILD.gn
@@ -240,6 +240,7 @@ rtc_library("event_tracer") {
"//third_party/abseil-cpp/absl/base:nullability",
"//third_party/abseil-cpp/absl/strings:string_view",
]
+ if (!build_with_mozilla) {
all_dependent_configs = [ "//third_party/perfetto/gn:public_config" ]
if (rtc_use_perfetto) {
if (build_with_chromium) {
@@ -254,6 +255,7 @@ rtc_library("event_tracer") {
} else {
deps += [ "//third_party/perfetto/include/perfetto/tracing" ]
}
+ }
}
rtc_library("histogram_percentile_counter") {