This commit is contained in:
Dante
2026-05-21 20:15:16 -07:00
parent fe8bd1e307
commit add4d4cc87
2664 changed files with 198448 additions and 0 deletions

View File

@ -0,0 +1,25 @@
package flash.media;
extern class AVPeriodInfo {
@:flash.property var duration(get,never) : Float;
@:flash.property var firstCuePointIndex(get,never) : Int;
@:flash.property var firstSubscribedTagIndex(get,never) : Int;
@:flash.property var lastCuePointIndex(get,never) : Int;
@:flash.property var lastSubscribedTagIndex(get,never) : Int;
@:flash.property var localStartTime(get,never) : Float;
@:flash.property var supportsTrickPlay(get,never) : Bool;
@:flash.property var targetDuration(get,never) : Float;
@:flash.property var userData(get,never) : Int;
@:flash.property var virtualStartTime(get,never) : Float;
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;
private function get_duration() : Float;
private function get_firstCuePointIndex() : Int;
private function get_firstSubscribedTagIndex() : Int;
private function get_lastCuePointIndex() : Int;
private function get_lastSubscribedTagIndex() : Int;
private function get_localStartTime() : Float;
private function get_supportsTrickPlay() : Bool;
private function get_targetDuration() : Float;
private function get_userData() : Int;
private function get_virtualStartTime() : Float;
}