forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backed out 4 changesets (bug 1882824, bug 1878798) for causing perfdo…
…cs lint failures in /gecko/None CLOSED TREE Backed out changeset efdc6eb50c75 (bug 1882824) Backed out changeset b302a6f7096a (bug 1882824) Backed out changeset df4ea918b1fd (bug 1878798) Backed out changeset f6034e5f8856 (bug 1878798)
- Loading branch information
Cristian Tuns
committed
Mar 1, 2024
1 parent
961186c
commit 8eaa1c0
Showing
39 changed files
with
38,657 additions
and
38,653 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,12 @@ From: Michael Froman <[email protected]> | |
Date: Tue, 21 Jun 2022 11:17:46 -0500 | ||
Subject: Bug 1772380 - to upstream - ref count this in lambda capture | ||
|
||
Bug 1876843 - (fix-23cecc1d43) drop rtc:: prefix on scoped_ptr | ||
|
||
Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/2e4867d8cc9813869bd80f5201d3f7d84afcd412 | ||
--- | ||
modules/video_capture/linux/video_capture_v4l2.cc | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/modules/video_capture/linux/video_capture_v4l2.cc b/modules/video_capture/linux/video_capture_v4l2.cc | ||
index 00cede01cb..97cd9a70eb 100644 | ||
index 00cede01cb..d6813b13fd 100644 | ||
--- a/modules/video_capture/linux/video_capture_v4l2.cc | ||
+++ b/modules/video_capture/linux/video_capture_v4l2.cc | ||
@@ -296,8 +296,8 @@ int32_t VideoCaptureModuleV4L2::StartCapture( | ||
|
@@ -19,7 +16,7 @@ index 00cede01cb..97cd9a70eb 100644 | |
_captureThread = rtc::PlatformThread::SpawnJoinable( | ||
- [this] { | ||
- while (CaptureProcess()) { | ||
+ [self = scoped_refptr(this)] { | ||
+ [self = rtc::scoped_refptr(this)] { | ||
+ while (self->CaptureProcess()) { | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.