Title: [290132] trunk/Source/WebCore
Revision
290132
Author
calva...@igalia.com
Date
2022-02-18 09:29:54 -0800 (Fri, 18 Feb 2022)

Log Message

[EME][GStreamer][Thunder] Add video/x-h265 caps to Thunder decryptor
https://bugs.webkit.org/show_bug.cgi?id=236833

Reviewed by Philippe Normand.

This patch is authored by Eugene Mutavchi <ievgen_mutav...@comcast.com>
See: https://github.com/WebPlatformForEmbedded/WPEWebKit/pull/790

* platform/graphics/gstreamer/eme/WebKitThunderDecryptorGStreamer.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (290131 => 290132)


--- trunk/Source/WebCore/ChangeLog	2022-02-18 17:25:33 UTC (rev 290131)
+++ trunk/Source/WebCore/ChangeLog	2022-02-18 17:29:54 UTC (rev 290132)
@@ -1,3 +1,15 @@
+2022-02-18  Xabier Rodriguez Calvar  <calva...@igalia.com>
+
+        [EME][GStreamer][Thunder] Add video/x-h265 caps to Thunder decryptor
+        https://bugs.webkit.org/show_bug.cgi?id=236833
+
+        Reviewed by Philippe Normand.
+
+        This patch is authored by Eugene Mutavchi <ievgen_mutav...@comcast.com>
+        See: https://github.com/WebPlatformForEmbedded/WPEWebKit/pull/790
+
+        * platform/graphics/gstreamer/eme/WebKitThunderDecryptorGStreamer.cpp:
+
 2022-02-18  Chris Dumez  <cdu...@apple.com>
 
         Use more StringView during CSP parsing

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/eme/WebKitThunderDecryptorGStreamer.cpp (290131 => 290132)


--- trunk/Source/WebCore/platform/graphics/gstreamer/eme/WebKitThunderDecryptorGStreamer.cpp	2022-02-18 17:25:33 UTC (rev 290131)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/eme/WebKitThunderDecryptorGStreamer.cpp	2022-02-18 17:29:54 UTC (rev 290132)
@@ -46,7 +46,7 @@
 GST_DEBUG_CATEGORY(webkitMediaThunderDecryptDebugCategory);
 #define GST_CAT_DEFAULT webkitMediaThunderDecryptDebugCategory
 
-static const char* cencEncryptionMediaTypes[] = { "video/mp4", "audio/mp4", "video/x-h264", "audio/mpeg", "video/x-vp9", nullptr };
+static const char* cencEncryptionMediaTypes[] = { "video/mp4", "audio/mp4", "video/x-h264", "video/x-h265", "audio/mpeg", "video/x-vp9", nullptr };
 static const char** cbcsEncryptionMediaTypes = cencEncryptionMediaTypes;
 static const char* webmEncryptionMediaTypes[] = { "video/webm", "audio/webm", "video/x-vp9", "audio/x-opus", nullptr };
 
@@ -60,6 +60,7 @@
         "audio/mp4; "
         "audio/mpeg; "
         "video/x-h264; "
+        "video/x-h265; "
         "video/x-vp9; "
         "audio/x-opus; "));
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to