Title: [170709] trunk/Source/WebCore
Revision
170709
Author
[email protected]
Date
2014-07-02 09:02:55 -0700 (Wed, 02 Jul 2014)

Log Message

[GStreamer] MediaPlayerPrivateGStreamer.cpp fails to build when VIDEO_TRACK is enabled and using GSTREAMER_MPEGTS
https://bugs.webkit.org/show_bug.cgi?id=134548

Reviewed by Philippe Normand.

Include AtomicStringHash.h when ENABLE(VIDEO_TRACK) && USE(GSTREAMER_MPEGTS)
since it's used by HashMap<AtomicString, RefPtr<InbandMetadataTextTrackPrivateGStreamer>>

* platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (170708 => 170709)


--- trunk/Source/WebCore/ChangeLog	2014-07-02 15:24:31 UTC (rev 170708)
+++ trunk/Source/WebCore/ChangeLog	2014-07-02 16:02:55 UTC (rev 170709)
@@ -1,5 +1,17 @@
 2014-07-02  Carlos Garcia Campos  <[email protected]>
 
+        [GStreamer] MediaPlayerPrivateGStreamer.cpp fails to build when VIDEO_TRACK is enabled and using GSTREAMER_MPEGTS
+        https://bugs.webkit.org/show_bug.cgi?id=134548
+
+        Reviewed by Philippe Normand.
+
+        Include AtomicStringHash.h when ENABLE(VIDEO_TRACK) && USE(GSTREAMER_MPEGTS)
+        since it's used by HashMap<AtomicString, RefPtr<InbandMetadataTextTrackPrivateGStreamer>>
+
+        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h:
+
+2014-07-02  Carlos Garcia Campos  <[email protected]>
+
         [GTK] Unstable headers should include webkitdomdefines-unstable.h
         https://bugs.webkit.org/show_bug.cgi?id=134540
 

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h (170708 => 170709)


--- trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h	2014-07-02 15:24:31 UTC (rev 170708)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h	2014-07-02 16:02:55 UTC (rev 170709)
@@ -35,6 +35,10 @@
 #include <wtf/Forward.h>
 #include <wtf/gobject/GMainLoopSource.h>
 
+#if ENABLE(VIDEO_TRACK) && USE(GSTREAMER_MPEGTS)
+#include <wtf/text/AtomicStringHash.h>
+#endif
+
 #if ENABLE(MEDIA_SOURCE)
 #include "MediaSourceGStreamer.h"
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to