AVTrackInfo.hx 1.1 KB

123456789101112131415161718192021222324
  1. package flash.media;
  2. extern class AVTrackInfo {
  3. @:flash.property var activity(get,never) : Bool;
  4. @:flash.property var autoSelect(get,never) : Bool;
  5. @:flash.property var dataTrackInfoServiceType(get,never) : String;
  6. @:flash.property var defaultTrack(get,never) : Bool;
  7. @:flash.property var description(get,never) : String;
  8. @:flash.property var forced(get,never) : Bool;
  9. @:flash.property var language(get,never) : String;
  10. @:flash.property var pid(get,never) : Int;
  11. function new(init_description : String, init_language : String, init_defaultTrack : Bool, init_autoSelect : Bool, init_forced : Bool, init_activity : Bool, init_dataTrackInfoServiceType : String, init_pid : Int) : Void;
  12. private function get_activity() : Bool;
  13. private function get_autoSelect() : Bool;
  14. private function get_dataTrackInfoServiceType() : String;
  15. private function get_defaultTrack() : Bool;
  16. private function get_description() : String;
  17. private function get_forced() : Bool;
  18. private function get_language() : String;
  19. private function get_pid() : Int;
  20. static final DTI_608_CAPTIONS : String;
  21. static final DTI_708_CAPTIONS : String;
  22. static final DTI_WEBVTT_CAPTIONS : String;
  23. }