Title: [216650] trunk/Source/WebCore
Revision
216650
Author
[email protected]
Date
2017-05-10 21:22:08 -0700 (Wed, 10 May 2017)

Log Message

[MediaStream] CoreAudioCaptureSource claims to never be muted
https://bugs.webkit.org/show_bug.cgi?id=171946
<rdar://problem/32111991>

Reviewed by Jer Noble.

* platform/mediastream/mac/CoreAudioCaptureSource.cpp:
(WebCore::CoreAudioCaptureSource::stopProducingData): Set m_muted to true.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (216649 => 216650)


--- trunk/Source/WebCore/ChangeLog	2017-05-11 04:06:02 UTC (rev 216649)
+++ trunk/Source/WebCore/ChangeLog	2017-05-11 04:22:08 UTC (rev 216650)
@@ -1,3 +1,14 @@
+2017-05-10  Eric Carlson  <[email protected]>
+
+        [MediaStream] CoreAudioCaptureSource claims to never be muted
+        https://bugs.webkit.org/show_bug.cgi?id=171946
+        <rdar://problem/32111991>
+
+        Reviewed by Jer Noble.
+
+        * platform/mediastream/mac/CoreAudioCaptureSource.cpp:
+        (WebCore::CoreAudioCaptureSource::stopProducingData): Set m_muted to true.
+
 2017-05-10  Jer Noble  <[email protected]>
 
         RELEASE_ASSERT at WebAudioSourceProviderAVFObjC::provideInput()

Modified: trunk/Source/WebCore/platform/mediastream/mac/CoreAudioCaptureSource.cpp (216649 => 216650)


--- trunk/Source/WebCore/platform/mediastream/mac/CoreAudioCaptureSource.cpp	2017-05-11 04:06:02 UTC (rev 216649)
+++ trunk/Source/WebCore/platform/mediastream/mac/CoreAudioCaptureSource.cpp	2017-05-11 04:22:08 UTC (rev 216650)
@@ -710,7 +710,7 @@
     
     CoreAudioSharedUnit::singleton().stopProducingData();
     m_isProducingData = false;
-    m_muted = false;
+    m_muted = true;
 
     if (m_audioSourceProvider)
         m_audioSourceProvider->unprepare();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to