2017-09-12 19:22:39 +00:00
|
|
|
// Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
|
|
|
|
#include "packager/media/base/raw_key_pssh_generator.h"
|
|
|
|
|
|
|
|
#include "packager/media/base/raw_key_source.h"
|
|
|
|
|
|
|
|
namespace shaka {
|
|
|
|
namespace media {
|
2018-08-07 20:47:53 +00:00
|
|
|
namespace {
|
|
|
|
const uint8_t kCommonSystemPsshBoxVersion = 1;
|
|
|
|
} // namespace
|
2017-09-12 19:22:39 +00:00
|
|
|
|
|
|
|
RawKeyPsshGenerator::RawKeyPsshGenerator()
|
2018-08-07 20:47:53 +00:00
|
|
|
: PsshGenerator(std::vector<uint8_t>(std::begin(kCommonSystemId),
|
|
|
|
std::end(kCommonSystemId)),
|
|
|
|
kCommonSystemPsshBoxVersion) {}
|
2017-09-12 19:22:39 +00:00
|
|
|
|
|
|
|
RawKeyPsshGenerator::~RawKeyPsshGenerator() {}
|
|
|
|
|
|
|
|
bool RawKeyPsshGenerator::SupportMultipleKeys() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
base::Optional<std::vector<uint8_t>>
|
|
|
|
RawKeyPsshGenerator::GeneratePsshDataFromKeyIdAndKey(
|
|
|
|
const std::vector<uint8_t>& key_id,
|
|
|
|
const std::vector<uint8_t>& key) const {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return base::nullopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
base::Optional<std::vector<uint8_t>>
|
|
|
|
RawKeyPsshGenerator::GeneratePsshDataFromKeyIds(
|
|
|
|
const std::vector<std::vector<uint8_t>>& key_ids) const {
|
|
|
|
// Intentionally empty PSSH data for RawKey.
|
|
|
|
return std::vector<uint8_t>();
|
|
|
|
}
|
|
|
|
} // namespace media
|
|
|
|
} // namespace shaka
|