MicrophoneEnhancedOptions.hx 932 B

1234567891011121314151617181920
  1. package flash.media;
  2. @:require(flash10_2) extern final class MicrophoneEnhancedOptions {
  3. @:flash.property var autoGain(get,set) : Bool;
  4. @:flash.property var echoPath(get,set) : Int;
  5. @:flash.property var isVoiceDetected(get,set) : Int;
  6. @:flash.property var mode(get,set) : MicrophoneEnhancedMode;
  7. @:flash.property var nonLinearProcessing(get,set) : Bool;
  8. function new() : Void;
  9. private function get_autoGain() : Bool;
  10. private function get_echoPath() : Int;
  11. private function get_isVoiceDetected() : Int;
  12. private function get_mode() : MicrophoneEnhancedMode;
  13. private function get_nonLinearProcessing() : Bool;
  14. private function set_autoGain(value : Bool) : Bool;
  15. private function set_echoPath(value : Int) : Int;
  16. private function set_isVoiceDetected(value : Int) : Int;
  17. private function set_mode(value : MicrophoneEnhancedMode) : MicrophoneEnhancedMode;
  18. private function set_nonLinearProcessing(value : Bool) : Bool;
  19. }