forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
18
Kha/Tools/linux_arm64/std/flash/media/Video.hx
Normal file
18
Kha/Tools/linux_arm64/std/flash/media/Video.hx
Normal file
@ -0,0 +1,18 @@
|
||||
package flash.media;
|
||||
|
||||
extern class Video extends flash.display.DisplayObject {
|
||||
@:flash.property var deblocking(get,set) : Int;
|
||||
@:flash.property var smoothing(get,set) : Bool;
|
||||
@:flash.property var videoHeight(get,never) : Int;
|
||||
@:flash.property var videoWidth(get,never) : Int;
|
||||
function new(width : Int = 320, height : Int = 240) : Void;
|
||||
function attachCamera(camera : Camera) : Void;
|
||||
function attachNetStream(netStream : flash.net.NetStream) : Void;
|
||||
function clear() : Void;
|
||||
private function get_deblocking() : Int;
|
||||
private function get_smoothing() : Bool;
|
||||
private function get_videoHeight() : Int;
|
||||
private function get_videoWidth() : Int;
|
||||
private function set_deblocking(value : Int) : Int;
|
||||
private function set_smoothing(value : Bool) : Bool;
|
||||
}
|
Reference in New Issue
Block a user