views:

166

answers:

0

i have this code in java, and i can hear the rtsp audio stream in blackberry 9000, but while i can see in server logs that rtsp stream is being transmitted and i can notice phone getting content i hear no sound on BlackBerry 8320.

javax.microedition.media.Player ppp = javax.microedition.media.Manager.createPlayer("rtsp://rtspink;deviceside=true;apn=streamingAPN;");
ppp.addPlayerListener(RadioPlayingScreen.this);
ppp.realize();
VolumeControl vc = (VolumeControl) ppp.getControl("VolumeControl");
if (vc != null) {
   vc.setLevel(100);
}
ppp.prefetch();
ppp.start();

As i said this code works perfect on blackberry 9000, but i hear no sound on blackberry 8320.