This commit is contained in:
Dante
2026-05-22 11:48:42 -07:00
parent 0a5075319f
commit 05f197c291
2665 changed files with 198448 additions and 1 deletions

View 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;
}