File: AVABRParameters.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 (20 lines) | stat: -rw-r--r-- 932 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
package flash.media;

extern class AVABRParameters {
	@:flash.property var maxBitsPerSecond(get,set) : Int;
	@:flash.property var minBitsPerSecond(get,set) : Int;
	@:flash.property var policy(get,set) : String;
	@:flash.property var startBitsPerSecond(get,set) : Int;
	function new(init_policy : String, init_startBitsPerSecond : UInt, init_minBitsPerSecond : UInt, init_maxBitsPerSecond : UInt) : Void;
	private function get_maxBitsPerSecond() : Int;
	private function get_minBitsPerSecond() : Int;
	private function get_policy() : String;
	private function get_startBitsPerSecond() : Int;
	private function set_maxBitsPerSecond(value : Int) : Int;
	private function set_minBitsPerSecond(value : Int) : Int;
	private function set_policy(value : String) : String;
	private function set_startBitsPerSecond(value : Int) : Int;
	static final AGGRESSIVE : String;
	static final CONSERVATIVE : String;
	static final MODERATE : String;
}