i'm simply playing a video file the normal way:
var nc = new NetConnection();
nc.connect(null);
ns = new NetStream(nc);
var vid = new Video();
this.addChild(vid);
vid.attachNetStream(ns);
ns.play(videofile);
My flv file is actually 600x678, but shows up scaled down on the stage, and tracing the width and height I get 320x240. I'm not setting this anywhere. Why is it getting scaled down?