Title: [178418] trunk/Source/WebCore
- Revision
- 178418
- Author
- [email protected]
- Date
- 2015-01-14 03:54:50 -0800 (Wed, 14 Jan 2015)
Log Message
REGRESSION(r178367): [GStreamer] Several media tests time out after r178367
https://bugs.webkit.org/show_bug.cgi?id=140437
Reviewed by Philippe Normand.
Add implementation for MediaPlayerPrivate::rate() to GStreamer
media backend.
* platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
(WebCore::MediaPlayerPrivateGStreamer::rate):
* platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (178417 => 178418)
--- trunk/Source/WebCore/ChangeLog 2015-01-14 10:21:58 UTC (rev 178417)
+++ trunk/Source/WebCore/ChangeLog 2015-01-14 11:54:50 UTC (rev 178418)
@@ -1,3 +1,17 @@
+2015-01-14 Carlos Garcia Campos <[email protected]>
+
+ REGRESSION(r178367): [GStreamer] Several media tests time out after r178367
+ https://bugs.webkit.org/show_bug.cgi?id=140437
+
+ Reviewed by Philippe Normand.
+
+ Add implementation for MediaPlayerPrivate::rate() to GStreamer
+ media backend.
+
+ * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
+ (WebCore::MediaPlayerPrivateGStreamer::rate):
+ * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h:
+
2015-01-13 Commit Queue <[email protected]>
Unreviewed, rolling out r178390, r178392, r178398, r178400,
Modified: trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp (178417 => 178418)
--- trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp 2015-01-14 10:21:58 UTC (rev 178417)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp 2015-01-14 11:54:50 UTC (rev 178418)
@@ -859,6 +859,11 @@
updatePlaybackRate();
}
+double MediaPlayerPrivateGStreamer::rate() const
+{
+ return m_playbackRate;
+}
+
void MediaPlayerPrivateGStreamer::setPreservesPitch(bool preservesPitch)
{
m_preservesPitch = preservesPitch;
Modified: trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h (178417 => 178418)
--- trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h 2015-01-14 10:21:58 UTC (rev 178417)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h 2015-01-14 11:54:50 UTC (rev 178418)
@@ -89,6 +89,7 @@
void seek(float);
void setRate(float);
+ double rate() const override;
void setPreservesPitch(bool);
void setPreload(MediaPlayer::Preload);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes