From b6e13465a7ea17ada126b3376b4e07ede35726a9 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sun, 3 Apr 2016 14:47:54 -0700 Subject: [PATCH] GUAC-1511: Reduce size of buffer. --- guacamole-common-js/src/main/webapp/modules/AudioRecorder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole-common-js/src/main/webapp/modules/AudioRecorder.js b/guacamole-common-js/src/main/webapp/modules/AudioRecorder.js index ac7580a5b..65758822d 100644 --- a/guacamole-common-js/src/main/webapp/modules/AudioRecorder.js +++ b/guacamole-common-js/src/main/webapp/modules/AudioRecorder.js @@ -179,7 +179,7 @@ Guacamole.RawAudioRecorder = function RawAudioRecorder(stream, mimetype) { * @private * @type {Number} */ - var bufferSize = format.bytesPerSample * 4096; + var bufferSize = format.bytesPerSample * 256; /** * Converts the given AudioBuffer into an audio packet, ready for streaming