Fix to make sure the capture buffers are deallocated at shutdown. Silences warnings.

This commit is contained in:
Saracen 2019-10-11 23:40:43 +01:00
parent 3cc94b2c0b
commit dabaa11b3c
2 changed files with 3 additions and 0 deletions

View file

@ -1079,6 +1079,7 @@ void AudioServer::finish() {
for (int i = 0; i < AudioDriverManager::get_driver_count(); i++) {
AudioDriverManager::get_driver(i)->finish();
AudioDriverManager::get_driver(i)->clear_capture_buffer();
}
for (int i = 0; i < buses.size(); i++) {

View file

@ -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; }