< Previous by Date Date Index Next by Date >
< Previous in Thread Thread Index Next in Thread >

Re: [reSIProcate] which RTP stacks is best with reSiprocate?


The jrtplib and the associated jvoiplib look awesome. Here's a sample
program using jvoiplib (which depends on jrtplib).  I don't know how
good the jitter buffer is but it does talk about it.

#include "jvoipsession.h"
#include "jvoiprtptransmission.h"
#include <stdio.h>
#include <arpa/inet.h>
#include <netinet/in.h>

int main(void)
{
        JVOIPSession session;
        JVOIPSessionParams params;
        JVOIPRTPTransmissionParams rtpparams;
        unsigned long ip;

        ip = inet_addr("127.0.0.1");
        ip = ntohl(ip);

        rtpparams.SetAcceptOwnPackets(true);
        params.SetTransmissionParams(&rtpparams);

        session.Create(params);
        session.AddDestination(ip,5000);
        fgetc(stdin);

        
        // IMPORTANT: The Destroy method MUST be called. Consult the manual...
        session.Destroy();

        return 0;
}




On 7/13/05, stensil <stensil@xxxxxxx> wrote:
> I have used JRTPLib with reSIProcate. It's simple and works fine :)
> It can be found at http://lumumba.luc.ac.be/jori/jrtplib/jrtplib.html
> 
> DD> I have used resip and ccrtp together quite well.  ccrtp is from gnu and
> DD> relies on the gnu common c++ (commonc++) library.  They both can be
> DD> found at ftp://ftp.gnu.org/gnu/
> DD>
> DD> -----Original Message-----
> DD> From: Scott Godin [mailto:slgodin@xxxxxxxxxxxx]
> DD> Sent: Wednesday, July 13, 2005 9:27 AM
> DD> To: 'ALI'; resiprocate-devel@xxxxxxxxxxxxxxxxxxx
> DD> Subject: RE: [reSIProcate] which RTP stacks is best with reSiprocate?
> DD>
> DD>
> DD> Check out: http://www.pernau.at/kd/voip/bookmarks-sip-rtp-ua.html
> DD>
> DD> I don't really have any experience with these stacks - in order to
> DD> recommend one though.  :(
> 
> _______________________________________________
> resiprocate-devel mailing list
> resiprocate-devel@xxxxxxxxxxxxxxxxxxx
> https://list.sipfoundry.org/mailman/listinfo/resiprocate-devel
>