├── .gitignore ├── AUTHORS ├── CHANGELOG ├── COPYING ├── DEPS ├── LICENSE_THIRD_PARTY ├── Makefile ├── README ├── codereview.settings └── talk └── examples ├── android ├── AndroidManifest.xml ├── README ├── ant.properties ├── build.xml ├── jni │ └── Android.mk ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ └── values │ │ └── strings.xml └── src │ └── org │ └── appspot │ └── apprtc │ ├── AppRTCClient.java │ ├── AppRTCDemoActivity.java │ ├── FramePool.java │ ├── GAEChannelClient.java │ └── VideoStreamsView.java ├── call ├── Info.plist ├── call_main.cc ├── call_unittest.cc ├── callclient.cc ├── callclient.h ├── callclient_unittest.cc ├── console.cc ├── console.h ├── friendinvitesendtask.cc ├── friendinvitesendtask.h ├── mediaenginefactory.cc ├── mediaenginefactory.h ├── muc.h ├── mucinviterecvtask.cc ├── mucinviterecvtask.h ├── mucinvitesendtask.cc ├── mucinvitesendtask.h ├── presencepushtask.cc └── presencepushtask.h ├── login └── login_main.cc ├── pcp └── pcp_main.cc ├── peerconnection ├── client │ ├── conductor.cc │ ├── conductor.h │ ├── defaults.cc │ ├── defaults.h │ ├── flagdefs.h │ ├── linux │ │ ├── main.cc │ │ ├── main_wnd.cc │ │ └── main_wnd.h │ ├── main.cc │ ├── main_wnd.cc │ ├── main_wnd.h │ ├── peer_connection_client.cc │ └── peer_connection_client.h ├── peerconnection.scons └── server │ ├── data_socket.cc │ ├── data_socket.h │ ├── main.cc │ ├── peer_channel.cc │ ├── peer_channel.h │ ├── server_test.html │ ├── utils.cc │ └── utils.h └── plus ├── libjingleplus.cc ├── libjingleplus.h ├── presencepushtask.cc ├── presencepushtask.h ├── rostertask.cc ├── rostertask.h └── testutil ├── libjingleplus_main.cc ├── libjingleplus_test_notifier.h └── libjingleplus_unittest.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/CHANGELOG -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/COPYING -------------------------------------------------------------------------------- /DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/DEPS -------------------------------------------------------------------------------- /LICENSE_THIRD_PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/LICENSE_THIRD_PARTY -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/README -------------------------------------------------------------------------------- /codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/codereview.settings -------------------------------------------------------------------------------- /talk/examples/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/AndroidManifest.xml -------------------------------------------------------------------------------- /talk/examples/android/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/README -------------------------------------------------------------------------------- /talk/examples/android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/ant.properties -------------------------------------------------------------------------------- /talk/examples/android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/build.xml -------------------------------------------------------------------------------- /talk/examples/android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/jni/Android.mk -------------------------------------------------------------------------------- /talk/examples/android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/project.properties -------------------------------------------------------------------------------- /talk/examples/android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /talk/examples/android/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /talk/examples/android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /talk/examples/android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /talk/examples/android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/res/values/strings.xml -------------------------------------------------------------------------------- /talk/examples/android/src/org/appspot/apprtc/AppRTCClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/src/org/appspot/apprtc/AppRTCClient.java -------------------------------------------------------------------------------- /talk/examples/android/src/org/appspot/apprtc/AppRTCDemoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/src/org/appspot/apprtc/AppRTCDemoActivity.java -------------------------------------------------------------------------------- /talk/examples/android/src/org/appspot/apprtc/FramePool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/src/org/appspot/apprtc/FramePool.java -------------------------------------------------------------------------------- /talk/examples/android/src/org/appspot/apprtc/GAEChannelClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/src/org/appspot/apprtc/GAEChannelClient.java -------------------------------------------------------------------------------- /talk/examples/android/src/org/appspot/apprtc/VideoStreamsView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/android/src/org/appspot/apprtc/VideoStreamsView.java -------------------------------------------------------------------------------- /talk/examples/call/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/Info.plist -------------------------------------------------------------------------------- /talk/examples/call/call_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/call_main.cc -------------------------------------------------------------------------------- /talk/examples/call/call_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/call_unittest.cc -------------------------------------------------------------------------------- /talk/examples/call/callclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/callclient.cc -------------------------------------------------------------------------------- /talk/examples/call/callclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/callclient.h -------------------------------------------------------------------------------- /talk/examples/call/callclient_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/callclient_unittest.cc -------------------------------------------------------------------------------- /talk/examples/call/console.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/console.cc -------------------------------------------------------------------------------- /talk/examples/call/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/console.h -------------------------------------------------------------------------------- /talk/examples/call/friendinvitesendtask.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/friendinvitesendtask.cc -------------------------------------------------------------------------------- /talk/examples/call/friendinvitesendtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/friendinvitesendtask.h -------------------------------------------------------------------------------- /talk/examples/call/mediaenginefactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/mediaenginefactory.cc -------------------------------------------------------------------------------- /talk/examples/call/mediaenginefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/mediaenginefactory.h -------------------------------------------------------------------------------- /talk/examples/call/muc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/muc.h -------------------------------------------------------------------------------- /talk/examples/call/mucinviterecvtask.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/mucinviterecvtask.cc -------------------------------------------------------------------------------- /talk/examples/call/mucinviterecvtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/mucinviterecvtask.h -------------------------------------------------------------------------------- /talk/examples/call/mucinvitesendtask.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/mucinvitesendtask.cc -------------------------------------------------------------------------------- /talk/examples/call/mucinvitesendtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/mucinvitesendtask.h -------------------------------------------------------------------------------- /talk/examples/call/presencepushtask.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/presencepushtask.cc -------------------------------------------------------------------------------- /talk/examples/call/presencepushtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/call/presencepushtask.h -------------------------------------------------------------------------------- /talk/examples/login/login_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/login/login_main.cc -------------------------------------------------------------------------------- /talk/examples/pcp/pcp_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/pcp/pcp_main.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/conductor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/conductor.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/conductor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/conductor.h -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/defaults.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/defaults.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/defaults.h -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/flagdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/flagdefs.h -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/linux/main.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/linux/main_wnd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/linux/main_wnd.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/linux/main_wnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/linux/main_wnd.h -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/main.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/main_wnd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/main_wnd.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/main_wnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/main_wnd.h -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/peer_connection_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/peer_connection_client.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/client/peer_connection_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/client/peer_connection_client.h -------------------------------------------------------------------------------- /talk/examples/peerconnection/peerconnection.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/peerconnection.scons -------------------------------------------------------------------------------- /talk/examples/peerconnection/server/data_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/server/data_socket.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/server/data_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/server/data_socket.h -------------------------------------------------------------------------------- /talk/examples/peerconnection/server/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/server/main.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/server/peer_channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/server/peer_channel.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/server/peer_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/server/peer_channel.h -------------------------------------------------------------------------------- /talk/examples/peerconnection/server/server_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/server/server_test.html -------------------------------------------------------------------------------- /talk/examples/peerconnection/server/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/server/utils.cc -------------------------------------------------------------------------------- /talk/examples/peerconnection/server/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/peerconnection/server/utils.h -------------------------------------------------------------------------------- /talk/examples/plus/libjingleplus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/plus/libjingleplus.cc -------------------------------------------------------------------------------- /talk/examples/plus/libjingleplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/plus/libjingleplus.h -------------------------------------------------------------------------------- /talk/examples/plus/presencepushtask.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/plus/presencepushtask.cc -------------------------------------------------------------------------------- /talk/examples/plus/presencepushtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/plus/presencepushtask.h -------------------------------------------------------------------------------- /talk/examples/plus/rostertask.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/plus/rostertask.cc -------------------------------------------------------------------------------- /talk/examples/plus/rostertask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/plus/rostertask.h -------------------------------------------------------------------------------- /talk/examples/plus/testutil/libjingleplus_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/plus/testutil/libjingleplus_main.cc -------------------------------------------------------------------------------- /talk/examples/plus/testutil/libjingleplus_test_notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/plus/testutil/libjingleplus_test_notifier.h -------------------------------------------------------------------------------- /talk/examples/plus/testutil/libjingleplus_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinobird/libjingle-examples/HEAD/talk/examples/plus/testutil/libjingleplus_unittest.cc --------------------------------------------------------------------------------