From dabaa11b3c451e9b8f2cca7e563bd9ec51edb169 Mon Sep 17 00:00:00 2001 From: Saracen Date: Fri, 11 Oct 2019 23:40:43 +0100 Subject: Fix to make sure the capture buffers are deallocated at shutdown. Silences warnings. --- servers/audio_server.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'servers/audio_server.h') diff --git a/servers/audio_server.h b/servers/audio_server.h index 72bb6faf42..da4b9daf5b 100644 --- a/servers/audio_server.h +++ b/servers/audio_server.h @@ -115,6 +115,8 @@ public: unsigned int get_capture_position() { return capture_position; } unsigned int get_capture_size() { return capture_size; } + void clear_capture_buffer() { capture_buffer.resize(0); } + #ifdef DEBUG_ENABLED uint64_t get_profiling_time() const { return prof_time; } void reset_profiling_time() { prof_time = 0; } -- cgit v1.2.3