Index: webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc |
diff --git a/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc b/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc |
index ebd8a6aeb5266910445fc22ed24d527002f671ab..13087cc9285daa71fcdc992c714144f36f0d4e0d 100644 |
--- a/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc |
+++ b/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc |
@@ -33,8 +33,8 @@ namespace { |
// Timeout for AcquireNextFrame() call. |
// DxgiDuplicatorController leverages external components to do the capture |
// scheduling. So here DxgiOutputDuplicator does not need to actively wait for a |
-// new frame. 1 millisecond is the minimium value AcquireNextFrame() accepts. |
-const int kAcquireTimeoutMs = 1; |
+// new frame. |
+const int kAcquireTimeoutMs = 0; |
DesktopRect RECTToDesktopRect(const RECT& rect) { |
return DesktopRect::MakeLTRB(rect.left, rect.top, rect.right, rect.bottom); |