From 85160fd5ada4c253df27ca0a6136ec6b53200135 Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Fri, 25 Sep 2020 11:54:11 +0200 Subject: Added openh264 fixes --- mozilla-1663844.patch | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 mozilla-1663844.patch (limited to 'mozilla-1663844.patch') diff --git a/mozilla-1663844.patch b/mozilla-1663844.patch new file mode 100644 index 0000000..1d96ac9 --- /dev/null +++ b/mozilla-1663844.patch @@ -0,0 +1,24 @@ +diff --git a/dom/media/platforms/agnostic/gmp/GMPDecoderModule.cpp b/dom/media/platforms/agnostic/gmp/GMPDecoderModule.cpp +--- a/dom/media/platforms/agnostic/gmp/GMPDecoderModule.cpp ++++ b/dom/media/platforms/agnostic/gmp/GMPDecoderModule.cpp +@@ -86,7 +86,7 @@ bool GMPDecoderModule::SupportsMimeType( + + bool GMPDecoderModule::SupportsMimeType( + const nsACString& aMimeType, DecoderDoctorDiagnostics* aDiagnostics) const { +- return false; ++ return MP4Decoder::IsH264(aMimeType); + } + + } // namespace mozilla +diff --git a/dom/media/platforms/agnostic/gmp/GMPVideoDecoder.cpp b/dom/media/platforms/agnostic/gmp/GMPVideoDecoder.cpp +--- a/dom/media/platforms/agnostic/gmp/GMPVideoDecoder.cpp ++++ b/dom/media/platforms/agnostic/gmp/GMPVideoDecoder.cpp +@@ -67,6 +67,8 @@ void GMPVideoDecoder::Decoded(GMPVideoi4 + RefPtr self = this; + if (v) { + mDecodedData.AppendElement(std::move(v)); ++ mDecodePromise.ResolveIfExists(std::move(mDecodedData), __func__); ++ mDecodedData = DecodedData(); + } else { + mDecodedData.Clear(); + mDecodePromise.RejectIfExists( -- cgit