Title: [290986] trunk/Source/WebCore
Revision
290986
Author
calva...@igalia.com
Date
2022-03-08 05:31:32 -0800 (Tue, 08 Mar 2022)

Log Message

[EME][Thunder] Disable hasBrokenEncryptedMediaAPISupportQuirk
https://bugs.webkit.org/show_bug.cgi?id=237595

Reviewed by Philippe Normand.

Hulu and YouTube work fine with Thunder, no need for this quirk.

Patch based on one by Eugene Mutavchi <ievgen_mutav...@comcast.com>.

* page/Quirks.cpp:
(WebCore::Quirks::hasBrokenEncryptedMediaAPISupportQuirk const):
Return false if Thunder build is enabled.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (290985 => 290986)


--- trunk/Source/WebCore/ChangeLog	2022-03-08 12:24:15 UTC (rev 290985)
+++ trunk/Source/WebCore/ChangeLog	2022-03-08 13:31:32 UTC (rev 290986)
@@ -1,3 +1,18 @@
+2022-03-08  Xabier Rodriguez Calvar  <calva...@igalia.com>
+
+        [EME][Thunder] Disable hasBrokenEncryptedMediaAPISupportQuirk
+        https://bugs.webkit.org/show_bug.cgi?id=237595
+
+        Reviewed by Philippe Normand.
+
+        Hulu and YouTube work fine with Thunder, no need for this quirk.
+
+        Patch based on one by Eugene Mutavchi <ievgen_mutav...@comcast.com>.
+
+        * page/Quirks.cpp:
+        (WebCore::Quirks::hasBrokenEncryptedMediaAPISupportQuirk const):
+        Return false if Thunder build is enabled.
+
 2022-03-08  Youenn Fablet  <you...@apple.com>
 
         Add a preference to mute video capture in case audio capture gets interrupted

Modified: trunk/Source/WebCore/page/Quirks.cpp (290985 => 290986)


--- trunk/Source/WebCore/page/Quirks.cpp	2022-03-08 12:24:15 UTC (rev 290985)
+++ trunk/Source/WebCore/page/Quirks.cpp	2022-03-08 13:31:32 UTC (rev 290986)
@@ -178,6 +178,10 @@
 
 bool Quirks::hasBrokenEncryptedMediaAPISupportQuirk() const
 {
+#if ENABLE(THUNDER)
+    return false;
+#endif
+
     if (!needsQuirks())
         return false;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to