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 | c4431afa756139c6b5a89d3cdb38329d4fa99ce3 (patch) | |
tree | 22df72bc308a67dffec02c0aa94ff2969e78e209 /media | |
parent | 3d37baf8a9a2d8eae0fb4c6decdffbb65191cb52 (diff) | |
download | aura-central-c4431afa756139c6b5a89d3cdb38329d4fa99ce3.tar.gz |
Issue mcp-graveyard/UXP%1259 - Part 1. Remove Adobe Primetime support from tree
Diffstat (limited to 'media')
-rw-r--r-- | media/psshparser/PsshParser.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/media/psshparser/PsshParser.cpp b/media/psshparser/PsshParser.cpp index e5d0acd26..3f76a9b4a 100644 --- a/media/psshparser/PsshParser.cpp +++ b/media/psshparser/PsshParser.cpp @@ -108,11 +108,6 @@ const uint8_t kSystemID[] = { 0xac, 0xe3, 0x3c, 0x1e, 0x52, 0xe2, 0xfb, 0x4b }; -const uint8_t kPrimetimeID[] = { - 0xf2, 0x39, 0xe7, 0x69, 0xef, 0xa3, 0x48, 0x50, - 0x9c, 0x16, 0xa9, 0x03, 0xc6, 0x93, 0x2e, 0xfb -}; - bool ParseCENCInitData(const uint8_t* aInitData, uint32_t aInitDataSize, @@ -163,11 +158,6 @@ ParseCENCInitData(const uint8_t* aInitData, // Insufficient bytes to read SystemID. return false; } - if (!memcmp(kPrimetimeID, sid, sizeof(kSystemID))) { - // Allow legacy Primetime key system PSSH boxes, which - // don't conform to common encryption format. - return true; - } if (memcmp(kSystemID, sid, sizeof(kSystemID))) { // Ignore pssh boxes with wrong system ID. |