File: NetStreamInfo.hx

package info (click to toggle)
haxe 1%3A4.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 42,984 kB
  • sloc: ml: 132,401; ansic: 2,403; makefile: 436; java: 365; cs: 336; cpp: 318; python: 315; sh: 75; objc: 64; php: 45; xml: 30; javascript: 11
file content (56 lines) | stat: -rw-r--r-- 3,333 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package flash.net;

extern final class NetStreamInfo {
	@:flash.property var SRTT(get,never) : Float;
	@:flash.property var audioBufferByteLength(get,never) : Float;
	@:flash.property var audioBufferLength(get,never) : Float;
	@:flash.property var audioByteCount(get,never) : Float;
	@:flash.property var audioBytesPerSecond(get,never) : Float;
	@:flash.property var audioLossRate(get,never) : Float;
	@:flash.property var byteCount(get,never) : Float;
	@:flash.property var currentBytesPerSecond(get,never) : Float;
	@:flash.property var dataBufferByteLength(get,never) : Float;
	@:flash.property var dataBufferLength(get,never) : Float;
	@:flash.property var dataByteCount(get,never) : Float;
	@:flash.property var dataBytesPerSecond(get,never) : Float;
	@:flash.property var droppedFrames(get,never) : Float;
	@:flash.property var isLive(get,never) : Bool;
	@:flash.property var maxBytesPerSecond(get,never) : Float;
	@:flash.property var metaData(get,never) : Dynamic;
	@:flash.property var playbackBytesPerSecond(get,never) : Float;
	@:flash.property var resourceName(get,never) : String;
	@:flash.property var uri(get,never) : String;
	@:flash.property var videoBufferByteLength(get,never) : Float;
	@:flash.property var videoBufferLength(get,never) : Float;
	@:flash.property var videoByteCount(get,never) : Float;
	@:flash.property var videoBytesPerSecond(get,never) : Float;
	@:flash.property @:require(flash10_1) var videoLossRate(get,never) : Float;
	@:flash.property var xmpData(get,never) : Dynamic;
	function new(curBPS : Float, byteCount : Float, maxBPS : Float, audioBPS : Float, audioByteCount : Float, videoBPS : Float, videoByteCount : Float, dataBPS : Float, dataByteCount : Float, playbackBPS : Float, droppedFrames : Float, audioBufferByteLength : Float, videoBufferByteLength : Float, dataBufferByteLength : Float, audioBufferLength : Float, videoBufferLength : Float, dataBufferLength : Float, srtt : Float, audioLossRate : Float, videoLossRate : Float, ?metaData : Dynamic, ?xmpData : Dynamic, ?uri : String, ?resourceName : String, isLive : Bool = true) : Void;
	private function get_SRTT() : Float;
	private function get_audioBufferByteLength() : Float;
	private function get_audioBufferLength() : Float;
	private function get_audioByteCount() : Float;
	private function get_audioBytesPerSecond() : Float;
	private function get_audioLossRate() : Float;
	private function get_byteCount() : Float;
	private function get_currentBytesPerSecond() : Float;
	private function get_dataBufferByteLength() : Float;
	private function get_dataBufferLength() : Float;
	private function get_dataByteCount() : Float;
	private function get_dataBytesPerSecond() : Float;
	private function get_droppedFrames() : Float;
	private function get_isLive() : Bool;
	private function get_maxBytesPerSecond() : Float;
	private function get_metaData() : Dynamic;
	private function get_playbackBytesPerSecond() : Float;
	private function get_resourceName() : String;
	private function get_uri() : String;
	private function get_videoBufferByteLength() : Float;
	private function get_videoBufferLength() : Float;
	private function get_videoByteCount() : Float;
	private function get_videoBytesPerSecond() : Float;
	private function get_videoLossRate() : Float;
	private function get_xmpData() : Dynamic;
	function toString() : String;
}