blob: 63f4ad865f696181695aca1f15dcb02d4d896cb6 [file] [log] [blame]
// Copyright 2016 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 "src/media/audio/audio_core/audio_output.h"
#include "src/lib/fxl/logging.h"
#include "src/lib/fxl/time/time_delta.h"
#include "src/media/audio/audio_core/audio_device_manager.h"
#include "src/media/audio/audio_core/audio_link.h"
namespace media::audio {
AudioOutput::AudioOutput(AudioDeviceManager* manager)
: AudioDevice(Type::Output, manager) {}
} // namespace media::audio