Consolidate key system enums.
There were several enum types that all were used for key systems. This combines them into one to make it more clear and only needing to update one. This also uses a bit field to specify multiple key systems instead of using a std::vector. Change-Id: Ia88039835492a5bd47f449ba4b76187046deeec0
This commit is contained in:
parent
4f068bfaa8
commit
7e41937bb1
|
@ -268,18 +268,17 @@ bool ParseAdCues(const std::string& ad_cues, std::vector<Cuepoint>* cuepoints) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ParseProtectionSystems(
|
bool ParseProtectionSystems(const std::string& protection_systems_str,
|
||||||
const std::string& protection_systems_str,
|
ProtectionSystem* protection_systems) {
|
||||||
std::vector<EncryptionParams::ProtectionSystem>* protection_systems) {
|
*protection_systems = ProtectionSystem::kNone;
|
||||||
protection_systems->clear();
|
|
||||||
|
|
||||||
std::map<std::string, EncryptionParams::ProtectionSystem> mapping = {
|
std::map<std::string, ProtectionSystem> mapping = {
|
||||||
{"common", EncryptionParams::ProtectionSystem::kCommonSystem},
|
{"common", ProtectionSystem::kCommon},
|
||||||
{"commonsystem", EncryptionParams::ProtectionSystem::kCommonSystem},
|
{"commonsystem", ProtectionSystem::kCommon},
|
||||||
{"fairplay", EncryptionParams::ProtectionSystem::kFairPlay},
|
{"fairplay", ProtectionSystem::kFairPlay},
|
||||||
{"marlin", EncryptionParams::ProtectionSystem::kMarlin},
|
{"marlin", ProtectionSystem::kMarlin},
|
||||||
{"playready", EncryptionParams::ProtectionSystem::kPlayReady},
|
{"playready", ProtectionSystem::kPlayReady},
|
||||||
{"widevine", EncryptionParams::ProtectionSystem::kWidevine},
|
{"widevine", ProtectionSystem::kWidevine},
|
||||||
};
|
};
|
||||||
|
|
||||||
for (const std::string& protection_system :
|
for (const std::string& protection_system :
|
||||||
|
@ -291,7 +290,7 @@ bool ParseProtectionSystems(
|
||||||
<< protection_system;
|
<< protection_system;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
protection_systems->push_back(iter->second);
|
*protection_systems |= iter->second;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,39 +42,11 @@ std::unique_ptr<RequestSigner> CreateSigner(const WidevineSigner& signer) {
|
||||||
return request_signer;
|
return request_signer;
|
||||||
}
|
}
|
||||||
|
|
||||||
int GetProtectionSystemsFlag(
|
|
||||||
const std::vector<EncryptionParams::ProtectionSystem>& protection_systems) {
|
|
||||||
int protection_systems_flags = 0;
|
|
||||||
for (const auto protection_system : protection_systems) {
|
|
||||||
switch (protection_system) {
|
|
||||||
case EncryptionParams::ProtectionSystem::kCommonSystem:
|
|
||||||
protection_systems_flags |= COMMON_PROTECTION_SYSTEM_FLAG;
|
|
||||||
break;
|
|
||||||
case EncryptionParams::ProtectionSystem::kFairPlay:
|
|
||||||
protection_systems_flags |= FAIRPLAY_PROTECTION_SYSTEM_FLAG;
|
|
||||||
break;
|
|
||||||
case EncryptionParams::ProtectionSystem::kMarlin:
|
|
||||||
protection_systems_flags |= MARLIN_PROTECTION_SYSTEM_FLAG;
|
|
||||||
break;
|
|
||||||
case EncryptionParams::ProtectionSystem::kPlayReady:
|
|
||||||
protection_systems_flags |= PLAYREADY_PROTECTION_SYSTEM_FLAG;
|
|
||||||
break;
|
|
||||||
case EncryptionParams::ProtectionSystem::kWidevine:
|
|
||||||
protection_systems_flags |= WIDEVINE_PROTECTION_SYSTEM_FLAG;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return protection_systems_flags;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
std::unique_ptr<KeySource> CreateEncryptionKeySource(
|
std::unique_ptr<KeySource> CreateEncryptionKeySource(
|
||||||
FourCC protection_scheme,
|
FourCC protection_scheme,
|
||||||
const EncryptionParams& encryption_params) {
|
const EncryptionParams& encryption_params) {
|
||||||
int protection_systems_flags =
|
|
||||||
GetProtectionSystemsFlag(encryption_params.protection_systems);
|
|
||||||
|
|
||||||
std::unique_ptr<KeySource> encryption_key_source;
|
std::unique_ptr<KeySource> encryption_key_source;
|
||||||
switch (encryption_params.key_provider) {
|
switch (encryption_params.key_provider) {
|
||||||
case KeyProvider::kWidevine: {
|
case KeyProvider::kWidevine: {
|
||||||
|
@ -89,7 +61,8 @@ std::unique_ptr<KeySource> CreateEncryptionKeySource(
|
||||||
}
|
}
|
||||||
std::unique_ptr<WidevineKeySource> widevine_key_source(
|
std::unique_ptr<WidevineKeySource> widevine_key_source(
|
||||||
new WidevineKeySource(widevine.key_server_url,
|
new WidevineKeySource(widevine.key_server_url,
|
||||||
protection_systems_flags, protection_scheme));
|
encryption_params.protection_systems,
|
||||||
|
protection_scheme));
|
||||||
if (!widevine.signer.signer_name.empty()) {
|
if (!widevine.signer.signer_name.empty()) {
|
||||||
std::unique_ptr<RequestSigner> request_signer(
|
std::unique_ptr<RequestSigner> request_signer(
|
||||||
CreateSigner(widevine.signer));
|
CreateSigner(widevine.signer));
|
||||||
|
@ -112,9 +85,9 @@ std::unique_ptr<KeySource> CreateEncryptionKeySource(
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case KeyProvider::kRawKey: {
|
case KeyProvider::kRawKey: {
|
||||||
encryption_key_source =
|
encryption_key_source = RawKeySource::Create(
|
||||||
RawKeySource::Create(encryption_params.raw_key,
|
encryption_params.raw_key, encryption_params.protection_systems,
|
||||||
protection_systems_flags, protection_scheme);
|
protection_scheme);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case KeyProvider::kPlayReady: {
|
case KeyProvider::kPlayReady: {
|
||||||
|
@ -141,10 +114,10 @@ std::unique_ptr<KeySource> CreateEncryptionKeySource(
|
||||||
playready.key_server_url, playready.client_cert_file,
|
playready.key_server_url, playready.client_cert_file,
|
||||||
playready.client_cert_private_key_file,
|
playready.client_cert_private_key_file,
|
||||||
playready.client_cert_private_key_password,
|
playready.client_cert_private_key_password,
|
||||||
protection_systems_flags, protection_scheme));
|
encryption_params.protection_systems, protection_scheme));
|
||||||
} else {
|
} else {
|
||||||
playready_key_source.reset(new PlayReadyKeySource(
|
playready_key_source.reset(new PlayReadyKeySource(
|
||||||
playready.key_server_url, protection_systems_flags,
|
playready.key_server_url, encryption_params.protection_systems,
|
||||||
protection_scheme));
|
protection_scheme));
|
||||||
}
|
}
|
||||||
if (!playready.ca_file.empty()) {
|
if (!playready.ca_file.empty()) {
|
||||||
|
@ -164,7 +137,7 @@ std::unique_ptr<KeySource> CreateEncryptionKeySource(
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case KeyProvider::kNone:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return encryption_key_source;
|
return encryption_key_source;
|
||||||
|
@ -183,7 +156,7 @@ std::unique_ptr<KeySource> CreateDecryptionKeySource(
|
||||||
std::unique_ptr<WidevineKeySource> widevine_key_source(
|
std::unique_ptr<WidevineKeySource> widevine_key_source(
|
||||||
new WidevineKeySource(
|
new WidevineKeySource(
|
||||||
widevine.key_server_url,
|
widevine.key_server_url,
|
||||||
WIDEVINE_PROTECTION_SYSTEM_FLAG /* value does not matter here */,
|
ProtectionSystem::kWidevine /* value does not matter here */,
|
||||||
FOURCC_NULL /* value does not matter here */));
|
FOURCC_NULL /* value does not matter here */));
|
||||||
if (!widevine.signer.signer_name.empty()) {
|
if (!widevine.signer.signer_name.empty()) {
|
||||||
std::unique_ptr<RequestSigner> request_signer(
|
std::unique_ptr<RequestSigner> request_signer(
|
||||||
|
@ -199,12 +172,11 @@ std::unique_ptr<KeySource> CreateDecryptionKeySource(
|
||||||
case KeyProvider::kRawKey: {
|
case KeyProvider::kRawKey: {
|
||||||
decryption_key_source = RawKeySource::Create(
|
decryption_key_source = RawKeySource::Create(
|
||||||
decryption_params.raw_key,
|
decryption_params.raw_key,
|
||||||
COMMON_PROTECTION_SYSTEM_FLAG /* value does not matter here */,
|
ProtectionSystem::kCommon /* value does not matter here */,
|
||||||
FOURCC_NULL /* value does not matter here */);
|
FOURCC_NULL /* value does not matter here */);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case KeyProvider::kNone:
|
default:
|
||||||
case KeyProvider::kPlayReady:
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return decryption_key_source;
|
return decryption_key_source;
|
||||||
|
|
|
@ -16,28 +16,29 @@
|
||||||
namespace shaka {
|
namespace shaka {
|
||||||
namespace media {
|
namespace media {
|
||||||
|
|
||||||
KeySource::KeySource(int protection_systems_flags, FourCC protection_scheme) {
|
KeySource::KeySource(ProtectionSystem protection_systems,
|
||||||
if (protection_systems_flags & COMMON_PROTECTION_SYSTEM_FLAG) {
|
FourCC protection_scheme) {
|
||||||
|
if (has_flag(protection_systems, ProtectionSystem::kCommon)) {
|
||||||
pssh_generators_.emplace_back(new CommonPsshGenerator());
|
pssh_generators_.emplace_back(new CommonPsshGenerator());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (protection_systems_flags & PLAYREADY_PROTECTION_SYSTEM_FLAG) {
|
if (has_flag(protection_systems, ProtectionSystem::kPlayReady)) {
|
||||||
pssh_generators_.emplace_back(
|
pssh_generators_.emplace_back(
|
||||||
new PlayReadyPsshGenerator(protection_scheme));
|
new PlayReadyPsshGenerator(protection_scheme));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (protection_systems_flags & WIDEVINE_PROTECTION_SYSTEM_FLAG) {
|
if (has_flag(protection_systems, ProtectionSystem::kWidevine)) {
|
||||||
pssh_generators_.emplace_back(new WidevinePsshGenerator(protection_scheme));
|
pssh_generators_.emplace_back(new WidevinePsshGenerator(protection_scheme));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (protection_systems_flags & FAIRPLAY_PROTECTION_SYSTEM_FLAG) {
|
if (has_flag(protection_systems, ProtectionSystem::kFairPlay)) {
|
||||||
no_pssh_systems_.emplace_back(std::begin(kFairPlaySystemId),
|
no_pssh_systems_.emplace_back(std::begin(kFairPlaySystemId),
|
||||||
std::end(kFairPlaySystemId));
|
std::end(kFairPlaySystemId));
|
||||||
}
|
}
|
||||||
// We only support Marlin Adaptive Streaming Specification – Simple Profile
|
// We only support Marlin Adaptive Streaming Specification – Simple Profile
|
||||||
// with Implicit Content ID Mapping, which does not need a PSSH. Marlin
|
// with Implicit Content ID Mapping, which does not need a PSSH. Marlin
|
||||||
// specific PSSH with Explicit Content ID Mapping is not generated.
|
// specific PSSH with Explicit Content ID Mapping is not generated.
|
||||||
if (protection_systems_flags & MARLIN_PROTECTION_SYSTEM_FLAG) {
|
if (has_flag(protection_systems, ProtectionSystem::kMarlin)) {
|
||||||
no_pssh_systems_.emplace_back(std::begin(kMarlinSystemId),
|
no_pssh_systems_.emplace_back(std::begin(kMarlinSystemId),
|
||||||
std::end(kMarlinSystemId));
|
std::end(kMarlinSystemId));
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,7 +47,7 @@ typedef std::map<std::string, std::unique_ptr<EncryptionKey>> EncryptionKeyMap;
|
||||||
/// KeySource is responsible for encryption key acquisition.
|
/// KeySource is responsible for encryption key acquisition.
|
||||||
class KeySource {
|
class KeySource {
|
||||||
public:
|
public:
|
||||||
KeySource(int protection_systems_flags, FourCC protection_scheme);
|
KeySource(ProtectionSystem protection_systems, FourCC protection_scheme);
|
||||||
|
|
||||||
virtual ~KeySource();
|
virtual ~KeySource();
|
||||||
|
|
||||||
|
|
|
@ -63,16 +63,16 @@ bool Base64StringToBytes(const std::string& base64_string,
|
||||||
}
|
}
|
||||||
|
|
||||||
PlayReadyKeySource::PlayReadyKeySource(const std::string& server_url,
|
PlayReadyKeySource::PlayReadyKeySource(const std::string& server_url,
|
||||||
int protection_system_flags,
|
ProtectionSystem protection_systems,
|
||||||
FourCC protection_scheme)
|
FourCC protection_scheme)
|
||||||
// PlayReady PSSH is retrived from PlayReady server response.
|
// PlayReady PSSH is retrived from PlayReady server response.
|
||||||
: KeySource(protection_system_flags & ~PLAYREADY_PROTECTION_SYSTEM_FLAG,
|
: KeySource(protection_systems & ~ProtectionSystem::kPlayReady,
|
||||||
protection_scheme),
|
protection_scheme),
|
||||||
generate_playready_protection_system_(
|
generate_playready_protection_system_(
|
||||||
// Generate PlayReady protection system if there are no other
|
// Generate PlayReady protection system if there are no other
|
||||||
// protection system specified.
|
// protection system specified.
|
||||||
protection_system_flags == NO_PROTECTION_SYSTEM_FLAG ||
|
protection_systems == ProtectionSystem::kNone ||
|
||||||
protection_system_flags & PLAYREADY_PROTECTION_SYSTEM_FLAG),
|
has_flag(protection_systems, ProtectionSystem::kPlayReady)),
|
||||||
encryption_key_(new EncryptionKey),
|
encryption_key_(new EncryptionKey),
|
||||||
server_url_(server_url) {}
|
server_url_(server_url) {}
|
||||||
|
|
||||||
|
@ -81,10 +81,10 @@ PlayReadyKeySource::PlayReadyKeySource(
|
||||||
const std::string& client_cert_file,
|
const std::string& client_cert_file,
|
||||||
const std::string& client_cert_private_key_file,
|
const std::string& client_cert_private_key_file,
|
||||||
const std::string& client_cert_private_key_password,
|
const std::string& client_cert_private_key_password,
|
||||||
int protection_system_flags,
|
ProtectionSystem protection_systems,
|
||||||
FourCC protection_scheme)
|
FourCC protection_scheme)
|
||||||
// PlayReady PSSH is retrived from PlayReady server response.
|
// PlayReady PSSH is retrived from PlayReady server response.
|
||||||
: KeySource(protection_system_flags & ~PLAYREADY_PROTECTION_SYSTEM_FLAG,
|
: KeySource(protection_systems & ~ProtectionSystem::kPlayReady,
|
||||||
protection_scheme),
|
protection_scheme),
|
||||||
encryption_key_(new EncryptionKey),
|
encryption_key_(new EncryptionKey),
|
||||||
server_url_(server_url),
|
server_url_(server_url),
|
||||||
|
|
|
@ -21,13 +21,13 @@ class PlayReadyKeySource : public KeySource {
|
||||||
public:
|
public:
|
||||||
/// Creates a new PlayReadyKeySource from the given packaging information.
|
/// Creates a new PlayReadyKeySource from the given packaging information.
|
||||||
/// @param server_url PlayReady packaging server url.
|
/// @param server_url PlayReady packaging server url.
|
||||||
/// @param protection_systems_flags is the flags indicating which PSSH should
|
/// @param protection_systems is the enum indicating which PSSH should
|
||||||
/// be included.
|
/// be included.
|
||||||
/// @param protection_scheme is the Protection Scheme to be used for
|
/// @param protection_scheme is the Protection Scheme to be used for
|
||||||
/// encryption. It needs to be signalled in Widevine PSSH. This
|
/// encryption. It needs to be signalled in Widevine PSSH. This
|
||||||
/// argument can be ignored if Widevine PSSH is not generated.
|
/// argument can be ignored if Widevine PSSH is not generated.
|
||||||
PlayReadyKeySource(const std::string& server_url,
|
PlayReadyKeySource(const std::string& server_url,
|
||||||
int protection_systems_flags,
|
ProtectionSystem protection_systems,
|
||||||
FourCC protection_scheme);
|
FourCC protection_scheme);
|
||||||
/// Creates a new PlayReadyKeySource from the given packaging information.
|
/// Creates a new PlayReadyKeySource from the given packaging information.
|
||||||
/// @param server_url PlayReady packaging server url.
|
/// @param server_url PlayReady packaging server url.
|
||||||
|
@ -35,7 +35,7 @@ class PlayReadyKeySource : public KeySource {
|
||||||
/// @param client_cert_private_key_file absolute path to the private file
|
/// @param client_cert_private_key_file absolute path to the private file
|
||||||
/// for the client certificate.
|
/// for the client certificate.
|
||||||
/// @param client_cert_private_key_password password for the private key.
|
/// @param client_cert_private_key_password password for the private key.
|
||||||
/// @param protection_systems_flags is the flags indicating which PSSH should
|
/// @param protection_systems is the enum indicating which PSSH should
|
||||||
/// be included.
|
/// be included.
|
||||||
/// @param protection_scheme is the Protection Scheme to be used for
|
/// @param protection_scheme is the Protection Scheme to be used for
|
||||||
/// encryption. It needs to be signalled in Widevine PSSH. This
|
/// encryption. It needs to be signalled in Widevine PSSH. This
|
||||||
|
@ -44,7 +44,7 @@ class PlayReadyKeySource : public KeySource {
|
||||||
const std::string& client_cert_file,
|
const std::string& client_cert_file,
|
||||||
const std::string& client_cert_private_key_file,
|
const std::string& client_cert_private_key_file,
|
||||||
const std::string& client_cert_private_key_password,
|
const std::string& client_cert_private_key_password,
|
||||||
int protection_systems_flags,
|
ProtectionSystem protection_systems,
|
||||||
FourCC protection_scheme);
|
FourCC protection_scheme);
|
||||||
~PlayReadyKeySource() override;
|
~PlayReadyKeySource() override;
|
||||||
|
|
||||||
|
|
|
@ -12,13 +12,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "packager/base/logging.h"
|
#include "packager/base/logging.h"
|
||||||
|
#include "packager/media/public/crypto_params.h"
|
||||||
#define NO_PROTECTION_SYSTEM_FLAG 0x00
|
|
||||||
#define COMMON_PROTECTION_SYSTEM_FLAG 0x01
|
|
||||||
#define PLAYREADY_PROTECTION_SYSTEM_FLAG 0x02
|
|
||||||
#define WIDEVINE_PROTECTION_SYSTEM_FLAG 0x04
|
|
||||||
#define FAIRPLAY_PROTECTION_SYSTEM_FLAG 0x08
|
|
||||||
#define MARLIN_PROTECTION_SYSTEM_FLAG 0x10
|
|
||||||
|
|
||||||
namespace shaka {
|
namespace shaka {
|
||||||
namespace media {
|
namespace media {
|
||||||
|
|
|
@ -96,8 +96,9 @@ Status RawKeySource::GetCryptoPeriodKey(uint32_t crypto_period_index,
|
||||||
return Status::OK;
|
return Status::OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<RawKeySource> RawKeySource::Create(const RawKeyParams& raw_key,
|
std::unique_ptr<RawKeySource> RawKeySource::Create(
|
||||||
int protection_systems_flags,
|
const RawKeyParams& raw_key,
|
||||||
|
ProtectionSystem protection_systems,
|
||||||
FourCC protection_scheme) {
|
FourCC protection_scheme) {
|
||||||
std::vector<ProtectionSystemSpecificInfo> key_system_info;
|
std::vector<ProtectionSystemSpecificInfo> key_system_info;
|
||||||
bool pssh_provided = false;
|
bool pssh_provided = false;
|
||||||
|
@ -137,22 +138,21 @@ std::unique_ptr<RawKeySource> RawKeySource::Create(const RawKeyParams& raw_key,
|
||||||
|
|
||||||
// Generate common protection system if no other protection system is
|
// Generate common protection system if no other protection system is
|
||||||
// specified.
|
// specified.
|
||||||
if (!pssh_provided && protection_systems_flags == NO_PROTECTION_SYSTEM_FLAG) {
|
if (!pssh_provided && protection_systems == ProtectionSystem::kNone) {
|
||||||
protection_systems_flags = COMMON_PROTECTION_SYSTEM_FLAG;
|
protection_systems = ProtectionSystem::kCommon;
|
||||||
}
|
}
|
||||||
|
|
||||||
return std::unique_ptr<RawKeySource>(
|
return std::unique_ptr<RawKeySource>(new RawKeySource(
|
||||||
new RawKeySource(std::move(encryption_key_map), protection_systems_flags,
|
std::move(encryption_key_map), protection_systems, protection_scheme));
|
||||||
protection_scheme));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RawKeySource::RawKeySource()
|
RawKeySource::RawKeySource()
|
||||||
: KeySource(NO_PROTECTION_SYSTEM_FLAG, FOURCC_NULL) {}
|
: KeySource(ProtectionSystem::kNone, FOURCC_NULL) {}
|
||||||
|
|
||||||
RawKeySource::RawKeySource(EncryptionKeyMap&& encryption_key_map,
|
RawKeySource::RawKeySource(EncryptionKeyMap&& encryption_key_map,
|
||||||
int protection_systems_flags,
|
ProtectionSystem protection_systems,
|
||||||
FourCC protection_scheme)
|
FourCC protection_scheme)
|
||||||
: KeySource(protection_systems_flags, protection_scheme),
|
: KeySource(protection_systems, protection_scheme),
|
||||||
encryption_key_map_(std::move(encryption_key_map)) {
|
encryption_key_map_(std::move(encryption_key_map)) {
|
||||||
UpdateProtectionSystemInfo(&encryption_key_map_);
|
UpdateProtectionSystemInfo(&encryption_key_map_);
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,13 +38,14 @@ class RawKeySource : public KeySource {
|
||||||
/// Creates a new RawKeySource from the given data. Returns null
|
/// Creates a new RawKeySource from the given data. Returns null
|
||||||
/// if the parameter is malformed.
|
/// if the parameter is malformed.
|
||||||
/// @param raw_key contains parameters to setup the key source.
|
/// @param raw_key contains parameters to setup the key source.
|
||||||
/// @param protection_systems_flags is the flags indicating which PSSH should
|
/// @param protection_systems is the enum indicating which PSSH should
|
||||||
/// be included.
|
/// be included.
|
||||||
/// @param protection_scheme is the Protection Scheme to be used for
|
/// @param protection_scheme is the Protection Scheme to be used for
|
||||||
/// encryption. It needs to be signalled in Widevine PSSH. This
|
/// encryption. It needs to be signalled in Widevine PSSH. This
|
||||||
/// argument can be ignored if Widevine PSSH is not generated.
|
/// argument can be ignored if Widevine PSSH is not generated.
|
||||||
static std::unique_ptr<RawKeySource> Create(const RawKeyParams& raw_key,
|
static std::unique_ptr<RawKeySource> Create(
|
||||||
int protection_system_flags,
|
const RawKeyParams& raw_key,
|
||||||
|
ProtectionSystem protection_systems,
|
||||||
FourCC protection_scheme);
|
FourCC protection_scheme);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
@ -53,7 +54,7 @@ class RawKeySource : public KeySource {
|
||||||
|
|
||||||
private:
|
private:
|
||||||
RawKeySource(EncryptionKeyMap&& encryption_key_map,
|
RawKeySource(EncryptionKeyMap&& encryption_key_map,
|
||||||
int protection_systems_flags,
|
ProtectionSystem protection_systems,
|
||||||
FourCC protection_scheme);
|
FourCC protection_scheme);
|
||||||
RawKeySource(const RawKeySource&) = delete;
|
RawKeySource(const RawKeySource&) = delete;
|
||||||
RawKeySource& operator=(const RawKeySource&) = delete;
|
RawKeySource& operator=(const RawKeySource&) = delete;
|
||||||
|
|
|
@ -52,8 +52,6 @@ const char kDrmLabel[] = "SomeDrmLabel";
|
||||||
const char kAnotherDrmLabel[] = "AnotherDrmLabel";
|
const char kAnotherDrmLabel[] = "AnotherDrmLabel";
|
||||||
const char kEmptyDrmLabel[] = "";
|
const char kEmptyDrmLabel[] = "";
|
||||||
|
|
||||||
const int kNoProtectionSystemFlag = NO_PROTECTION_SYSTEM_FLAG;
|
|
||||||
|
|
||||||
std::vector<uint8_t> HexStringToVector(const std::string& str) {
|
std::vector<uint8_t> HexStringToVector(const std::string& str) {
|
||||||
std::vector<uint8_t> vec;
|
std::vector<uint8_t> vec;
|
||||||
CHECK(base::HexStringToBytes(str, &vec));
|
CHECK(base::HexStringToBytes(str, &vec));
|
||||||
|
@ -71,7 +69,7 @@ TEST(RawKeySourceTest, Success) {
|
||||||
raw_key_params.pssh =
|
raw_key_params.pssh =
|
||||||
HexStringToVector(std::string(kPsshBox1Hex) + kPsshBox2Hex);
|
HexStringToVector(std::string(kPsshBox1Hex) + kPsshBox2Hex);
|
||||||
std::unique_ptr<RawKeySource> key_source = RawKeySource::Create(
|
std::unique_ptr<RawKeySource> key_source = RawKeySource::Create(
|
||||||
raw_key_params, kNoProtectionSystemFlag, FOURCC_NULL);
|
raw_key_params, ProtectionSystem::kNone, FOURCC_NULL);
|
||||||
ASSERT_NE(nullptr, key_source);
|
ASSERT_NE(nullptr, key_source);
|
||||||
|
|
||||||
EncryptionKey key_from_drm_label;
|
EncryptionKey key_from_drm_label;
|
||||||
|
@ -109,7 +107,7 @@ TEST(RawKeySourceTest, EmptyPssh) {
|
||||||
raw_key_params.key_map[kAnotherDrmLabel].key = HexStringToVector(kKey2Hex);
|
raw_key_params.key_map[kAnotherDrmLabel].key = HexStringToVector(kKey2Hex);
|
||||||
raw_key_params.iv = HexStringToVector(kIvHex);
|
raw_key_params.iv = HexStringToVector(kIvHex);
|
||||||
std::unique_ptr<RawKeySource> key_source = RawKeySource::Create(
|
std::unique_ptr<RawKeySource> key_source = RawKeySource::Create(
|
||||||
raw_key_params, kNoProtectionSystemFlag, FOURCC_NULL);
|
raw_key_params, ProtectionSystem::kNone, FOURCC_NULL);
|
||||||
ASSERT_NE(nullptr, key_source);
|
ASSERT_NE(nullptr, key_source);
|
||||||
|
|
||||||
EncryptionKey key;
|
EncryptionKey key;
|
||||||
|
@ -130,13 +128,13 @@ TEST(RawKeySourceTest, Failure) {
|
||||||
raw_key_params.pssh = HexStringToVector(kPsshBox1Hex);
|
raw_key_params.pssh = HexStringToVector(kPsshBox1Hex);
|
||||||
raw_key_params.iv = HexStringToVector(kIvHex);
|
raw_key_params.iv = HexStringToVector(kIvHex);
|
||||||
std::unique_ptr<RawKeySource> key_source = RawKeySource::Create(
|
std::unique_ptr<RawKeySource> key_source = RawKeySource::Create(
|
||||||
raw_key_params, kNoProtectionSystemFlag, FOURCC_NULL);
|
raw_key_params, ProtectionSystem::kNone, FOURCC_NULL);
|
||||||
EXPECT_EQ(nullptr, key_source);
|
EXPECT_EQ(nullptr, key_source);
|
||||||
|
|
||||||
// Invalid pssh box.
|
// Invalid pssh box.
|
||||||
raw_key_params.key_map[kEmptyDrmLabel].key_id = HexStringToVector(kKeyIdHex);
|
raw_key_params.key_map[kEmptyDrmLabel].key_id = HexStringToVector(kKeyIdHex);
|
||||||
raw_key_params.pssh = HexStringToVector("000102030405");
|
raw_key_params.pssh = HexStringToVector("000102030405");
|
||||||
key_source = RawKeySource::Create(raw_key_params, kNoProtectionSystemFlag,
|
key_source = RawKeySource::Create(raw_key_params, ProtectionSystem::kNone,
|
||||||
FOURCC_NULL);
|
FOURCC_NULL);
|
||||||
EXPECT_EQ(nullptr, key_source);
|
EXPECT_EQ(nullptr, key_source);
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,16 +84,16 @@ ProtectionSystemSpecificInfo ProtectionSystemInfoFromPsshProto(
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
WidevineKeySource::WidevineKeySource(const std::string& server_url,
|
WidevineKeySource::WidevineKeySource(const std::string& server_url,
|
||||||
int protection_system_flags,
|
ProtectionSystem protection_systems,
|
||||||
FourCC protection_scheme)
|
FourCC protection_scheme)
|
||||||
// Widevine PSSH is fetched from Widevine license server.
|
// Widevine PSSH is fetched from Widevine license server.
|
||||||
: KeySource(protection_system_flags & ~WIDEVINE_PROTECTION_SYSTEM_FLAG,
|
: KeySource(protection_systems & ~ProtectionSystem::kWidevine,
|
||||||
protection_scheme),
|
protection_scheme),
|
||||||
generate_widevine_protection_system_(
|
generate_widevine_protection_system_(
|
||||||
// Generate Widevine protection system if there are no other
|
// Generate Widevine protection system if there are no other
|
||||||
// protection system specified.
|
// protection system specified.
|
||||||
protection_system_flags == NO_PROTECTION_SYSTEM_FLAG ||
|
protection_systems == ProtectionSystem::kNone ||
|
||||||
protection_system_flags & WIDEVINE_PROTECTION_SYSTEM_FLAG),
|
has_flag(protection_systems, ProtectionSystem::kWidevine)),
|
||||||
key_production_thread_("KeyProductionThread",
|
key_production_thread_("KeyProductionThread",
|
||||||
base::Bind(&WidevineKeySource::FetchKeysTask,
|
base::Bind(&WidevineKeySource::FetchKeysTask,
|
||||||
base::Unretained(this))),
|
base::Unretained(this))),
|
||||||
|
|
|
@ -29,13 +29,13 @@ template <class T> class ProducerConsumerQueue;
|
||||||
class WidevineKeySource : public KeySource {
|
class WidevineKeySource : public KeySource {
|
||||||
public:
|
public:
|
||||||
/// @param server_url is the Widevine common encryption server url.
|
/// @param server_url is the Widevine common encryption server url.
|
||||||
/// @param protection_systems_flags is the flags indicating which PSSH should
|
/// @param protection_systems is the enum indicating which PSSH should
|
||||||
/// be included.
|
/// be included.
|
||||||
/// @param protection_scheme is the Protection Scheme to be used for
|
/// @param protection_scheme is the Protection Scheme to be used for
|
||||||
/// encryption. It needs to be signalled in Widevine PSSH. This
|
/// encryption. It needs to be signalled in Widevine PSSH. This
|
||||||
/// argument can be ignored if Widevine PSSH is not generated.
|
/// argument can be ignored if Widevine PSSH is not generated.
|
||||||
WidevineKeySource(const std::string& server_url,
|
WidevineKeySource(const std::string& server_url,
|
||||||
int protection_systems_flags,
|
ProtectionSystem protection_systems,
|
||||||
FourCC protection_scheme);
|
FourCC protection_scheme);
|
||||||
|
|
||||||
~WidevineKeySource() override;
|
~WidevineKeySource() override;
|
||||||
|
|
|
@ -252,13 +252,13 @@ class WidevineKeySourceTest : public Test {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CreateWidevineKeySource() {
|
void CreateWidevineKeySource() {
|
||||||
int protection_system_flags = NO_PROTECTION_SYSTEM_FLAG;
|
ProtectionSystem protection_system = ProtectionSystem::kNone;
|
||||||
if (add_widevine_pssh_)
|
if (add_widevine_pssh_)
|
||||||
protection_system_flags |= WIDEVINE_PROTECTION_SYSTEM_FLAG;
|
protection_system |= ProtectionSystem::kWidevine;
|
||||||
if (add_common_pssh_)
|
if (add_common_pssh_)
|
||||||
protection_system_flags |= COMMON_PROTECTION_SYSTEM_FLAG;
|
protection_system |= ProtectionSystem::kCommon;
|
||||||
widevine_key_source_.reset(new WidevineKeySource(
|
widevine_key_source_.reset(new WidevineKeySource(
|
||||||
kServerUrl, protection_system_flags, protection_scheme_));
|
kServerUrl, protection_system, protection_scheme_));
|
||||||
widevine_key_source_->set_key_fetcher(std::move(mock_key_fetcher_));
|
widevine_key_source_->set_key_fetcher(std::move(mock_key_fetcher_));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,16 +12,53 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include "packager/status.h"
|
||||||
|
|
||||||
namespace shaka {
|
namespace shaka {
|
||||||
|
|
||||||
/// Encryption / decryption key providers.
|
/// Encryption key providers. These provide keys to decrypt the content if the
|
||||||
|
/// source content is encrypted, or used to encrypt the content.
|
||||||
enum class KeyProvider {
|
enum class KeyProvider {
|
||||||
kNone = 0,
|
kNone,
|
||||||
kWidevine = 1,
|
kRawKey,
|
||||||
kPlayReady = 2,
|
kWidevine,
|
||||||
kRawKey = 3,
|
kPlayReady,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/// Protection systems that handle decryption during playback. This affects the
|
||||||
|
/// protection info that is stored in the content. Multiple protection systems
|
||||||
|
/// can be combined using OR.
|
||||||
|
enum class ProtectionSystem : uint16_t {
|
||||||
|
kNone = 0,
|
||||||
|
/// The common key system from EME: https://goo.gl/s8RIhr
|
||||||
|
kCommon = (1 << 0),
|
||||||
|
kWidevine = (1 << 1),
|
||||||
|
kPlayReady = (1 << 2),
|
||||||
|
kFairPlay = (1 << 3),
|
||||||
|
kMarlin = (1 << 4),
|
||||||
|
};
|
||||||
|
|
||||||
|
inline ProtectionSystem operator|(ProtectionSystem a, ProtectionSystem b) {
|
||||||
|
return static_cast<ProtectionSystem>(static_cast<uint16_t>(a) |
|
||||||
|
static_cast<uint16_t>(b));
|
||||||
|
}
|
||||||
|
inline ProtectionSystem& operator|=(ProtectionSystem& a, ProtectionSystem b) {
|
||||||
|
return a = a | b;
|
||||||
|
}
|
||||||
|
inline ProtectionSystem operator&(ProtectionSystem a, ProtectionSystem b) {
|
||||||
|
return static_cast<ProtectionSystem>(static_cast<uint16_t>(a) &
|
||||||
|
static_cast<uint16_t>(b));
|
||||||
|
}
|
||||||
|
inline ProtectionSystem& operator&=(ProtectionSystem& a, ProtectionSystem b) {
|
||||||
|
return a = a & b;
|
||||||
|
}
|
||||||
|
inline ProtectionSystem operator~(ProtectionSystem a) {
|
||||||
|
return static_cast<ProtectionSystem>(~static_cast<uint16_t>(a));
|
||||||
|
}
|
||||||
|
inline bool has_flag(ProtectionSystem value, ProtectionSystem flag) {
|
||||||
|
return (value & flag) == flag;
|
||||||
|
}
|
||||||
|
|
||||||
/// Signer credential for Widevine license server.
|
/// Signer credential for Widevine license server.
|
||||||
struct WidevineSigner {
|
struct WidevineSigner {
|
||||||
/// Name of the signer / content provider.
|
/// Name of the signer / content provider.
|
||||||
|
@ -115,16 +152,8 @@ struct EncryptionParams {
|
||||||
PlayReadyEncryptionParams playready;
|
PlayReadyEncryptionParams playready;
|
||||||
RawKeyParams raw_key;
|
RawKeyParams raw_key;
|
||||||
|
|
||||||
/// Supported protection systems.
|
/// The protection systems to generate, multiple can be OR'd together.
|
||||||
enum class ProtectionSystem {
|
ProtectionSystem protection_systems;
|
||||||
kCommonSystem,
|
|
||||||
kFairPlay,
|
|
||||||
kMarlin,
|
|
||||||
kPlayReady,
|
|
||||||
kWidevine,
|
|
||||||
};
|
|
||||||
/// Protection systems to be generated.
|
|
||||||
std::vector<ProtectionSystem> protection_systems;
|
|
||||||
|
|
||||||
/// Clear lead duration in seconds.
|
/// Clear lead duration in seconds.
|
||||||
double clear_lead_in_seconds = 0;
|
double clear_lead_in_seconds = 0;
|
||||||
|
|
Loading…
Reference in New Issue