blob: b63d9b118ce70a1f527df8eff9a4bdcba71f568f [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 "codec_adapter.h"
#include <lib/fxl/logging.h>
CodecAdapter::CodecAdapter(std::mutex& lock,
CodecAdapterEvents* codec_adapter_events)
: lock_(lock), events_(codec_adapter_events) {
FXL_DCHECK(events_);
// nothing else to do here
}
CodecAdapter::~CodecAdapter() {
// nothing to do here
}