diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-08-16 10:57:55 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-08-16 10:57:55 +1000 |
| commit | 4e27de21e49900963ffa61cc9c0a676bb028f992 (patch) | |
| tree | 8123994d33bc2ff8b5d58a38155b53e401669ae8 /src/audio/include/audio_backend.hpp | |
| parent | 62dce8d9fcc139ca6dc2041c86723d19faab304f (diff) | |
| download | tangara-fw-4e27de21e49900963ffa61cc9c0a676bb028f992.tar.gz | |
clean up a bunch of obselete audio code
Diffstat (limited to 'src/audio/include/audio_backend.hpp')
| -rw-r--r-- | src/audio/include/audio_backend.hpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/audio/include/audio_backend.hpp b/src/audio/include/audio_backend.hpp deleted file mode 100644 index 86d90d25..00000000 --- a/src/audio/include/audio_backend.hpp +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright 2023 jacqueline <me@jacqueline.id.au> - * - * SPDX-License-Identifier: GPL-3.0-only - */ - -#pragma once - -#include <cstdint> -namespace drivers { - -class IAudioBackend { - public: - virtual ~IAudioBackend() {} - - enum SampleRate {}; - enum BitDepth {}; - - virtual auto Configure(SampleRate sample_rate, BitDepth bit_depth) - -> bool = 0; - virtual auto WritePcmData(uint8_t* data, size_t length) -> bool = 0; - - virtual auto SetVolume(uint8_t percent) -> void = 0; -}; - -} // namespace drivers |
