LNXSDK/Kha/Tools/linux_x64/std/flash/media/AVPeriodInfo.hx
2025-01-22 16:18:30 +01:00

26 lines
1.4 KiB
Haxe

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;
}