pjsip

PJSUA2 sip android native app

百般思念 提交于 2019-11-29 11:20:58
Here I'm developing an application using native android in ubuntu 14.04LTS eclipse adt for android. Build, configure, and make everything went perfect. After that I imported pjsua2 sample app into eclipse, I then added native library support but when I run on emulator it throws an error. The error log, 10-25 06:12:09.489: E/AndroidRuntime(1571): FATAL EXCEPTION: main 10-25 06:12:09.489: E/AndroidRuntime(1571): Process: org.pjsip.pjsua2.app, PID: 1571 10-25 06:12:09.489: E/AndroidRuntime(1571): java.lang.UnsatisfiedLinkError: Couldn't load libpjsua2.so from loader dalvik.system.PathClassLoader

ios pjsip - play a sound during sip call

試著忘記壹切 提交于 2019-11-29 05:22:17
When I am on sip call, sometimes I want to send dtmf digits. To do this I created a custom dial pad which when a key is pressed should play a sound of that key, but it is not playing that sound during a sip call (when there is no call, sound is played). These sounds are played with functions from AudioToolbox.h library ( AudioServicesPlaySystemSound(soundID) ). Is there some property that I need to set up in pjsip (pjsua) or in AudioToolbox library to enable a sound be played during a sip call? I know this is possible ( Bria has this, Groundwire also, not sure if they are using pjsip to

PJSUA2 sip android native app

巧了我就是萌 提交于 2019-11-28 04:43:42
问题 Here I'm developing an application using native android in ubuntu 14.04LTS eclipse adt for android. Build, configure, and make everything went perfect. After that I imported pjsua2 sample app into eclipse, I then added native library support but when I run on emulator it throws an error. The error log, 10-25 06:12:09.489: E/AndroidRuntime(1571): FATAL EXCEPTION: main 10-25 06:12:09.489: E/AndroidRuntime(1571): Process: org.pjsip.pjsua2.app, PID: 1571 10-25 06:12:09.489: E/AndroidRuntime(1571)

Android SIP stack - what to use? [closed]

一个人想着一个人 提交于 2019-11-27 11:36:06
I need to create use an SIP stack on Android, which will work with asterix and will give users the possibility to change codecs (i need to implement G729 and some other codecs). I'm new in this field (voice and codec), and every bit of information will be appreciated. In my research across the Internet, I found the following SIP stacks: PJSIP MJSIP JAIN SIP What do you recommend to use for a commercial program? Or you can recommend some other? For my particular situation, it must support the G729 codec. I would recommend also Doubango . It supports G729 as you would like, and there's an

How To Build and Compile PJSIP for Xcode, Using sample code IPJSUA to test?

馋奶兔 提交于 2019-11-27 01:12:32
How to build and compile PJSIP using xCode and run the sample code IPJSUA? Alfred Angkasa First, you need to open the terminal. Terminal can be found at Applications->Utilities->terminal. After you open the terminal, make sure you point to the desktop to make it easier to get the data folder. just type : cd Desktop Congrats, you already at your desktop. Now continue to type this. svn co http://svn.pjsip.org/repos/pjproject/trunk pjproject That code means you download the pjproject from the website to your desktop. After you finish download the PJSIP, you need to add a config_site.h. Honestly,

How to use pjsip on android device in order to have G.729 codec functionality

时光怂恿深爱的人放手 提交于 2019-11-26 21:04:40
问题 I want to use G.729 audio codec on my android application. I have did a lot research on this and came to know that pjsip is most promising solution for this. But I have not much idea about all this. can someone provide me complete steps for using pjsip in existing android application and how can i include support of G729 codec via pjsip . Any help will be appreciated. EDIT : Here is my android.mk file. I want to know that,have i did this right? and how to use those C functions in my java code

Android SIP stack - what to use? [closed]

拥有回忆 提交于 2019-11-26 15:38:27
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I need to create use an SIP stack on Android, which will work with asterix and will give users the possibility to change codecs (i need to implement G729 and some other codecs). I'm new in this field (voice and codec), and every bit of information will be appreciated. In my research across the Internet, I found

How To Build and Compile PJSIP for Xcode, Using sample code IPJSUA to test?

这一生的挚爱 提交于 2019-11-26 09:36:56
问题 How to build and compile PJSIP using xCode and run the sample code IPJSUA? 回答1: First, you need to open the terminal. Terminal can be found at Applications->Utilities->terminal. After you open the terminal, make sure you point to the desktop to make it easier to get the data folder. just type : cd Desktop Congrats, you already at your desktop. Now continue to type this. svn co http://svn.pjsip.org/repos/pjproject/trunk pjproject That code means you download the pjproject from the website to

Cannot load library: reloc_library[1285]: cannot locate 'rand'

陌路散爱 提交于 2019-11-26 08:36:34
I'm trying to use PJSIP library for my Android application. I built pjsua sample application according to this manual: https://trac.pjsip.org/repos/wiki/Getting-Started/Android But when sample application is launching, exception triggers: 12-06 15:03:58.043: D/dalvikvm(628): Trying to load lib /data/data/org.pjsip.pjsua2.app/lib/libpjsua2.so 0x4129d980 12-06 15:03:58.064: W/dalvikvm(628): Exception Ljava/lang/UnsatisfiedLinkError; thrown while initializing Lorg/pjsip/pjsua2/app/MyApp; 12-06 15:03:58.064: D/AndroidRuntime(628): Shutting down VM 12-06 15:03:58.064: W/dalvikvm(628): threadid=1:

Cannot load library: reloc_library[1285]: cannot locate 'rand'

☆樱花仙子☆ 提交于 2019-11-26 03:26:58
问题 I\'m trying to use PJSIP library for my Android application. I built pjsua sample application according to this manual: https://trac.pjsip.org/repos/wiki/Getting-Started/Android But when sample application is launching, exception triggers: 12-06 15:03:58.043: D/dalvikvm(628): Trying to load lib /data/data/org.pjsip.pjsua2.app/lib/libpjsua2.so 0x4129d980 12-06 15:03:58.064: W/dalvikvm(628): Exception Ljava/lang/UnsatisfiedLinkError; thrown while initializing Lorg/pjsip/pjsua2/app/MyApp; 12-06