blob: 7c894694e4a4aae7c22f026a6c02185ecc4728a4 [file] [log] [blame]
// Copyright 2023 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.
library fuchsia.hardware.audio;
@available(added=14)
type DeviceType = flexible enum {
/// Device supports the fuchsia.hardware.audio/StreamConfig protocol.
STREAM_CONFIG = 1;
/// Device supports the fuchsia.hardware.audio/Dai protocol.
DAI = 2;
/// Device supports the fuchsia.hardware.audio/Codec protocol.
CODEC = 3;
/// Device supports the fuchsia.hardware.audio/Composite protocol.
COMPOSITE = 4;
};