Increase default serialization buffer size

This commit is contained in:
Robbert van der Helm
2022-09-26 17:05:28 +02:00
parent 8bc61837c9
commit ca218cb596
4 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -343,7 +343,7 @@ class ClapSockets final : public Sockets {
const T& object,
std::optional<std::pair<ClapLogger&, bool>> logging) {
typename T::Response response_object;
thread_local SerializationBuffer<256> audio_thread_buffer{};
thread_local SerializationBuffer<2048> audio_thread_buffer{};
return audio_thread_sockets_.at(object.owner_instance_id)
.callback_.receive_into(object, response_object, logging,