Title: [279091] trunk/Source/WebKit
Revision
279091
Author
don.olmst...@sony.com
Date
2021-06-21 17:00:41 -0700 (Mon, 21 Jun 2021)

Log Message

Update signature of createVideoLayerRemote for PlayStation and GStreamer
https://bugs.webkit.org/show_bug.cgi?id=227242

Reviewed by Eric Carlson.

Followup on r278740 which changed the signature of createVideoLayerRemote. Updating the PlayStation and
GStreamer accordingly.

* WebProcess/GPU/media/gstreamer/VideoLayerRemoteGStreamer.cpp:
(WebKit::createVideoLayerRemote):
* WebProcess/GPU/media/playstation/VideoLayerRemotePlayStation.cpp:
(WebKit::createVideoLayerRemote):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (279090 => 279091)


--- trunk/Source/WebKit/ChangeLog	2021-06-21 23:57:37 UTC (rev 279090)
+++ trunk/Source/WebKit/ChangeLog	2021-06-22 00:00:41 UTC (rev 279091)
@@ -1,3 +1,18 @@
+2021-06-21  Don Olmstead  <don.olmst...@sony.com>
+
+        Update signature of createVideoLayerRemote for PlayStation and GStreamer
+        https://bugs.webkit.org/show_bug.cgi?id=227242
+
+        Reviewed by Eric Carlson.
+
+        Followup on r278740 which changed the signature of createVideoLayerRemote. Updating the PlayStation and
+        GStreamer accordingly.
+
+        * WebProcess/GPU/media/gstreamer/VideoLayerRemoteGStreamer.cpp:
+        (WebKit::createVideoLayerRemote):
+        * WebProcess/GPU/media/playstation/VideoLayerRemotePlayStation.cpp:
+        (WebKit::createVideoLayerRemote):
+
 2021-06-21  Chris Dumez  <cdu...@apple.com>
 
         Update TBA macros for iOS 15 / macOS 13

Modified: trunk/Source/WebKit/WebProcess/GPU/media/gstreamer/VideoLayerRemoteGStreamer.cpp (279090 => 279091)


--- trunk/Source/WebKit/WebProcess/GPU/media/gstreamer/VideoLayerRemoteGStreamer.cpp	2021-06-21 23:57:37 UTC (rev 279090)
+++ trunk/Source/WebKit/WebProcess/GPU/media/gstreamer/VideoLayerRemoteGStreamer.cpp	2021-06-22 00:00:41 UTC (rev 279091)
@@ -41,7 +41,7 @@
 
 namespace WebKit {
 
-PlatformLayerContainer createVideoLayerRemote(MediaPlayerPrivateRemote* mediaPlayerPrivateRemote, LayerHostingContextID contextId)
+PlatformLayerContainer createVideoLayerRemote(MediaPlayerPrivateRemote*, LayerHostingContextID, WebCore::MediaPlayerEnums::VideoGravity)
 {
     notImplemented();
     return nullptr;

Modified: trunk/Source/WebKit/WebProcess/GPU/media/playstation/VideoLayerRemotePlayStation.cpp (279090 => 279091)


--- trunk/Source/WebKit/WebProcess/GPU/media/playstation/VideoLayerRemotePlayStation.cpp	2021-06-21 23:57:37 UTC (rev 279090)
+++ trunk/Source/WebKit/WebProcess/GPU/media/playstation/VideoLayerRemotePlayStation.cpp	2021-06-22 00:00:41 UTC (rev 279091)
@@ -32,7 +32,7 @@
 
 namespace WebKit {
 
-PlatformLayerContainer createVideoLayerRemote(MediaPlayerPrivateRemote* mediaPlayerPrivateRemote, LayerHostingContextID contextId)
+PlatformLayerContainer createVideoLayerRemote(MediaPlayerPrivateRemote*, LayerHostingContextID, WebCore::MediaPlayerEnums::VideoGravity)
 {
     notImplemented();
     return nullptr;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to