Title: [208171] trunk/Source/WebCore
Revision
208171
Author
[email protected]
Date
2016-10-31 13:17:30 -0700 (Mon, 31 Oct 2016)

Log Message

Unreviewed build fix after r208151; outputMIMECodecParameterForInputMIMECodecParameter not
defined pre-Sierra.

* platform/spi/mac/AVFoundationSPI.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (208170 => 208171)


--- trunk/Source/WebCore/ChangeLog	2016-10-31 20:16:37 UTC (rev 208170)
+++ trunk/Source/WebCore/ChangeLog	2016-10-31 20:17:30 UTC (rev 208171)
@@ -1,3 +1,10 @@
+2016-10-31  Jer Noble  <[email protected]>
+
+        Unreviewed build fix after r208151; outputMIMECodecParameterForInputMIMECodecParameter not
+        defined pre-Sierra.
+
+        * platform/spi/mac/AVFoundationSPI.h:
+
 2016-10-31  Zalan Bujtas  <[email protected]>
 
         ASSERTION FAILED: !m_trailingWhitespaceWidth in WebCore::SimpleLineLayout::LineState::removeTrailingWhitespace

Modified: trunk/Source/WebCore/platform/spi/mac/AVFoundationSPI.h (208170 => 208171)


--- trunk/Source/WebCore/platform/spi/mac/AVFoundationSPI.h	2016-10-31 20:16:37 UTC (rev 208170)
+++ trunk/Source/WebCore/platform/spi/mac/AVFoundationSPI.h	2016-10-31 20:17:30 UTC (rev 208171)
@@ -121,14 +121,19 @@
 - (NSData *)streamingContentKeyRequestDataForApp:(NSData *)appIdentifier contentIdentifier:(NSData *)contentIdentifier trackID:(CMPersistentTrackID)trackID options:(NSDictionary *)options error:(NSError **)outError;
 @end
 
+NS_ASSUME_NONNULL_END
+
+#endif // !PLATFORM(IOS)
+#endif // USE(APPLE_INTERNAL_SDK)
+
+#if !USE(APPLE_INTERNAL_SDK) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101200)
+NS_ASSUME_NONNULL_BEGIN
 @interface AVStreamDataParser (AVStreamDataParserPrivate)
 + (NSString *)outputMIMECodecParameterForInputMIMECodecParameter:(NSString *)inputMIMECodecParameter;
 @end
 NS_ASSUME_NONNULL_END
+#endif
 
-#endif // !PLATFORM(IOS)
-#endif // USE(APPLE_INTERNAL_SDK)
-
 #if PLATFORM(IOS) && (!HAVE(AVKIT) || !USE(APPLE_INTERNAL_SDK))
 #import <AVFoundation/AVPlayerLayer.h>
 @interface AVPlayerLayer (AVPlayerLayerPictureInPictureModeSupportPrivate)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to