File: AVPeriodInfo.hx

package info (click to toggle)
haxe 1%3A4.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 40,556 kB
  • sloc: ml: 125,171; ansic: 2,408; makefile: 436; java: 362; cs: 323; cpp: 318; python: 316; sh: 75; objc: 64; php: 39; xml: 30; javascript: 11
file content (25 lines) | stat: -rw-r--r-- 1,432 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
}