AVStreamSwitchEvent.hx 828 B

123456789101112131415161718
  1. package flash.events;
  2. extern class AVStreamSwitchEvent extends Event {
  3. @:flash.property var bitrate(get,never) : Int;
  4. @:flash.property var description(get,never) : String;
  5. @:flash.property var switchType(get,never) : Int;
  6. @:flash.property var time(get,never) : Float;
  7. @:flash.property var userData(get,never) : Int;
  8. function new(?type : String, bubbles : Bool = false, cancelable : Bool = false, time : Float = 0, switchType : Int = 0, bitrate : Int = 0, ?description : String, userData : Int = 0) : Void;
  9. private function get_bitrate() : Int;
  10. private function get_description() : String;
  11. private function get_switchType() : Int;
  12. private function get_time() : Float;
  13. private function get_userData() : Int;
  14. static final ABR_SWITCH : Int;
  15. static final AV_STREAM_SWITCH : String;
  16. static final PERIOD_SWITCH : Int;
  17. }