Seems it's hard to completely mute the microphone in flex, so trying to detach the mic from the audio stream.

This commit is contained in:
@deniszgonjanin 2011-03-05 11:27:49 -05:00
parent c8cafe7ccb
commit 415da72005

View File

@ -126,6 +126,7 @@ package org.bigbluebutton.modules.classyaudio.managers
//Save the gain for when the user becomes unmuted //Save the gain for when the user becomes unmuted
this.gain = mic.gain; this.gain = mic.gain;
mic.gain = 0; mic.gain = 0;
outgoingStream.attachAudio(null);
} }
} }
} }
@ -148,6 +149,7 @@ package org.bigbluebutton.modules.classyaudio.managers
mic.setSilenceLevel(0, 20000); mic.setSilenceLevel(0, 20000);
//Load the saved gain. //Load the saved gain.
mic.gain = this.gain; mic.gain = this.gain;
outgoingStream.attachAudio(mic);
} }
} }