| // 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. | |
| #pragma once | |
| namespace audio { | |
| namespace intel_hda { | |
| // Represents a pipeline backing an audio stream. | |
| struct DspPipeline { | |
| uint8_t pl_source; | |
| uint8_t pl_sink; | |
| }; | |
| } // namespace intel_hda | |
| } // namespace audio |