Title: [183666] trunk/Source/WebCore
Revision
183666
Author
m...@apple.com
Date
2015-04-30 21:24:40 -0700 (Thu, 30 Apr 2015)

Log Message

Fixed the build for <rdar://problem/20758514>

* platform/graphics/avfoundation/AudioSourceProviderAVFObjC.mm:
(WebCore::AudioSourceProviderAVFObjC::destroyMix): Don’t pass nil to
-[AVMutableAudioMix setInputParameters:].

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (183665 => 183666)


--- trunk/Source/WebCore/ChangeLog	2015-05-01 03:42:31 UTC (rev 183665)
+++ trunk/Source/WebCore/ChangeLog	2015-05-01 04:24:40 UTC (rev 183666)
@@ -1,3 +1,11 @@
+2015-04-30  Dan Bernstein  <m...@apple.com>
+
+        Fixed the build for <rdar://problem/20758514>
+
+        * platform/graphics/avfoundation/AudioSourceProviderAVFObjC.mm:
+        (WebCore::AudioSourceProviderAVFObjC::destroyMix): Don’t pass nil to
+        -[AVMutableAudioMix setInputParameters:].
+
 2015-04-30  Daniel Bates  <daba...@apple.com>
 
         Clean up: Remove unnecessary runtime computation of string length

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/AudioSourceProviderAVFObjC.mm (183665 => 183666)


--- trunk/Source/WebCore/platform/graphics/avfoundation/AudioSourceProviderAVFObjC.mm	2015-05-01 03:42:31 UTC (rev 183665)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/AudioSourceProviderAVFObjC.mm	2015-05-01 04:24:40 UTC (rev 183666)
@@ -172,7 +172,7 @@
 {
     if (m_avPlayerItem)
         [m_avPlayerItem setAudioMix:nil];
-    [m_avAudioMix setInputParameters:nil];
+    [m_avAudioMix setInputParameters:@[ ]];
     m_avAudioMix.clear();
     m_tap.clear();
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to