From 9176ef187227ffb56c249c5f321cd1bf50d4cfcc Mon Sep 17 00:00:00 2001 From: jacqueline Date: Tue, 22 Nov 2022 17:05:02 +1100 Subject: Add cbor wrapper, and chunk streaming util --- src/audio/include/audio_decoder.hpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/audio/include/audio_decoder.hpp') 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_; }; -- cgit v1.2.3