Video stream received, but no image is there

Hello,

I am developing an application that sends a video stream over the internet, receives it in the other side and display the image.

The stream is received, and I can get the VisualComponent and add it to my panel. The background of the visual component is red, and I see it, but there is no image on it.

I mean, I get the stream, the visual component... but it has not any image on it!!!

Does anybody know what can cause this strange behaviour?

if ((vcRemote = p.getVisualComponent()) != null) {

vcRemote.setBackground(Color.RED);

add(vcRemote, BorderLayout.CENTER);

System.out.println("State of the player " + p.getState() + " =? " + Player.Started);

if (p.getState() != Player.Started)

p.start();

} else {

System.out.println("This is really weird: " + p);

}

[848 byte] By [lagarazoa] at [2007-10-3 3:51:27]
# 1
Anybody can help, please?Is there some incompatibility issue with JMF?
lagarazoa at 2007-7-14 21:49:05 > top of Java-index,Security,Cryptography...
# 2
I think that the problem may be a ResourceUnavailableEvent.When does this event happens in receiving RTP? Is it needed some kind of coded presintalled in the system?
lagarazoa at 2007-7-14 21:49:05 > top of Java-index,Security,Cryptography...
# 3
I have seen this problem on Windows2000.For Windows2000 I re-formated and the problem went away.Theoretically, the problem is missing codec/video display codec, that is why some get a all red or green or all blue screen.
1964mercurya at 2007-7-14 21:49:05 > top of Java-index,Security,Cryptography...
# 4
Then if I install the windows coded for this video format, the problem should be solved?Thanks!!
lagarazoa at 2007-7-14 21:49:05 > top of Java-index,Security,Cryptography...