summaryrefslogtreecommitdiff
path: root/src/audio/include/audio_backend.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/audio/include/audio_backend.hpp')
-rw-r--r--src/audio/include/audio_backend.hpp26
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