blob: 945b7cee5a3319032f367c1bc0ed2df64df3befd [file] [log] [blame]
// Copyright 2021 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;
/// For an overview of the DAI protocols see
/// [Digital Audio Interface](//docs/concepts/drivers/driver_architectures/audio_drivers/audio_dai.md)
protocol DaiConnector {
/// This connects to a DAI protocol server.
Connect(resource struct {
dai_protocol server_end:Dai;
});
};