Questions tagged [libjingle]

libjingle is a collection of open-source C++ code and sample applications that enables you to build a peer-to-peer application.

Googles Jingle implementation is a C++ library for the jingle extension of XMPP. It enabled you to build jingle enabled applications, where jingle can be used for controlling/signaling stream interactions, typically multimedia streams like VoIP or videoconferencing.

142 questions
3
votes
2 answers

What are the incompatibilities of libjingle and XEP-0166 et al?

libjingle's developer guide quite vaguely mentions incompatibilities between libjingle's implementation of Jingle and XEP-0166's specification. It also mentions it is incompatible with XEP-0167, XEP-0176 and XEP-0177. It never goes into detail what…
Ivan Vučica
  • 9,529
  • 9
  • 60
  • 111
3
votes
1 answer

What is the procedure to build the libjingle_peerconnection_so.so library for different platform?

I'm getting the webrtc android(binary) artefacts from link. I made some changes in webrtc source code. Now I want to build my own libjingle_peerconnection_so.so binary. What is the procedure to build the binary files for different platform. Please…
Ayyappan
  • 1,275
  • 1
  • 11
  • 25
3
votes
2 answers

Minimal WebRTC for native application without audio and video

I am interested in designing a WebRTC/libjingle that uses DataChannels but does not use the audio and video capability. The audio and video capability adds a lot of dependencies that are large and difficult to cross compile. Is there a minimal…
John
  • 791
  • 1
  • 6
  • 22
3
votes
2 answers

Problems compiling libjingle/gtk+-2.0 for Mac OS X

I'm trying to compile libjingle on Mac OSX Snow Leopard. The INSTALL file said to './configure', 'make' and 'make install', as usual. But make fails for me. Initially it gave some messages indicating that I didn't have pkg-config installed (I guess…
mindthief
  • 12,755
  • 14
  • 57
  • 61
3
votes
1 answer

Failed to set remote offer sdp: Called with SDP without SDES crypto

Trying to use Android application for WebRTC Based on APpRtcDemo. When connecting from Chrome 34 Everythings works fine, But When I use Chrome 35 for video call f got this error. onSetFailure: Failed to set remote offer sdp: Called with SDP…
pahan40
  • 139
  • 2
  • 10
3
votes
1 answer

Methods for p2p transfer behind firewalls and NATs on multiple device types

I'm building a system that relies on a central server to send the IP address and port of the first user (on mobile or desktop app) to a second user (on mobile or desktop app). The second user establishes a P2P encrypted connection with the first…
alyx
  • 2,593
  • 6
  • 39
  • 64
3
votes
2 answers

64-bit libjingle failing to parse login XML with expat error: ERROR_INVALID_TOKEN

Only upon attempting to run my login code under 64-bit, am I getting a failure to login to talk.google.com for my initial tests. 32-bit works fine. Upon enabling logging macros and siginput logging, I can see that the XML it's failing on is …
Zack
  • 1,181
  • 2
  • 11
  • 26
3
votes
1 answer

libjingle googletalk client

I've a google talk client based on libjingle and called from android, every time I try to login this is all I get RECV <<<<<<<<<<<<<<<<<<<<<<<<< : Tue Dec 4 21:38:02 2012
james
  • 31
  • 2
3
votes
2 answers

libjingle compiling error

When compiling libjingle, on running the 'hammer.sh' on the swtoolkit, i get the following import error, root@den-pc:~/tejesh/libjingle-0.6.14/talk# sh ../../swtoolkit/hammer.sh Traceback (most recent call last): File "../../swtoolkit/wrapper.py",…
anon
2
votes
2 answers

XMPP / Jingle Voice Library for Android

I'm looking for a Jingle library (or app code) that exists on android and supports Voice for Gtalk or any xmpp in general. I don't really want to write JNI for libjingle. I would prefer something in java /android.
Taranfx
  • 10,361
  • 17
  • 77
  • 95
2
votes
1 answer

XMPP and libjingle connection using IP address

I am developing a P2P application where UserA knows UserB's IP address and request a connection. It is not possible to log-in to any Google Talk or similar account, we have to use just the IP address. Then, is it true that I cannot use XMPP API or…
user411103
2
votes
1 answer

How to build a simple Native WebRTC Android application that can do basic video call?

Recently I've been struggling a lot with WebRTC, I was able to build a very simple WebRTC web application based on the WebRTC codelab which consists of a simple signaling server (basically step 8 in the codelab tutorial). My next target is to build…
Kennedy Ho
  • 73
  • 1
  • 2
  • 6
2
votes
1 answer

libjingle's XmppPump compilation problem

I just started coding a gtalk chat bot using libjingle. I'm having a problem getting the compiler to find the XmppClient class called by XmppPump class. The XmppClient is provided by libjingle in the talk/xmpp/xmppclient.h file, but for some reason…
nikeairj
  • 173
  • 10
2
votes
1 answer

Where is the audio stream added libjingle?

I can't find out where the audio stream is added to the 'speaker'. Is it possible that I modify the stream and add it later by myself? I have the feeling that libjingle is handling the stream and adding it. I have added the libjingle part of my…
da1lbi3
  • 4,369
  • 6
  • 31
  • 65
2
votes
2 answers

webRTC on iOS: Can't send SDP answer, RTCPeerConnection.setRemoteDescription() failed

I'm using libjingle_peerconnection installed with cocoapods. When I receive SDP offer through signaling server from my caller, I'm trying to set this as a remote description, which triggers RTCSessionDescriptionDelegate…
1 2
3
9 10