// 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/common_pssh_generator.h" #include "packager/media/base/protection_system_ids.h" namespace shaka { namespace media { namespace { const uint8_t kCommonSystemPsshBoxVersion = 1; } // namespace CommonPsshGenerator::CommonPsshGenerator() : PsshGenerator(std::vector(std::begin(kCommonSystemId), std::end(kCommonSystemId)), kCommonSystemPsshBoxVersion) {} CommonPsshGenerator::~CommonPsshGenerator() = default; bool CommonPsshGenerator::SupportMultipleKeys() { return true; } base::Optional> CommonPsshGenerator::GeneratePsshDataFromKeyIdAndKey( const std::vector& key_id, const std::vector& key) const { NOTIMPLEMENTED(); return base::nullopt; } base::Optional> CommonPsshGenerator::GeneratePsshDataFromKeyIds( const std::vector>& key_ids) const { // Intentionally empty PSSH data for RawKey. return std::vector(); } } // namespace media } // namespace shaka