Unverified Commit 94cb8cd6 by Rémi Verschelde Committed by GitHub

Merge pull request #32760 from SaracenOne/capture_buffer_cleanup

Fix to make sure the capture buffers are deallocated at shutdown.
parents a0c10ed4 dabaa11b
......@@ -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++) {
......
......@@ -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; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment