Title: [153384] trunk/Source/WebCore
- Revision
- 153384
- Author
- [email protected]
- Date
- 2013-07-26 14:57:56 -0700 (Fri, 26 Jul 2013)
Log Message
[Windows] Unreviewed build fix.
* platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:
(WebCore::createMetadataKeyNames): Do not include Media Selection
synbols when building without Media Selection API.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (153383 => 153384)
--- trunk/Source/WebCore/ChangeLog 2013-07-26 21:21:18 UTC (rev 153383)
+++ trunk/Source/WebCore/ChangeLog 2013-07-26 21:57:56 UTC (rev 153384)
@@ -1,3 +1,11 @@
+2013-07-26 Brent Fulgham <[email protected]>
+
+ [Windows] Unreviewed build fix.
+
+ * platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:
+ (WebCore::createMetadataKeyNames): Do not include Media Selection
+ synbols when building without Media Selection API.
+
2013-07-26 Oliver Hunt <[email protected]>
REGRESSION(FTL?): Crashes in plugin tests
Modified: trunk/Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp (153383 => 153384)
--- trunk/Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp 2013-07-26 21:21:18 UTC (rev 153383)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp 2013-07-26 21:57:56 UTC (rev 153384)
@@ -210,7 +210,9 @@
AVCFAssetPropertyPreferredRate,
AVCFAssetPropertyPlayable,
AVCFAssetPropertyTracks,
- AVCFAssetPropertyAvailableMediaCharacteristicsWithMediaSelectionOptions
+#if HAVE(AVFOUNDATION_MEDIA_SELECTION_GROUP)
+ AVCFAssetPropertyAvailableMediaCharacteristicsWithMediaSelectionOptions,
+#endif
};
return CFArrayCreate(0, (const void**)keyNames, sizeof(keyNames) / sizeof(keyNames[0]), &kCFTypeArrayCallBacks);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes