Title: [173777] trunk/Source/WebCore
- Revision
- 173777
- Author
- [email protected]
- Date
- 2014-09-19 15:59:37 -0700 (Fri, 19 Sep 2014)
Log Message
Unreviewed build fix; pass duration into the lambda.
* platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaSourceAVFObjC.mm:
(WebCore::MediaPlayerPrivateMediaSourceAVFObjC::durationChanged):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (173776 => 173777)
--- trunk/Source/WebCore/ChangeLog 2014-09-19 22:30:43 UTC (rev 173776)
+++ trunk/Source/WebCore/ChangeLog 2014-09-19 22:59:37 UTC (rev 173777)
@@ -1,3 +1,10 @@
+2014-09-19 Jer Noble <[email protected]>
+
+ Unreviewed build fix; pass duration into the lambda.
+
+ * platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaSourceAVFObjC.mm:
+ (WebCore::MediaPlayerPrivateMediaSourceAVFObjC::durationChanged):
+
2014-09-19 Dean Jackson <[email protected]>
Multithreaded WebGL is a bad idea - remove it
Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaSourceAVFObjC.mm (173776 => 173777)
--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaSourceAVFObjC.mm 2014-09-19 22:30:43 UTC (rev 173776)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaSourceAVFObjC.mm 2014-09-19 22:59:37 UTC (rev 173777)
@@ -635,7 +635,7 @@
LOG(MediaSource, "MediaPlayerPrivateMediaSourceAVFObjC::durationChanged(%p) - duration = %s", this, toString(duration).utf8().data());
- m_durationObserver = [m_synchronizer addBoundaryTimeObserverForTimes:times queue:dispatch_get_main_queue() usingBlock:[weakThis] {
+ m_durationObserver = [m_synchronizer addBoundaryTimeObserverForTimes:times queue:dispatch_get_main_queue() usingBlock:[weakThis, duration] {
if (!weakThis)
return;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes