diff options
| author | jacqueline <me@jacqueline.id.au> | 2022-11-22 17:05:02 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2022-11-22 17:05:02 +1100 |
| commit | 9176ef187227ffb56c249c5f321cd1bf50d4cfcc (patch) | |
| tree | a846c8fc4e5788e97d6fca43c2807c4bf0ae0214 /src/audio/include/audio_decoder.hpp | |
| parent | 9f8cfaa7a8abd885785830e03d7c417e856b8a22 (diff) | |
| download | tangara-fw-9176ef187227ffb56c249c5f321cd1bf50d4cfcc.tar.gz | |
Add cbor wrapper, and chunk streaming util
Diffstat (limited to 'src/audio/include/audio_decoder.hpp')
| -rw-r--r-- | src/audio/include/audio_decoder.hpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/audio/include/audio_decoder.hpp b/src/audio/include/audio_decoder.hpp index 083bd564..2ee43fb7 100644 --- a/src/audio/include/audio_decoder.hpp +++ b/src/audio/include/audio_decoder.hpp @@ -12,13 +12,6 @@ class AudioDecoder : public IAudioElement { AudioDecoder(); ~AudioDecoder(); - auto Pause() -> void; - auto IsPaused() -> bool; - - auto Resume() -> void; - - auto SetInputCommandQueue(QueueHandle_t) -> void; - auto SetOutputCommandQueue(QueueHandle_t) -> void; auto SetInputBuffer(StreamBufferHandle_t) -> void; auto SetOutputBuffer(StreamBufferHandle_t) -> void; @@ -27,8 +20,6 @@ class AudioDecoder : public IAudioElement { uint8_t *working_buffer_; - QueueHandle_t input_queue_; - QueueHandle_t output_queue_; StreamBufferHandle_t input_buffer_; StreamBufferHandle_t output_buffer_; }; |
