blob: d706febf913f8d27ab9e158ba55764b5f12b3f75 [file] [log] [blame]
// Copyright 2018 The Fuchsia 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 <lib/media/codec_impl/codec_adapter.h>
#include <zircon/assert.h>
CodecAdapter::CodecAdapter(std::mutex& lock,
CodecAdapterEvents* codec_adapter_events)
: lock_(lock),
events_(codec_adapter_events),
random_device_(),
not_for_security_prng_(random_device_()) {
ZX_DEBUG_ASSERT(events_);
// nothing else to do here
}
CodecAdapter::~CodecAdapter() {
// nothing to do here
}