AVPeriodInfo.hx 1.4 KB

12345678910111213141516171819202122232425
  1. package flash.media;
  2. extern class AVPeriodInfo {
  3. @:flash.property var duration(get,never) : Float;
  4. @:flash.property var firstCuePointIndex(get,never) : Int;
  5. @:flash.property var firstSubscribedTagIndex(get,never) : Int;
  6. @:flash.property var lastCuePointIndex(get,never) : Int;
  7. @:flash.property var lastSubscribedTagIndex(get,never) : Int;
  8. @:flash.property var localStartTime(get,never) : Float;
  9. @:flash.property var supportsTrickPlay(get,never) : Bool;
  10. @:flash.property var targetDuration(get,never) : Float;
  11. @:flash.property var userData(get,never) : Int;
  12. @:flash.property var virtualStartTime(get,never) : Float;
  13. function new(init_localStartTime : Float, init_virtualStartTime : Float, init_duration : Float, init_firstCuePointIndex : Int, init_lastCuePointIndex : Int, init_firstSubscribedTagIndex : Int, init_lastSubscribedTagIndex : Int, init_userData : Int, init_supportsTrickPlay : Bool, init_targetDuration : Float) : Void;
  14. private function get_duration() : Float;
  15. private function get_firstCuePointIndex() : Int;
  16. private function get_firstSubscribedTagIndex() : Int;
  17. private function get_lastCuePointIndex() : Int;
  18. private function get_lastSubscribedTagIndex() : Int;
  19. private function get_localStartTime() : Float;
  20. private function get_supportsTrickPlay() : Bool;
  21. private function get_targetDuration() : Float;
  22. private function get_userData() : Int;
  23. private function get_virtualStartTime() : Float;
  24. }