JMF video resize goofyness
Im pulling a camara datasource through a firewire connection as a vfw and creating a processor from that datasource.The Videoformat is
VideoFormat("dvsd",new Dimension(720,480),VideoFormat.NOT_SPECIFIED,null,15f)
Then I process it
VideoDevices vd =new VideoDevices();
CaptureDeviceInfo videoCDI = vd.elementAt(0);
DataSource datasource = Manager.createDataSource(videoCDI.getLocator());
Processor proc = Manager.createProcessor(datasource);
I then add it to a JFrame sized at 320x240
Problem is i get video but it looks like this
http://www.weathermaker.us/images/jmfproblem.jpg
Do I need an effect or something please help thanks?

