Title: [270314] branches/safari-610-branch/Source/WebCore
Revision
270314
Author
[email protected]
Date
2020-12-01 10:25:47 -0800 (Tue, 01 Dec 2020)

Log Message

Cherry-pick r269190. rdar://problem/71381759

    Increase camera failing timer to 30 seconds
    https://bugs.webkit.org/show_bug.cgi?id=218389

    Reviewed by Eric Carlson.

    From testing, 3 seconds is not always enough if getUserMedia is quickly called multiple times.
    Let's increase to 30 seconds to give room for slow systems while still being able to identify failures.

    * platform/mediastream/mac/AVVideoCaptureSource.h:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@269190 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-610-branch/Source/WebCore/ChangeLog (270313 => 270314)


--- branches/safari-610-branch/Source/WebCore/ChangeLog	2020-12-01 18:20:34 UTC (rev 270313)
+++ branches/safari-610-branch/Source/WebCore/ChangeLog	2020-12-01 18:25:47 UTC (rev 270314)
@@ -1,5 +1,34 @@
 2020-12-01  Alan Coon  <[email protected]>
 
+        Cherry-pick r269190. rdar://problem/71381759
+
+    Increase camera failing timer to 30 seconds
+    https://bugs.webkit.org/show_bug.cgi?id=218389
+    
+    Reviewed by Eric Carlson.
+    
+    From testing, 3 seconds is not always enough if getUserMedia is quickly called multiple times.
+    Let's increase to 30 seconds to give room for slow systems while still being able to identify failures.
+    
+    * platform/mediastream/mac/AVVideoCaptureSource.h:
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@269190 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-10-30  Youenn Fablet  <[email protected]>
+
+            Increase camera failing timer to 30 seconds
+            https://bugs.webkit.org/show_bug.cgi?id=218389
+
+            Reviewed by Eric Carlson.
+
+            From testing, 3 seconds is not always enough if getUserMedia is quickly called multiple times.
+            Let's increase to 30 seconds to give room for slow systems while still being able to identify failures.
+
+            * platform/mediastream/mac/AVVideoCaptureSource.h:
+
+2020-12-01  Alan Coon  <[email protected]>
+
         Cherry-pick r269954. rdar://problem/71836563
 
     RenderTreeBuilderBlock using an incorrect anonymous parent to attach a new renderer

Modified: branches/safari-610-branch/Source/WebCore/platform/mediastream/mac/AVVideoCaptureSource.h (270313 => 270314)


--- branches/safari-610-branch/Source/WebCore/platform/mediastream/mac/AVVideoCaptureSource.h	2020-12-01 18:20:34 UTC (rev 270313)
+++ branches/safari-610-branch/Source/WebCore/platform/mediastream/mac/AVVideoCaptureSource.h	2020-12-01 18:25:47 UTC (rev 270314)
@@ -139,7 +139,7 @@
     bool m_interrupted { false };
     bool m_isRunning { false };
 
-    static constexpr Seconds verifyCaptureInterval = 3_s;
+    static constexpr Seconds verifyCaptureInterval = 30_s;
     static const uint64_t framesToDropWhenStarting = 4;
 
     Timer m_verifyCapturingTimer;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to