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

Log Message

Unreviewed Mac Build fix after r163046.

Forward define AVSampleLayerDisplayLayer and its methods.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (163049 => 163050)


--- trunk/Source/WebCore/ChangeLog	2014-01-30 00:39:12 UTC (rev 163049)
+++ trunk/Source/WebCore/ChangeLog	2014-01-30 00:53:15 UTC (rev 163050)
@@ -1,3 +1,11 @@
+2014-01-29  Jer Noble  <jer.no...@apple.com>
+
+        Unreviewed Mac Build fix after r163046.
+
+        Forward define AVSampleLayerDisplayLayer and its methods.
+
+        * platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm:
+
 2014-01-26  Sam Weinig  <s...@webkit.org>
 
         CaptionUserPreferences should not be on the PageGroup if they are not really per-PageGroup (Part 1)

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


--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm	2014-01-30 00:39:12 UTC (rev 163049)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm	2014-01-30 00:53:15 UTC (rev 163050)
@@ -117,9 +117,21 @@
 @end
 
 #pragma mark -
+#pragma mark AVSampleBufferDisplayLayer
+
+@interface AVSampleBufferDisplayLayer : CALayer
+- (NSInteger)status;
+- (NSError*)error;
+- (void)enqueueSampleBuffer:(CMSampleBufferRef)sampleBuffer;
+- (void)flush;
+- (BOOL)isReadyForMoreMediaData;
+- (void)requestMediaDataWhenReadyOnQueue:(dispatch_queue_t)queue usingBlock:(void (^)(void))block;
+- (void)stopRequestingMediaData;
+@end
+
+#pragma mark -
 #pragma mark AVSampleBufferAudioRenderer
 
-#if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED <= 1090
 @interface AVSampleBufferAudioRenderer : NSObject
 - (NSInteger)status;
 - (NSError*)error;
@@ -129,7 +141,6 @@
 - (void)requestMediaDataWhenReadyOnQueue:(dispatch_queue_t)queue usingBlock:(void (^)(void))block;
 - (void)stopRequestingMediaData;
 @end
-#endif
 
 #pragma mark -
 #pragma mark WebAVStreamDataParserListener
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to