File: StageVideo.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 (26 lines) | stat: -rw-r--r-- 1,351 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
package flash.media;

@:require(flash10_2) extern class StageVideo extends flash.events.EventDispatcher {
	@:flash.property var colorSpaces(get,never) : flash.Vector<String>;
	@:flash.property var depth(get,set) : Int;
	@:flash.property var pan(get,set) : flash.geom.Point;
	@:flash.property var videoHeight(get,never) : Int;
	@:flash.property var videoWidth(get,never) : Int;
	@:flash.property var viewPort(get,set) : flash.geom.Rectangle;
	@:flash.property var zoom(get,set) : flash.geom.Point;
	function new() : Void;
	@:require(flash11_7) function attachAVStream(avStream : AVStream) : Void;
	@:require(flash11_4) function attachCamera(theCamera : Camera) : Void;
	function attachNetStream(netStream : flash.net.NetStream) : Void;
	private function get_colorSpaces() : flash.Vector<String>;
	private function get_depth() : Int;
	private function get_pan() : flash.geom.Point;
	private function get_videoHeight() : Int;
	private function get_videoWidth() : Int;
	private function get_viewPort() : flash.geom.Rectangle;
	private function get_zoom() : flash.geom.Point;
	private function set_depth(value : Int) : Int;
	private function set_pan(value : flash.geom.Point) : flash.geom.Point;
	private function set_viewPort(value : flash.geom.Rectangle) : flash.geom.Rectangle;
	private function set_zoom(value : flash.geom.Point) : flash.geom.Point;
}