Can you have multiple flash.media.Camera instances running at different resolutions? Take the following code for example:
[AS]_camSmall = Camera.getCamera();
_camSmall.setMode(320, 240, 30);
_videoSmall = new Video(_camSmall.width, _camSmall.height);
_videoSmall.attachCamera(_camSmall);
_videoSmall.x = 0;
_videoSmall.y = 0;
this.addChild(_videoSmall);
_camLarge = Camera.getCamera();
_camLarge.setMode(640, 480, 30);
_videoLarge = new Video(_camLarge.width, _camLarge.height);
_videoLarge.attachCamera(_camLarge);
_videoLarge.x = _camSmall.width;
_videoLarge.y = 0;
this.addChild(_videoLarge);[/AS]
Both video feeds are properly displayed, however both of them are displayed at 320x240 instead of the first at 320x240 and the second at 640x480 (note that if I change the first one to 640x480 then they both properly display at 640x480). The problem seems to be only if I try to run the two feeds at two different resolutions. Is this not possible?