summaryrefslogtreecommitdiffstats
path: root/dom/media/platforms/agnostic/AOMDecoder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/platforms/agnostic/AOMDecoder.cpp')
-rw-r--r--dom/media/platforms/agnostic/AOMDecoder.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/dom/media/platforms/agnostic/AOMDecoder.cpp b/dom/media/platforms/agnostic/AOMDecoder.cpp
index 3ab5004e3..d1b45cf7f 100644
--- a/dom/media/platforms/agnostic/AOMDecoder.cpp
+++ b/dom/media/platforms/agnostic/AOMDecoder.cpp
@@ -212,6 +212,19 @@ AOMDecoder::IsAV1(const nsACString& aMimeType)
/* static */
bool
+AOMDecoder::IsSupportedCodec(const nsAString& aCodecType)
+{
+ // While AV1 is under development, we describe support
+ // for a specific aom commit hash so sites can check
+ // compatibility.
+ auto version = NS_ConvertASCIItoUTF16("av1.experimental.");
+ version.AppendLiteral("4d668d7feb1f8abd809d1bca0418570a7f142a36");
+ return aCodecType.EqualsLiteral("av1") ||
+ aCodecType.Equals(version);
+}
+
+/* static */
+bool
AOMDecoder::IsKeyframe(Span<const uint8_t> aBuffer) {
aom_codec_stream_info_t info;
PodZero(&info);