Files
Michael Froman e64b031d2e Bug 2049872 - Vendor libwebrtc from 0590643ffe
Upstream commit: https://webrtc.googlesource.com/src/+/0590643ffe94b4d8b3d3bf6ab4d7deaa506083f3
    Move the below build targets to api/video:

    - adapted_video_track_source
    - video_adapter
    - video_broadcaster
    - video_common

    These targets are meant to replace rtc_media_base.

    Change-Id: Iaa69cd8379f66f98d618ac2e4fb6ffb4a1806f50
    Bug: webrtc:42225070
    Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/483960
    Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org>
    Reviewed-by: Erik Språng <sprang@webrtc.org>
    Reviewed-by: Harald Alvestrand <hta@webrtc.org>
    Commit-Queue: Jeremy Leconte <jleconte@google.com>
    Cr-Commit-Position: refs/heads/main@{#48064}
2026-07-22 10:30:47 +00:00

24 lines
967 B
Diff

From: Andreas Pehrson <apehrson@mozilla.com>
Date: Fri, 19 Apr 2024 06:09:00 +0000
Subject: Bug 1892221 - Initialize VideoCaptureModuleV4L2::_streaming in ctor.
r=webrtc-reviewers,dbaker
Differential Revision: https://phabricator.services.mozilla.com/D207926
Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/00c4bd7039dc8992dd93d4a5948a9260b72ec2a8
---
modules/video_capture/linux/video_capture_v4l2.cc | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/video_capture/linux/video_capture_v4l2.cc b/modules/video_capture/linux/video_capture_v4l2.cc
index 119489b33a..ffcaf54550 100644
--- a/modules/video_capture/linux/video_capture_v4l2.cc
+++ b/modules/video_capture/linux/video_capture_v4l2.cc
@@ -67,6 +67,7 @@ VideoCaptureModuleV4L2::VideoCaptureModuleV4L2(Clock* clock)
_deviceId(-1),
_deviceFd(-1),
_buffersAllocatedByDevice(-1),
+ _streaming(false),
_captureStarted(false),
_pool(nullptr) {}