Merge branch '090-new-videodock' into mconf-live0.6.2

This commit is contained in:
Felipe Cecagno 2015-03-04 11:57:52 -03:00
commit 43d78b656b

View File

@ -23,6 +23,7 @@ package org.bigbluebutton.modules.videoconf.views
import org.bigbluebutton.modules.videoconf.events.StopBroadcastEvent;
public class UserVideo extends UserGraphic {
private static const LOG:String = "Videoconf::UserVideo - ";
protected var _camIndex:int = -1;
@ -188,7 +189,11 @@ package org.bigbluebutton.modules.videoconf.views
}
private function onAsyncError(e:AsyncErrorEvent):void{
trace(ObjectUtil.toString(e));
trace(LOG + e.text);
}
private function onMetaData(info:Object):void {
trace(LOG + " width=" + info.width + " height=" + info.height);
}
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {