While playing around with OL microphone settings, I was wondering why
<method name="_makeDevice"><![CDATA[
var dev = super._makeDevice();
dev.codec = 'Speex';
dev.setEncodeQuality(6);
dev.setFramesPerPacket(1);
dev.setRate(22);
dev.soundTransform = this._sound;
dev.setUseEchoSuppression(true);
]]>
>/method>
will break compilation. No errors, but a broken swf? Any of the following
will make problems:
dev.setEncodeQuality(6);
dev.setFramesPerPacket(1);
dev.setRate(22);
Removing them all together returns to normal compile.
Any ideas?
Michaela