linphone-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [Linphone-developers] linphone blackberry error 523 on device


From: Antonio Grillo
Subject: RE: [Linphone-developers] linphone blackberry error 523 on device
Date: Thu, 07 Apr 2011 16:30:16 +0200
User-agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; it; rv:1.9.2.15) Gecko/20110303 Lightning/1.0b2 Thunderbird/3.1.9

Hi Aleksei,

I tried to implement the patch that you suggested for avoiding the 523 App Error on blackberry.

Unfortunately such patch does not work for me:

1) I've encapsulated the send method in a thread [Class AudioStreamImpl.java]

Thread l1TmpThread = new Thread(new Runnable(){
            public void run() {
                mSendStream=new SendStream(mSession);
                mSendStream.start();
            }
        });
l1TmpThread.start();

2) I've set a 30 ms sleep time when an RTPException occurs [Class SendStream.java]
try {
         mSession.sendPacket(packet, mTs);
} catch (RtpException e) {
         Thread.sleep(30);
          sLogger.disableLogLevel(1);
}

3) I've disabled all the log features [Class Logger.java]
public void log(int level, String msg, Throwable e){
    //No Operations
}

maybe I'm forgotting something??

Thanks in advance for your attentions

Antonio



reply via email to

[Prev in Thread] Current Thread [Next in Thread]