Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 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;
}