Title: [222195] trunk/Source/WebCore
Revision
222195
Author
[email protected]
Date
2017-09-18 18:56:34 -0700 (Mon, 18 Sep 2017)

Log Message

[Win] Compile error in InbandTextTrackPrivateAVCF::readNativeSampleBuffer.
https://bugs.webkit.org/show_bug.cgi?id=177108

Reviewed by Brent Fulgham.

The InbandTextTrackPrivateAVF::m_sampleInputBuffer is private and not accessible in this method.

* platform/graphics/avfoundation/InbandTextTrackPrivateAVF.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (222194 => 222195)


--- trunk/Source/WebCore/ChangeLog	2017-09-19 00:29:31 UTC (rev 222194)
+++ trunk/Source/WebCore/ChangeLog	2017-09-19 01:56:34 UTC (rev 222195)
@@ -1,3 +1,14 @@
+2017-09-18  Per Arne Vollan  <[email protected]>
+
+        [Win] Compile error in InbandTextTrackPrivateAVCF::readNativeSampleBuffer.
+        https://bugs.webkit.org/show_bug.cgi?id=177108
+
+        Reviewed by Brent Fulgham.
+
+        The InbandTextTrackPrivateAVF::m_sampleInputBuffer is private and not accessible in this method.
+ 
+        * platform/graphics/avfoundation/InbandTextTrackPrivateAVF.h:
+
 2017-09-18  Tim Horton  <[email protected]>
 
         Support min() and max() in calc()

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/InbandTextTrackPrivateAVF.h (222194 => 222195)


--- trunk/Source/WebCore/platform/graphics/avfoundation/InbandTextTrackPrivateAVF.h	2017-09-19 00:29:31 UTC (rev 222194)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/InbandTextTrackPrivateAVF.h	2017-09-19 01:56:34 UTC (rev 222195)
@@ -86,6 +86,8 @@
     void processNativeSamples(CFArrayRef, const MediaTime&);
     void removeCompletedCues();
 
+    Vector<char> m_sampleInputBuffer;
+
 private:
 #if !RELEASE_LOG_DISABLED
     const char* logClassName() const final { return "InbandTextTrackPrivateAVF"; }
@@ -97,8 +99,6 @@
     Vector<RefPtr<GenericCueData>> m_cues;
     AVFInbandTrackParent* m_owner;
 
-    Vector<char> m_sampleInputBuffer;
-
     enum PendingCueStatus {
         None,
         DeliveredDuringSeek,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to