Files
tubestation/third_party/libwebrtc/moz-patch-stack/0071.patch
Michael Froman 85ee873b2b Bug 1952339 - Vendor libwebrtc from f30c044cf9
Essentially a no-op since we're going to see this change
reverted when we vendor in 995688c8e8.

Upstream commit: https://webrtc.googlesource.com/src/+/f30c044cf9bd06f91017c171d98690094ce6d88b
    more p2p cleanups

    Move test code from p2p/base and rtc_base/ into p2p/test/
    This p2p/base much less crowded and
    clarifies that the rtc_base/nat* is in fact only test code.

    BUG=webrtc:0

    Change-Id: I4d14fae24cb0eff6783962f4b4483b560367ca5d
    Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/378900
    Commit-Queue: Jonas Oreland <jonaso@webrtc.org>
    Reviewed-by: Harald Alvestrand <hta@webrtc.org>
    Auto-Submit: Jonas Oreland <jonaso@webrtc.org>
    Cr-Commit-Position: refs/heads/main@{#43995}

Differential Revision: https://phabricator.services.mozilla.com/D244003
2025-03-07 16:45:51 -06:00

24 lines
1.1 KiB
Diff

From: Andreas Pehrson <apehrson@mozilla.com>
Date: Wed, 11 Jan 2023 22:42:00 +0000
Subject: Bug 1800942 - Add DCHECKs to
TimestampExtrapolator::ExtrapolateLocalTime. r=mjf
Differential Revision: https://phabricator.services.mozilla.com/D166536
Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/c5df7f40392464ffc63f44a53ddcaab2091741e0
---
modules/video_coding/timing/timestamp_extrapolator.cc | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/video_coding/timing/timestamp_extrapolator.cc b/modules/video_coding/timing/timestamp_extrapolator.cc
index c54bbf893f..a7e77e87fb 100644
--- a/modules/video_coding/timing/timestamp_extrapolator.cc
+++ b/modules/video_coding/timing/timestamp_extrapolator.cc
@@ -140,6 +140,7 @@ void TimestampExtrapolator::Update(Timestamp now, uint32_t ts90khz) {
std::optional<Timestamp> TimestampExtrapolator::ExtrapolateLocalTime(
uint32_t timestamp90khz) const {
int64_t unwrapped_ts90khz = unwrapper_.PeekUnwrap(timestamp90khz);
+ RTC_DCHECK_GE(unwrapped_ts90khz, 0);
if (!first_unwrapped_timestamp_) {
return std::nullopt;