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?

[739 byte] By [karlmarxxxa] at [2007-11-27 11:45:06]
# 1

I suppose you did not set correct colorspace such as YUV, RGB15, RGB16, RGB24, etc. (VideoFormat.NOT_SPECIFIED ?)

plika at 2007-7-29 17:59:51 > top of Java-index,Security,Cryptography...
# 2

no I dont think thats it because I used CaptureDeviceManager.getDeviceList(null); to get the CaptureDeviceInfo.Plus it looks fine at full resolution its only when it gets smaller that this happens.

karlmarxxxa at 2007-7-29 17:59:51 > top of Java-index,Security,Cryptography...