blob: 7a334437a1b3714ac4224cb5fc30e664767f3275 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromecast/media/base/decrypt_context_impl.h"
#include <memory>
#include <vector>
#include "base/bind.h"
#include "base/logging.h"
#include "chromecast/public/media/cast_decoder_buffer.h"
namespace chromecast {
namespace media {
namespace {
void BufferDecryptCB(bool* called, bool* ret, bool success) {
DCHECK(called);
DCHECK(ret);
*called = true;
*ret = success;
}
}
DecryptContextImpl::DecryptContextImpl(CastKeySystem key_system)
: key_system_(key_system) {}
DecryptContextImpl::~DecryptContextImpl() {}
CastKeySystem DecryptContextImpl::GetKeySystem() {
return key_system_;
}
bool DecryptContextImpl::Decrypt(CastDecoderBuffer* buffer,
uint8_t* opaque_handle,
size_t data_offset) {
bool called = false;
bool success = false;
DecryptAsync(buffer, opaque_handle, data_offset, false /* clear_output */,
base::BindOnce(&BufferDecryptCB, &called, &success));
CHECK(called) << "Sync Decrypt isn't supported";
return success;
}
void DecryptContextImpl::DecryptAsync(CastDecoderBuffer* buffer,
uint8_t* output_or_handle,
size_t data_offset,
bool clear_output,
DecryptCB decrypt_cb) {
std::move(decrypt_cb).Run(false);
}
DecryptContextImpl::OutputType DecryptContextImpl::GetOutputType() const {
return OutputType::kSecure;
}
} // namespace media
} // namespace chromecast