GUACAMOLE-25: Increase audio recording buffer to 2048 bytes.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/efa6bf3c Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/efa6bf3c Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/efa6bf3c Branch: refs/heads/master Commit: efa6bf3c72000af95ae91a939442ab40205aa779 Parents: c137312 Author: Michael Jumper <[email protected]> Authored: Mon May 2 01:48:16 2016 -0700 Committer: Michael Jumper <[email protected]> Committed: Mon May 23 15:06:46 2016 -0700 ---------------------------------------------------------------------- guacamole-common-js/src/main/webapp/modules/AudioRecorder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/efa6bf3c/guacamole-common-js/src/main/webapp/modules/AudioRecorder.js ---------------------------------------------------------------------- diff --git a/guacamole-common-js/src/main/webapp/modules/AudioRecorder.js b/guacamole-common-js/src/main/webapp/modules/AudioRecorder.js index 1f7c83d..a75dbe1 100644 --- a/guacamole-common-js/src/main/webapp/modules/AudioRecorder.js +++ b/guacamole-common-js/src/main/webapp/modules/AudioRecorder.js @@ -124,7 +124,7 @@ Guacamole.RawAudioRecorder = function RawAudioRecorder(stream, mimetype) { * @constant * @type {Number} */ - var BUFFER_SIZE = 512; + var BUFFER_SIZE = 2048; /** * The window size to use when applying Lanczos interpolation, commonly
