Title: [231749] trunk/Source/WebCore
Revision
231749
Author
[email protected]
Date
2018-05-14 00:33:55 -0700 (Mon, 14 May 2018)

Log Message

Unreviewed, rolling out r219515.
https://bugs.webkit.org/show_bug.cgi?id=185603

It sometimes makes AudioUnitInitialize call to fail in
CoreAudioCaptureSource (Requested by youenn on #webkit).

Reverted changeset:

"Remove CoreAudioCaptureSource speaker configuration"
https://bugs.webkit.org/show_bug.cgi?id=174512
https://trac.webkit.org/changeset/219515

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (231748 => 231749)


--- trunk/Source/WebCore/ChangeLog	2018-05-14 04:36:05 UTC (rev 231748)
+++ trunk/Source/WebCore/ChangeLog	2018-05-14 07:33:55 UTC (rev 231749)
@@ -1,3 +1,17 @@
+2018-05-14  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r219515.
+        https://bugs.webkit.org/show_bug.cgi?id=185603
+
+        It sometimes makes AudioUnitInitialize call to fail in
+        CoreAudioCaptureSource (Requested by youenn on #webkit).
+
+        Reverted changeset:
+
+        "Remove CoreAudioCaptureSource speaker configuration"
+        https://bugs.webkit.org/show_bug.cgi?id=174512
+        https://trac.webkit.org/changeset/219515
+
 2018-05-13  Dirk Schulze  <[email protected]>
 
         Implement SVGGeometryElement's isPointInFill and isPointInStroke

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


--- trunk/Source/WebCore/platform/mediastream/mac/CoreAudioCaptureSource.cpp	2018-05-14 04:36:05 UTC (rev 231748)
+++ trunk/Source/WebCore/platform/mediastream/mac/CoreAudioCaptureSource.cpp	2018-05-14 07:33:55 UTC (rev 231749)
@@ -307,7 +307,9 @@
     if (err)
         return err;
 
-    // For the moment we do not need to configure speaker proc as we are not providing any reference data.
+    err = configureSpeakerProc();
+    if (err)
+        return err;
 
     err = AudioUnitInitialize(m_ioUnit);
     if (err) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to