diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2019-11-09 21:42:45 +0530 |
---|---|---|
committer | adeshkp <adeshkp@users.noreply.github.com> | 2019-11-10 06:01:40 -0500 |
commit | 0fb5f7a158e0a5a610e1ba85cf408525964d746e (patch) | |
tree | 22df72bc308a67dffec02c0aa94ff2969e78e209 /dom/media/platforms/agnostic | |
parent | 736d25cbec4541186ed46c935c117ce4d1c7f3bb (diff) | |
download | UXP-0fb5f7a158e0a5a610e1ba85cf408525964d746e.tar UXP-0fb5f7a158e0a5a610e1ba85cf408525964d746e.tar.gz UXP-0fb5f7a158e0a5a610e1ba85cf408525964d746e.tar.lz UXP-0fb5f7a158e0a5a610e1ba85cf408525964d746e.tar.xz UXP-0fb5f7a158e0a5a610e1ba85cf408525964d746e.zip |
Issue #1259 - Part 1. Remove Adobe Primetime support from tree
Diffstat (limited to 'dom/media/platforms/agnostic')
-rw-r--r-- | dom/media/platforms/agnostic/gmp/GMPDecoderModule.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/dom/media/platforms/agnostic/gmp/GMPDecoderModule.cpp b/dom/media/platforms/agnostic/gmp/GMPDecoderModule.cpp index cc53d2c93..50a5097ac 100644 --- a/dom/media/platforms/agnostic/gmp/GMPDecoderModule.cpp +++ b/dom/media/platforms/agnostic/gmp/GMPDecoderModule.cpp @@ -109,7 +109,6 @@ GMPDecoderModule::PreferredGMP(const nsACString& aMimeType) if (aMimeType.EqualsLiteral("audio/mp4a-latm")) { switch (MediaPrefs::GMPAACPreferred()) { case 1: rv.emplace(kEMEKeySystemClearkey); break; - case 2: rv.emplace(kEMEKeySystemPrimetime); break; default: break; } } @@ -117,7 +116,6 @@ GMPDecoderModule::PreferredGMP(const nsACString& aMimeType) if (MP4Decoder::IsH264(aMimeType)) { switch (MediaPrefs::GMPH264Preferred()) { case 1: rv.emplace(kEMEKeySystemClearkey); break; - case 2: rv.emplace(kEMEKeySystemPrimetime); break; default: break; } } |