Title: [163046] trunk/Source/WebCore
Revision
163046
Author
jer.no...@apple.com
Date
2014-01-29 16:02:08 -0800 (Wed, 29 Jan 2014)

Log Message

[MSE][Mac] In SourceBufferPrivateAVFObjC, only include those headers actually necessary to compile.
https://bugs.webkit.org/show_bug.cgi?id=127846

Reviewed by Darin Adler.

To work around a compile issue, only include those paths containing classes and typedefs
which are used within SourceBufferPrivateAVFObjC, rather than all of AVFoundation.

* platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (163045 => 163046)


--- trunk/Source/WebCore/ChangeLog	2014-01-30 00:00:25 UTC (rev 163045)
+++ trunk/Source/WebCore/ChangeLog	2014-01-30 00:02:08 UTC (rev 163046)
@@ -1,3 +1,15 @@
+2014-01-29  Jer Noble  <jer.no...@apple.com>
+
+        [MSE][Mac] In SourceBufferPrivateAVFObjC, only include those headers actually necessary to compile.
+        https://bugs.webkit.org/show_bug.cgi?id=127846
+
+        Reviewed by Darin Adler.
+
+        To work around a compile issue, only include those paths containing classes and typedefs
+        which are used within SourceBufferPrivateAVFObjC, rather than all of AVFoundation.
+
+        * platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm:
+
 2014-01-29  Brady Eidson  <beid...@apple.com>
 
         IDB: Fully implement IDBKeyData encoding/decoding

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm (163045 => 163046)


--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm	2014-01-30 00:00:25 UTC (rev 163045)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm	2014-01-30 00:02:08 UTC (rev 163046)
@@ -42,7 +42,8 @@
 #import "AudioTrackPrivateMediaSourceAVFObjC.h"
 #import "VideoTrackPrivateMediaSourceAVFObjC.h"
 #import "InbandTextTrackPrivateAVFObjC.h"
-#import <AVFoundation/AVFoundation.h>
+#import <AVFoundation/AVAssetTrack.h>
+#import <CoreMedia/CMSampleBuffer.h>
 #import <objc/runtime.h>
 #import <wtf/text/AtomicString.h>
 #import <wtf/text/CString.h>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to