├── .boring ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README ├── TODO ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── python-sipsimple.lintian-overrides ├── rules └── source │ └── format ├── deps └── pjsip │ ├── COPYING │ ├── Makefile │ ├── README.txt │ ├── aconfigure │ ├── aconfigure.ac │ ├── base_rev │ ├── build.mak.in │ ├── build │ ├── cc-auto.mak.in │ ├── cc-gcc.mak │ ├── common.mak │ ├── host-mingw.mak │ ├── host-unix.mak │ ├── host-win32.mak │ ├── m-arm.mak │ ├── m-auto.mak │ ├── m-i386.mak │ ├── m-x86_64.mak │ ├── os-auto.mak.in │ └── rules.mak │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── install-sh │ ├── pjlib-util │ ├── build │ │ └── Makefile │ ├── docs │ │ ├── doxygen.cfg │ │ ├── doxygen.css │ │ ├── footer.html │ │ └── header.html │ ├── include │ │ ├── pjlib-util.h │ │ └── pjlib-util │ │ │ ├── base64.h │ │ │ ├── config.h │ │ │ ├── crc32.h │ │ │ ├── dns.h │ │ │ ├── dns_server.h │ │ │ ├── errno.h │ │ │ ├── getopt.h │ │ │ ├── hmac_md5.h │ │ │ ├── hmac_sha1.h │ │ │ ├── http_client.h │ │ │ ├── json.h │ │ │ ├── md5.h │ │ │ ├── pcap.h │ │ │ ├── resolver.h │ │ │ ├── scanner.h │ │ │ ├── scanner_cis_bitwise.h │ │ │ ├── scanner_cis_uint.h │ │ │ ├── sha1.h │ │ │ ├── srv_resolver.h │ │ │ ├── string.h │ │ │ ├── stun_simple.h │ │ │ ├── types.h │ │ │ └── xml.h │ └── src │ │ └── pjlib-util │ │ ├── base64.c │ │ ├── crc32.c │ │ ├── dns.c │ │ ├── dns_dump.c │ │ ├── dns_server.c │ │ ├── errno.c │ │ ├── getopt.c │ │ ├── hmac_md5.c │ │ ├── hmac_sha1.c │ │ ├── http_client.c │ │ ├── json.c │ │ ├── md5.c │ │ ├── pcap.c │ │ ├── resolver.c │ │ ├── resolver_wrap.cpp │ │ ├── scanner.c │ │ ├── scanner_cis_bitwise.c │ │ ├── scanner_cis_uint.c │ │ ├── sha1.c │ │ ├── srv_resolver.c │ │ ├── string.c │ │ ├── stun_simple.c │ │ ├── stun_simple_client.c │ │ ├── symbols.c │ │ ├── xml.c │ │ └── xml_wrap.cpp │ ├── pjlib │ ├── build │ │ ├── Makefile │ │ └── os-auto.mak.in │ ├── docs │ │ ├── doxygen.cfg │ │ ├── doxygen.css │ │ ├── footer.html │ │ └── header.html │ ├── include │ │ ├── pj++ │ │ │ ├── file.hpp │ │ │ ├── hash.hpp │ │ │ ├── list.hpp │ │ │ ├── lock.hpp │ │ │ ├── os.hpp │ │ │ ├── pool.hpp │ │ │ ├── proactor.hpp │ │ │ ├── scanner.hpp │ │ │ ├── sock.hpp │ │ │ ├── string.hpp │ │ │ ├── timer.hpp │ │ │ ├── tree.hpp │ │ │ └── types.hpp │ │ ├── pj │ │ │ ├── activesock.h │ │ │ ├── addr_resolv.h │ │ │ ├── array.h │ │ │ ├── assert.h │ │ │ ├── compat │ │ │ │ ├── assert.h │ │ │ │ ├── cc_armcc.h │ │ │ │ ├── cc_codew.h │ │ │ │ ├── cc_gcc.h │ │ │ │ ├── cc_gcce.h │ │ │ │ ├── cc_msvc.h │ │ │ │ ├── cc_mwcc.h │ │ │ │ ├── ctype.h │ │ │ │ ├── errno.h │ │ │ │ ├── high_precision.h │ │ │ │ ├── m_alpha.h │ │ │ │ ├── m_armv4.h │ │ │ │ ├── m_auto.h.in │ │ │ │ ├── m_i386.h │ │ │ │ ├── m_m68k.h │ │ │ │ ├── m_powerpc.h │ │ │ │ ├── m_sparc.h │ │ │ │ ├── m_x86_64.h │ │ │ │ ├── malloc.h │ │ │ │ ├── os_auto.h.in │ │ │ │ ├── os_darwinos.h │ │ │ │ ├── os_linux.h │ │ │ │ ├── os_linux_kernel.h │ │ │ │ ├── os_palmos.h │ │ │ │ ├── os_rtems.h │ │ │ │ ├── os_sunos.h │ │ │ │ ├── os_symbian.h │ │ │ │ ├── os_win32.h │ │ │ │ ├── os_win32_wince.h │ │ │ │ ├── rand.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── size_t.h │ │ │ │ ├── socket.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdfileio.h │ │ │ │ ├── string.h │ │ │ │ └── time.h │ │ │ ├── config.h │ │ │ ├── config_site_sample.h │ │ │ ├── ctype.h │ │ │ ├── doxygen.h │ │ │ ├── errno.h │ │ │ ├── except.h │ │ │ ├── fifobuf.h │ │ │ ├── file_access.h │ │ │ ├── file_io.h │ │ │ ├── guid.h │ │ │ ├── hash.h │ │ │ ├── ioqueue.h │ │ │ ├── ip_helper.h │ │ │ ├── list.h │ │ │ ├── list_i.h │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── math.h │ │ │ ├── os.h │ │ │ ├── pool.h │ │ │ ├── pool_alt.h │ │ │ ├── pool_buf.h │ │ │ ├── pool_i.h │ │ │ ├── rand.h │ │ │ ├── rbtree.h │ │ │ ├── sock.h │ │ │ ├── sock_qos.h │ │ │ ├── sock_select.h │ │ │ ├── ssl_sock.h │ │ │ ├── string.h │ │ │ ├── string_i.h │ │ │ ├── timer.h │ │ │ ├── types.h │ │ │ └── unicode.h │ │ ├── pjlib++.hpp │ │ └── pjlib.h │ └── src │ │ └── pj │ │ ├── activesock.c │ │ ├── addr_resolv_linux_kernel.c │ │ ├── addr_resolv_sock.c │ │ ├── addr_resolv_symbian.cpp │ │ ├── array.c │ │ ├── compat │ │ ├── longjmp_i386.S │ │ ├── setjmp_i386.S │ │ ├── sigjmp.c │ │ ├── string.c │ │ └── string_compat.c │ │ ├── config.c │ │ ├── ctype.c │ │ ├── errno.c │ │ ├── except.c │ │ ├── exception_symbian.cpp │ │ ├── extra-exports.c │ │ ├── fifobuf.c │ │ ├── file_access_unistd.c │ │ ├── file_access_win32.c │ │ ├── file_io_ansi.c │ │ ├── file_io_win32.c │ │ ├── guid.c │ │ ├── guid_simple.c │ │ ├── guid_uuid.c │ │ ├── guid_win32.c │ │ ├── hash.c │ │ ├── ioqueue_common_abs.c │ │ ├── ioqueue_common_abs.h │ │ ├── ioqueue_dummy.c │ │ ├── ioqueue_epoll.c │ │ ├── ioqueue_linux_kernel.c │ │ ├── ioqueue_select.c │ │ ├── ioqueue_symbian.cpp │ │ ├── ioqueue_winnt.c │ │ ├── ip_helper_generic.c │ │ ├── ip_helper_symbian.cpp │ │ ├── ip_helper_win32.c │ │ ├── list.c │ │ ├── lock.c │ │ ├── log.c │ │ ├── log_writer_printk.c │ │ ├── log_writer_stdout.c │ │ ├── log_writer_symbian_console.cpp │ │ ├── os_core_darwin.m │ │ ├── os_core_linux_kernel.c │ │ ├── os_core_symbian.cpp │ │ ├── os_core_unix.c │ │ ├── os_core_win32.c │ │ ├── os_error_linux_kernel.c │ │ ├── os_error_symbian.cpp │ │ ├── os_error_unix.c │ │ ├── os_error_win32.c │ │ ├── os_info.c │ │ ├── os_info_iphone.m │ │ ├── os_info_symbian.cpp │ │ ├── os_rwmutex.c │ │ ├── os_symbian.h │ │ ├── os_time_bsd.c │ │ ├── os_time_common.c │ │ ├── os_time_linux_kernel.c │ │ ├── os_time_unix.c │ │ ├── os_time_win32.c │ │ ├── os_timestamp_common.c │ │ ├── os_timestamp_linux_kernel.c │ │ ├── os_timestamp_posix.c │ │ ├── os_timestamp_win32.c │ │ ├── pool.c │ │ ├── pool_buf.c │ │ ├── pool_caching.c │ │ ├── pool_dbg.c │ │ ├── pool_policy_kmalloc.c │ │ ├── pool_policy_malloc.c │ │ ├── pool_policy_new.cpp │ │ ├── pool_signature.h │ │ ├── rand.c │ │ ├── rbtree.c │ │ ├── sock_bsd.c │ │ ├── sock_common.c │ │ ├── sock_linux_kernel.c │ │ ├── sock_qos_bsd.c │ │ ├── sock_qos_common.c │ │ ├── sock_qos_dummy.c │ │ ├── sock_qos_symbian.cpp │ │ ├── sock_qos_wm.c │ │ ├── sock_select.c │ │ ├── sock_select_symbian.cpp │ │ ├── sock_symbian.cpp │ │ ├── ssl_sock_common.c │ │ ├── ssl_sock_dump.c │ │ ├── ssl_sock_ossl.c │ │ ├── ssl_sock_symbian.cpp │ │ ├── string.c │ │ ├── symbols.c │ │ ├── timer.c │ │ ├── timer_symbian.cpp │ │ ├── types.c │ │ ├── unicode_symbian.cpp │ │ └── unicode_win32.c │ ├── pjmedia │ ├── README.txt │ ├── build │ │ ├── Makefile │ │ └── os-auto.mak.in │ ├── docs │ │ ├── doxygen.cfg │ │ ├── footer.html │ │ ├── header.html │ │ ├── master-port.jpg │ │ ├── media-flow.jpg │ │ ├── media-flow.vsd │ │ ├── media-srtp-transport.PNG │ │ ├── media-transport.PNG │ │ ├── sample-manual-resampling.jpg │ │ ├── siprtp.jpg │ │ └── sndtest.jpg │ ├── include │ │ ├── pjmedia-audiodev │ │ │ ├── audiodev.h │ │ │ ├── audiodev_imp.h │ │ │ ├── config.h │ │ │ └── errno.h │ │ ├── pjmedia-codec.h │ │ ├── pjmedia-codec │ │ │ ├── audio_codecs.h │ │ │ ├── config.h │ │ │ ├── config_auto.h.in │ │ │ ├── ffmpeg_vid_codecs.h │ │ │ ├── g722.h │ │ │ ├── g7221.h │ │ │ ├── g7221_sdp_match.h │ │ │ ├── gsm.h │ │ │ ├── h263_packetizer.h │ │ │ ├── h264_packetizer.h │ │ │ ├── ilbc.h │ │ │ ├── openh264.h │ │ │ ├── opus.h │ │ │ ├── passthrough.h │ │ │ ├── speex.h │ │ │ ├── types.h │ │ │ └── vpx.h │ │ ├── pjmedia-videodev │ │ │ ├── avi_dev.h │ │ │ ├── config.h │ │ │ ├── errno.h │ │ │ ├── fb_dev.h │ │ │ ├── videodev.h │ │ │ └── videodev_imp.h │ │ ├── pjmedia.h │ │ ├── pjmedia │ │ │ ├── alaw_ulaw.h │ │ │ ├── avi.h │ │ │ ├── avi_stream.h │ │ │ ├── bidirectional.h │ │ │ ├── circbuf.h │ │ │ ├── clock.h │ │ │ ├── codec.h │ │ │ ├── conference.h │ │ │ ├── config.h │ │ │ ├── config_auto.h.in │ │ │ ├── converter.h │ │ │ ├── delaybuf.h │ │ │ ├── doxygen.h │ │ │ ├── echo.h │ │ │ ├── echo_port.h │ │ │ ├── endpoint.h │ │ │ ├── errno.h │ │ │ ├── event.h │ │ │ ├── format.h │ │ │ ├── frame.h │ │ │ ├── g711.h │ │ │ ├── jbuf.h │ │ │ ├── master_port.h │ │ │ ├── mem_port.h │ │ │ ├── mixer_port.h │ │ │ ├── null_port.h │ │ │ ├── plc.h │ │ │ ├── port.h │ │ │ ├── resample.h │ │ │ ├── rtcp.h │ │ │ ├── rtcp_xr.h │ │ │ ├── rtp.h │ │ │ ├── sdp.h │ │ │ ├── sdp_neg.h │ │ │ ├── session.h │ │ │ ├── signatures.h │ │ │ ├── silencedet.h │ │ │ ├── sound.h │ │ │ ├── sound_port.h │ │ │ ├── splitcomb.h │ │ │ ├── stereo.h │ │ │ ├── stream.h │ │ │ ├── stream_common.h │ │ │ ├── symbian_sound_aps.h │ │ │ ├── tonegen.h │ │ │ ├── transport.h │ │ │ ├── transport_adapter_sample.h │ │ │ ├── transport_ice.h │ │ │ ├── transport_loop.h │ │ │ ├── transport_srtp.h │ │ │ ├── transport_udp.h │ │ │ ├── transport_zrtp.h │ │ │ ├── types.h │ │ │ ├── vid_codec.h │ │ │ ├── vid_codec_util.h │ │ │ ├── vid_port.h │ │ │ ├── vid_stream.h │ │ │ ├── vid_tee.h │ │ │ ├── wav_playlist.h │ │ │ ├── wav_port.h │ │ │ ├── wave.h │ │ │ └── wsola.h │ │ ├── pjmedia_audiodev.h │ │ └── pjmedia_videodev.h │ └── src │ │ ├── pjmedia-audiodev │ │ ├── alsa_dev.c │ │ ├── audiodev.c │ │ ├── coreaudio_dev.m │ │ ├── errno.c │ │ ├── null_dev.c │ │ └── wmme_dev.c │ │ ├── pjmedia-codec │ │ ├── audio_codecs.c │ │ ├── ffmpeg_vid_codecs.c │ │ ├── g722.c │ │ ├── g722 │ │ │ ├── g722_dec.c │ │ │ ├── g722_dec.h │ │ │ ├── g722_enc.c │ │ │ └── g722_enc.h │ │ ├── g7221.c │ │ ├── g7221_sdp_match.c │ │ ├── gsm.c │ │ ├── h263_packetizer.c │ │ ├── h264_packetizer.c │ │ ├── ilbc.c │ │ ├── openh264.cpp │ │ ├── opus.c │ │ ├── passthrough.c │ │ ├── speex_codec.c │ │ └── vpx.c │ │ ├── pjmedia-videodev │ │ ├── avf_dev.m │ │ ├── avi_dev.c │ │ ├── colorbar_dev.c │ │ ├── dshow_dev.c │ │ ├── dshow_filter.cpp │ │ ├── errno.c │ │ ├── fb_dev.c │ │ ├── null_dev.c │ │ ├── util.c │ │ ├── util.h │ │ ├── v4l2_dev.c │ │ └── videodev.c │ │ └── pjmedia │ │ ├── alaw_ulaw.c │ │ ├── alaw_ulaw_table.c │ │ ├── avi_player.c │ │ ├── bidirectional.c │ │ ├── clock_thread.c │ │ ├── codec.c │ │ ├── conf_switch.c │ │ ├── conference.c │ │ ├── converter.c │ │ ├── converter_libswscale.c │ │ ├── converter_libyuv.c │ │ ├── delaybuf.c │ │ ├── dummy.c │ │ ├── echo_common.c │ │ ├── echo_internal.h │ │ ├── echo_port.c │ │ ├── echo_speex.c │ │ ├── echo_suppress.c │ │ ├── echo_webrtc_aec.c │ │ ├── endpoint.c │ │ ├── errno.c │ │ ├── event.c │ │ ├── ffmpeg_util.c │ │ ├── ffmpeg_util.h │ │ ├── format.c │ │ ├── g711.c │ │ ├── jbuf.c │ │ ├── master_port.c │ │ ├── mem_capture.c │ │ ├── mem_player.c │ │ ├── mixer_port.c │ │ ├── null_port.c │ │ ├── plc_common.c │ │ ├── port.c │ │ ├── resample_libsamplerate.c │ │ ├── resample_port.c │ │ ├── resample_resample.c │ │ ├── resample_speex.c │ │ ├── rtcp.c │ │ ├── rtcp_xr.c │ │ ├── rtp.c │ │ ├── sdp.c │ │ ├── sdp_cmp.c │ │ ├── sdp_neg.c │ │ ├── sdp_wrap.cpp │ │ ├── session.c │ │ ├── silencedet.c │ │ ├── sound_legacy.c │ │ ├── sound_port.c │ │ ├── splitcomb.c │ │ ├── stereo_port.c │ │ ├── stream.c │ │ ├── stream_common.c │ │ ├── stream_info.c │ │ ├── tonegen.c │ │ ├── transport_adapter_sample.c │ │ ├── transport_ice.c │ │ ├── transport_loop.c │ │ ├── transport_srtp.c │ │ ├── transport_udp.c │ │ ├── transport_zrtp.c │ │ ├── types.c │ │ ├── vid_codec.c │ │ ├── vid_codec_util.c │ │ ├── vid_port.c │ │ ├── vid_stream.c │ │ ├── vid_stream_info.c │ │ ├── vid_tee.c │ │ ├── wav_player.c │ │ ├── wav_playlist.c │ │ ├── wav_writer.c │ │ ├── wave.c │ │ └── wsola.c │ ├── pjnath │ ├── build │ │ └── Makefile │ ├── docs │ │ ├── UML-class-diagram.dia │ │ ├── UML-class-diagram.png │ │ ├── doc_ice.h │ │ ├── doc_mainpage.h │ │ ├── doc_nat.h │ │ ├── doc_samples.h │ │ ├── doc_stun.h │ │ ├── doc_turn.h │ │ ├── doxygen.cfg │ │ ├── doxygen.css │ │ ├── footer.html │ │ ├── header.html │ │ ├── ice-arch.jpg │ │ ├── ice_demo.jpg │ │ ├── pjturn_client.jpg │ │ └── stun-arch.jpg │ ├── include │ │ ├── pjnath.h │ │ └── pjnath │ │ │ ├── config.h │ │ │ ├── errno.h │ │ │ ├── ice_session.h │ │ │ ├── ice_strans.h │ │ │ ├── nat_detect.h │ │ │ ├── stun_auth.h │ │ │ ├── stun_config.h │ │ │ ├── stun_msg.h │ │ │ ├── stun_session.h │ │ │ ├── stun_sock.h │ │ │ ├── stun_transaction.h │ │ │ ├── turn_session.h │ │ │ ├── turn_sock.h │ │ │ └── types.h │ └── src │ │ ├── pjnath │ │ ├── errno.c │ │ ├── ice_session.c │ │ ├── ice_strans.c │ │ ├── nat_detect.c │ │ ├── stun_auth.c │ │ ├── stun_msg.c │ │ ├── stun_msg_dump.c │ │ ├── stun_session.c │ │ ├── stun_sock.c │ │ ├── stun_transaction.c │ │ ├── turn_session.c │ │ └── turn_sock.c │ │ ├── pjturn-client │ │ └── client_main.c │ │ └── pjturn-srv │ │ ├── allocation.c │ │ ├── auth.c │ │ ├── auth.h │ │ ├── listener_tcp.c │ │ ├── listener_udp.c │ │ ├── main.c │ │ ├── server.c │ │ └── turn.h │ ├── pjsip │ ├── build │ │ ├── Makefile │ │ └── os-auto.mak.in │ ├── docs │ │ ├── PJSUA-TESTING.txt │ │ ├── TRANSPORT-PROBLEMS.TXT │ │ ├── doxygen.cfg │ │ ├── doxygen.h │ │ ├── footer.html │ │ ├── header.html │ │ ├── pjsip-arch.jpg │ │ ├── pjsip-perf.jpg │ │ ├── pjsua.jpg │ │ └── siprtp.jpg │ ├── include │ │ ├── pjsip-simple │ │ │ ├── errno.h │ │ │ ├── evsub.h │ │ │ ├── evsub_msg.h │ │ │ ├── iscomposing.h │ │ │ ├── mwi.h │ │ │ ├── pidf.h │ │ │ ├── presence.h │ │ │ ├── publish.h │ │ │ ├── rpid.h │ │ │ ├── types.h │ │ │ └── xpidf.h │ │ ├── pjsip-ua │ │ │ ├── sip_100rel.h │ │ │ ├── sip_inv.h │ │ │ ├── sip_regc.h │ │ │ ├── sip_replaces.h │ │ │ ├── sip_timer.h │ │ │ └── sip_xfer.h │ │ ├── pjsip.h │ │ ├── pjsip │ │ │ ├── print_util.h │ │ │ ├── sip_auth.h │ │ │ ├── sip_auth_aka.h │ │ │ ├── sip_auth_msg.h │ │ │ ├── sip_auth_parser.h │ │ │ ├── sip_autoconf.h.in │ │ │ ├── sip_config.h │ │ │ ├── sip_dialog.h │ │ │ ├── sip_endpoint.h │ │ │ ├── sip_errno.h │ │ │ ├── sip_event.h │ │ │ ├── sip_module.h │ │ │ ├── sip_msg.h │ │ │ ├── sip_multipart.h │ │ │ ├── sip_parser.h │ │ │ ├── sip_private.h │ │ │ ├── sip_resolve.h │ │ │ ├── sip_tel_uri.h │ │ │ ├── sip_transaction.h │ │ │ ├── sip_transport.h │ │ │ ├── sip_transport_loop.h │ │ │ ├── sip_transport_tcp.h │ │ │ ├── sip_transport_tls.h │ │ │ ├── sip_transport_udp.h │ │ │ ├── sip_types.h │ │ │ ├── sip_ua_layer.h │ │ │ ├── sip_uri.h │ │ │ └── sip_util.h │ │ ├── pjsip_auth.h │ │ ├── pjsip_simple.h │ │ └── pjsip_ua.h │ └── src │ │ ├── pjsip-simple │ │ ├── errno.c │ │ ├── evsub.c │ │ ├── evsub_msg.c │ │ ├── iscomposing.c │ │ ├── mwi.c │ │ ├── pidf.c │ │ ├── presence.c │ │ ├── presence_body.c │ │ ├── publishc.c │ │ ├── rpid.c │ │ └── xpidf.c │ │ ├── pjsip-ua │ │ ├── sip_100rel.c │ │ ├── sip_inv.c │ │ ├── sip_reg.c │ │ ├── sip_replaces.c │ │ ├── sip_timer.c │ │ └── sip_xfer.c │ │ └── pjsip │ │ ├── sip_auth_aka.c │ │ ├── sip_auth_client.c │ │ ├── sip_auth_msg.c │ │ ├── sip_auth_parser.c │ │ ├── sip_auth_parser_wrap.cpp │ │ ├── sip_auth_server.c │ │ ├── sip_config.c │ │ ├── sip_dialog.c │ │ ├── sip_dialog_wrap.cpp │ │ ├── sip_endpoint.c │ │ ├── sip_endpoint_wrap.cpp │ │ ├── sip_errno.c │ │ ├── sip_msg.c │ │ ├── sip_multipart.c │ │ ├── sip_parser.c │ │ ├── sip_parser_wrap.cpp │ │ ├── sip_resolve.c │ │ ├── sip_tel_uri.c │ │ ├── sip_tel_uri_wrap.cpp │ │ ├── sip_transaction.c │ │ ├── sip_transport.c │ │ ├── sip_transport_loop.c │ │ ├── sip_transport_tcp.c │ │ ├── sip_transport_tls.c │ │ ├── sip_transport_udp.c │ │ ├── sip_transport_wrap.cpp │ │ ├── sip_ua_layer.c │ │ ├── sip_uri.c │ │ ├── sip_util.c │ │ ├── sip_util_proxy.c │ │ ├── sip_util_proxy_wrap.cpp │ │ ├── sip_util_statefull.c │ │ └── sip_util_wrap.cpp │ ├── third_party │ ├── README.txt │ ├── bdsound │ │ └── include │ │ │ └── bdimad.h │ ├── build │ │ ├── Makefile │ │ ├── g7221 │ │ │ └── Makefile │ │ ├── gsm │ │ │ ├── Makefile │ │ │ └── config.h │ │ ├── ilbc │ │ │ └── Makefile │ │ ├── milenage │ │ │ └── Makefile │ │ ├── opus │ │ │ └── Makefile │ │ ├── os-auto.mak.in │ │ ├── resample │ │ │ ├── Makefile │ │ │ └── config.h │ │ ├── speex │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ └── speex │ │ │ │ └── speex_config_types.h │ │ ├── srtp │ │ │ ├── Makefile │ │ │ └── srtp_config.h │ │ ├── webrtc │ │ │ ├── Makefile │ │ │ └── os-auto.mak.in │ │ └── zsrtp │ │ │ └── Makefile │ ├── g7221 │ │ ├── common │ │ │ ├── basic_op.c │ │ │ ├── basic_op.h │ │ │ ├── basic_op_i.h │ │ │ ├── common.c │ │ │ ├── config.h │ │ │ ├── count.h │ │ │ ├── defs.h │ │ │ ├── huff_def.h │ │ │ ├── huff_tab.c │ │ │ ├── huff_tab.h │ │ │ ├── tables.c │ │ │ ├── tables.h │ │ │ └── typedef.h │ │ ├── decode │ │ │ ├── coef2sam.c │ │ │ ├── dct4_s.c │ │ │ ├── dct4_s.h │ │ │ └── decoder.c │ │ └── encode │ │ │ ├── dct4_a.c │ │ │ ├── dct4_a.h │ │ │ ├── encoder.c │ │ │ └── sam2coef.c │ ├── gsm │ │ ├── COPYRIGHT │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── MACHINES │ │ ├── MANIFEST │ │ ├── Makefile │ │ ├── README │ │ ├── add-test │ │ │ ├── add_test.c │ │ │ └── add_test.dta │ │ ├── inc │ │ │ ├── config.h │ │ │ ├── gsm.h │ │ │ ├── private.h │ │ │ ├── proto.h │ │ │ ├── toast.h │ │ │ └── unproto.h │ │ ├── man │ │ │ ├── bitter.1 │ │ │ ├── gsm.3 │ │ │ ├── gsm_explode.3 │ │ │ ├── gsm_option.3 │ │ │ ├── gsm_print.3 │ │ │ └── toast.1 │ │ ├── src │ │ │ ├── add.c │ │ │ ├── code.c │ │ │ ├── debug.c │ │ │ ├── decode.c │ │ │ ├── gsm_create.c │ │ │ ├── gsm_decode.c │ │ │ ├── gsm_destroy.c │ │ │ ├── gsm_encode.c │ │ │ ├── gsm_explode.c │ │ │ ├── gsm_implode.c │ │ │ ├── gsm_option.c │ │ │ ├── gsm_print.c │ │ │ ├── long_term.c │ │ │ ├── lpc.c │ │ │ ├── preprocess.c │ │ │ ├── rpe.c │ │ │ ├── short_term.c │ │ │ ├── table.c │ │ │ ├── toast.c │ │ │ ├── toast_alaw.c │ │ │ ├── toast_audio.c │ │ │ ├── toast_lin.c │ │ │ └── toast_ulaw.c │ │ ├── tls │ │ │ ├── bitter.c │ │ │ ├── bitter.dta │ │ │ ├── ginger.c │ │ │ ├── sour.c │ │ │ ├── sour1.dta │ │ │ ├── sour2.dta │ │ │ ├── sweet.c │ │ │ ├── taste.c │ │ │ └── taste.h │ │ └── tst │ │ │ ├── cod2lin.c │ │ │ ├── cod2txt.c │ │ │ ├── gsm2cod.c │ │ │ ├── lin2cod.c │ │ │ ├── lin2txt.c │ │ │ └── run │ ├── ilbc │ │ ├── FrameClassify.c │ │ ├── FrameClassify.h │ │ ├── LPCdecode.c │ │ ├── LPCdecode.h │ │ ├── LPCencode.c │ │ ├── LPCencode.h │ │ ├── StateConstructW.c │ │ ├── StateConstructW.h │ │ ├── StateSearchW.c │ │ ├── StateSearchW.h │ │ ├── anaFilter.c │ │ ├── anaFilter.h │ │ ├── constants.c │ │ ├── constants.h │ │ ├── createCB.c │ │ ├── createCB.h │ │ ├── doCPLC.c │ │ ├── doCPLC.h │ │ ├── enhancer.c │ │ ├── enhancer.h │ │ ├── filter.c │ │ ├── filter.h │ │ ├── gainquant.c │ │ ├── gainquant.h │ │ ├── getCBvec.c │ │ ├── getCBvec.h │ │ ├── helpfun.c │ │ ├── helpfun.h │ │ ├── hpInput.c │ │ ├── hpInput.h │ │ ├── hpOutput.c │ │ ├── hpOutput.h │ │ ├── iCBConstruct.c │ │ ├── iCBConstruct.h │ │ ├── iCBSearch.c │ │ ├── iCBSearch.h │ │ ├── iLBC_decode.c │ │ ├── iLBC_decode.h │ │ ├── iLBC_define.h │ │ ├── iLBC_encode.c │ │ ├── iLBC_encode.h │ │ ├── iLBC_test.c │ │ ├── lsf.c │ │ ├── lsf.h │ │ ├── packing.c │ │ ├── packing.h │ │ ├── syntFilter.c │ │ └── syntFilter.h │ ├── milenage │ │ ├── milenage.c │ │ ├── milenage.h │ │ ├── rijndael.c │ │ └── rijndael.h │ ├── mp3 │ │ ├── BladeMP3EncDLL.h │ │ ├── mp3_port.h │ │ └── mp3_writer.c │ ├── opus │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.mips │ │ ├── Makefile.unix │ │ ├── NEWS │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── celt │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.h │ │ │ ├── arm │ │ │ │ ├── arm2gnu.pl │ │ │ │ ├── arm_celt_map.c │ │ │ │ ├── armcpu.c │ │ │ │ ├── armcpu.h │ │ │ │ ├── armopts.s.in │ │ │ │ ├── celt_ne10_fft.c │ │ │ │ ├── celt_ne10_mdct.c │ │ │ │ ├── celt_neon_intr.c │ │ │ │ ├── celt_pitch_xcorr_arm-gnu.S │ │ │ │ ├── celt_pitch_xcorr_arm.s │ │ │ │ ├── fft_arm.h │ │ │ │ ├── fixed_armv4.h │ │ │ │ ├── fixed_armv5e.h │ │ │ │ ├── kiss_fft_armv4.h │ │ │ │ ├── kiss_fft_armv5e.h │ │ │ │ ├── mdct_arm.h │ │ │ │ └── pitch_arm.h │ │ │ ├── bands.c │ │ │ ├── bands.h │ │ │ ├── celt.c │ │ │ ├── celt.h │ │ │ ├── celt_decoder.c │ │ │ ├── celt_encoder.c │ │ │ ├── celt_lpc.c │ │ │ ├── celt_lpc.h │ │ │ ├── cpu_support.h │ │ │ ├── cwrs.c │ │ │ ├── cwrs.h │ │ │ ├── ecintrin.h │ │ │ ├── entcode.c │ │ │ ├── entcode.h │ │ │ ├── entdec.c │ │ │ ├── entdec.h │ │ │ ├── entenc.c │ │ │ ├── entenc.h │ │ │ ├── fixed_debug.h │ │ │ ├── fixed_generic.h │ │ │ ├── float_cast.h │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── laplace.c │ │ │ ├── laplace.h │ │ │ ├── mathops.c │ │ │ ├── mathops.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── mfrngcod.h │ │ │ ├── mips │ │ │ │ ├── celt_mipsr1.h │ │ │ │ ├── fixed_generic_mipsr1.h │ │ │ │ ├── kiss_fft_mipsr1.h │ │ │ │ ├── mdct_mipsr1.h │ │ │ │ ├── pitch_mipsr1.h │ │ │ │ └── vq_mipsr1.h │ │ │ ├── modes.c │ │ │ ├── modes.h │ │ │ ├── opus_custom_demo.c │ │ │ ├── os_support.h │ │ │ ├── pitch.c │ │ │ ├── pitch.h │ │ │ ├── quant_bands.c │ │ │ ├── quant_bands.h │ │ │ ├── rate.c │ │ │ ├── rate.h │ │ │ ├── stack_alloc.h │ │ │ ├── static_modes_fixed.h │ │ │ ├── static_modes_fixed_arm_ne10.h │ │ │ ├── static_modes_float.h │ │ │ ├── static_modes_float_arm_ne10.h │ │ │ ├── tests │ │ │ │ ├── test_unit_cwrs32.c │ │ │ │ ├── test_unit_dft.c │ │ │ │ ├── test_unit_entropy.c │ │ │ │ ├── test_unit_laplace.c │ │ │ │ ├── test_unit_mathops.c │ │ │ │ ├── test_unit_mdct.c │ │ │ │ ├── test_unit_rotation.c │ │ │ │ └── test_unit_types.c │ │ │ ├── vq.c │ │ │ ├── vq.h │ │ │ └── x86 │ │ │ │ ├── celt_lpc_sse.c │ │ │ │ ├── celt_lpc_sse.h │ │ │ │ ├── pitch_sse.c │ │ │ │ ├── pitch_sse.h │ │ │ │ ├── pitch_sse2.c │ │ │ │ ├── pitch_sse4_1.c │ │ │ │ ├── x86_celt_map.c │ │ │ │ ├── x86cpu.c │ │ │ │ └── x86cpu.h │ │ ├── celt_headers.mk │ │ ├── celt_sources.mk │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── customdoxygen.css │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── opus_logo.svg │ │ │ └── trivial_example.c │ │ ├── include │ │ │ ├── opus.h │ │ │ ├── opus_custom.h │ │ │ ├── opus_defines.h │ │ │ ├── opus_multistream.h │ │ │ └── opus_types.h │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── as-gcc-inline-assembly.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ └── opus-intrinsics.m4 │ │ ├── missing │ │ ├── opus-uninstalled.pc.in │ │ ├── opus.m4 │ │ ├── opus.pc.in │ │ ├── opus_headers.mk │ │ ├── opus_sources.mk │ │ ├── package_version │ │ ├── silk │ │ │ ├── A2NLSF.c │ │ │ ├── API.h │ │ │ ├── CNG.c │ │ │ ├── HP_variable_cutoff.c │ │ │ ├── Inlines.h │ │ │ ├── LPC_analysis_filter.c │ │ │ ├── LPC_inv_pred_gain.c │ │ │ ├── LP_variable_cutoff.c │ │ │ ├── MacroCount.h │ │ │ ├── MacroDebug.h │ │ │ ├── NLSF2A.c │ │ │ ├── NLSF_VQ.c │ │ │ ├── NLSF_VQ_weights_laroia.c │ │ │ ├── NLSF_decode.c │ │ │ ├── NLSF_del_dec_quant.c │ │ │ ├── NLSF_encode.c │ │ │ ├── NLSF_stabilize.c │ │ │ ├── NLSF_unpack.c │ │ │ ├── NSQ.c │ │ │ ├── NSQ_del_dec.c │ │ │ ├── PLC.c │ │ │ ├── PLC.h │ │ │ ├── SigProc_FIX.h │ │ │ ├── VAD.c │ │ │ ├── VQ_WMat_EC.c │ │ │ ├── ana_filt_bank_1.c │ │ │ ├── arm │ │ │ │ ├── SigProc_FIX_armv4.h │ │ │ │ ├── SigProc_FIX_armv5e.h │ │ │ │ ├── macros_armv4.h │ │ │ │ └── macros_armv5e.h │ │ │ ├── biquad_alt.c │ │ │ ├── bwexpander.c │ │ │ ├── bwexpander_32.c │ │ │ ├── check_control_input.c │ │ │ ├── code_signs.c │ │ │ ├── control.h │ │ │ ├── control_SNR.c │ │ │ ├── control_audio_bandwidth.c │ │ │ ├── control_codec.c │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dec_API.c │ │ │ ├── decode_core.c │ │ │ ├── decode_frame.c │ │ │ ├── decode_indices.c │ │ │ ├── decode_parameters.c │ │ │ ├── decode_pitch.c │ │ │ ├── decode_pulses.c │ │ │ ├── decoder_set_fs.c │ │ │ ├── define.h │ │ │ ├── enc_API.c │ │ │ ├── encode_indices.c │ │ │ ├── encode_pulses.c │ │ │ ├── errors.h │ │ │ ├── fixed │ │ │ │ ├── LTP_analysis_filter_FIX.c │ │ │ │ ├── LTP_scale_ctrl_FIX.c │ │ │ │ ├── apply_sine_window_FIX.c │ │ │ │ ├── autocorr_FIX.c │ │ │ │ ├── burg_modified_FIX.c │ │ │ │ ├── corrMatrix_FIX.c │ │ │ │ ├── encode_frame_FIX.c │ │ │ │ ├── find_LPC_FIX.c │ │ │ │ ├── find_LTP_FIX.c │ │ │ │ ├── find_pitch_lags_FIX.c │ │ │ │ ├── find_pred_coefs_FIX.c │ │ │ │ ├── k2a_FIX.c │ │ │ │ ├── k2a_Q16_FIX.c │ │ │ │ ├── main_FIX.h │ │ │ │ ├── mips │ │ │ │ │ ├── noise_shape_analysis_FIX_mipsr1.h │ │ │ │ │ ├── prefilter_FIX_mipsr1.h │ │ │ │ │ └── warped_autocorrelation_FIX_mipsr1.h │ │ │ │ ├── noise_shape_analysis_FIX.c │ │ │ │ ├── pitch_analysis_core_FIX.c │ │ │ │ ├── prefilter_FIX.c │ │ │ │ ├── process_gains_FIX.c │ │ │ │ ├── regularize_correlations_FIX.c │ │ │ │ ├── residual_energy16_FIX.c │ │ │ │ ├── residual_energy_FIX.c │ │ │ │ ├── schur64_FIX.c │ │ │ │ ├── schur_FIX.c │ │ │ │ ├── solve_LS_FIX.c │ │ │ │ ├── structs_FIX.h │ │ │ │ ├── vector_ops_FIX.c │ │ │ │ ├── warped_autocorrelation_FIX.c │ │ │ │ └── x86 │ │ │ │ │ ├── burg_modified_FIX_sse.c │ │ │ │ │ ├── prefilter_FIX_sse.c │ │ │ │ │ └── vector_ops_FIX_sse.c │ │ │ ├── float │ │ │ │ ├── LPC_analysis_filter_FLP.c │ │ │ │ ├── LPC_inv_pred_gain_FLP.c │ │ │ │ ├── LTP_analysis_filter_FLP.c │ │ │ │ ├── LTP_scale_ctrl_FLP.c │ │ │ │ ├── SigProc_FLP.h │ │ │ │ ├── apply_sine_window_FLP.c │ │ │ │ ├── autocorrelation_FLP.c │ │ │ │ ├── burg_modified_FLP.c │ │ │ │ ├── bwexpander_FLP.c │ │ │ │ ├── corrMatrix_FLP.c │ │ │ │ ├── encode_frame_FLP.c │ │ │ │ ├── energy_FLP.c │ │ │ │ ├── find_LPC_FLP.c │ │ │ │ ├── find_LTP_FLP.c │ │ │ │ ├── find_pitch_lags_FLP.c │ │ │ │ ├── find_pred_coefs_FLP.c │ │ │ │ ├── inner_product_FLP.c │ │ │ │ ├── k2a_FLP.c │ │ │ │ ├── levinsondurbin_FLP.c │ │ │ │ ├── main_FLP.h │ │ │ │ ├── noise_shape_analysis_FLP.c │ │ │ │ ├── pitch_analysis_core_FLP.c │ │ │ │ ├── prefilter_FLP.c │ │ │ │ ├── process_gains_FLP.c │ │ │ │ ├── regularize_correlations_FLP.c │ │ │ │ ├── residual_energy_FLP.c │ │ │ │ ├── scale_copy_vector_FLP.c │ │ │ │ ├── scale_vector_FLP.c │ │ │ │ ├── schur_FLP.c │ │ │ │ ├── solve_LS_FLP.c │ │ │ │ ├── sort_FLP.c │ │ │ │ ├── structs_FLP.h │ │ │ │ ├── warped_autocorrelation_FLP.c │ │ │ │ └── wrappers_FLP.c │ │ │ ├── gain_quant.c │ │ │ ├── init_decoder.c │ │ │ ├── init_encoder.c │ │ │ ├── inner_prod_aligned.c │ │ │ ├── interpolate.c │ │ │ ├── lin2log.c │ │ │ ├── log2lin.c │ │ │ ├── macros.h │ │ │ ├── main.h │ │ │ ├── mips │ │ │ │ ├── NSQ_del_dec_mipsr1.h │ │ │ │ ├── macros_mipsr1.h │ │ │ │ └── sigproc_fix_mipsr1.h │ │ │ ├── pitch_est_defines.h │ │ │ ├── pitch_est_tables.c │ │ │ ├── process_NLSFs.c │ │ │ ├── quant_LTP_gains.c │ │ │ ├── resampler.c │ │ │ ├── resampler_down2.c │ │ │ ├── resampler_down2_3.c │ │ │ ├── resampler_private.h │ │ │ ├── resampler_private_AR2.c │ │ │ ├── resampler_private_IIR_FIR.c │ │ │ ├── resampler_private_down_FIR.c │ │ │ ├── resampler_private_up2_HQ.c │ │ │ ├── resampler_rom.c │ │ │ ├── resampler_rom.h │ │ │ ├── resampler_structs.h │ │ │ ├── shell_coder.c │ │ │ ├── sigm_Q15.c │ │ │ ├── sort.c │ │ │ ├── stereo_LR_to_MS.c │ │ │ ├── stereo_MS_to_LR.c │ │ │ ├── stereo_decode_pred.c │ │ │ ├── stereo_encode_pred.c │ │ │ ├── stereo_find_predictor.c │ │ │ ├── stereo_quant_pred.c │ │ │ ├── structs.h │ │ │ ├── sum_sqr_shift.c │ │ │ ├── table_LSF_cos.c │ │ │ ├── tables.h │ │ │ ├── tables_LTP.c │ │ │ ├── tables_NLSF_CB_NB_MB.c │ │ │ ├── tables_NLSF_CB_WB.c │ │ │ ├── tables_gain.c │ │ │ ├── tables_other.c │ │ │ ├── tables_pitch_lag.c │ │ │ ├── tables_pulses_per_block.c │ │ │ ├── tuning_parameters.h │ │ │ ├── typedef.h │ │ │ └── x86 │ │ │ │ ├── NSQ_del_dec_sse.c │ │ │ │ ├── NSQ_sse.c │ │ │ │ ├── SigProc_FIX_sse.h │ │ │ │ ├── VAD_sse.c │ │ │ │ ├── VQ_WMat_EC_sse.c │ │ │ │ ├── main_sse.h │ │ │ │ └── x86_silk_map.c │ │ ├── silk_headers.mk │ │ ├── silk_sources.mk │ │ ├── src │ │ │ ├── analysis.c │ │ │ ├── analysis.h │ │ │ ├── mlp.c │ │ │ ├── mlp.h │ │ │ ├── mlp_data.c │ │ │ ├── opus.c │ │ │ ├── opus_compare.c │ │ │ ├── opus_decoder.c │ │ │ ├── opus_demo.c │ │ │ ├── opus_encoder.c │ │ │ ├── opus_multistream.c │ │ │ ├── opus_multistream_decoder.c │ │ │ ├── opus_multistream_encoder.c │ │ │ ├── opus_private.h │ │ │ ├── repacketizer.c │ │ │ ├── repacketizer_demo.c │ │ │ └── tansig_table.h │ │ ├── test-driver │ │ ├── tests │ │ │ ├── run_vectors.sh │ │ │ ├── test_opus_api.c │ │ │ ├── test_opus_common.h │ │ │ ├── test_opus_decode.c │ │ │ ├── test_opus_encode.c │ │ │ └── test_opus_padding.c │ │ ├── version.mk │ │ └── win32 │ │ │ ├── VS2010 │ │ │ ├── celt.vcxproj │ │ │ ├── celt.vcxproj.filters │ │ │ ├── opus.sln │ │ │ ├── opus.vcxproj │ │ │ ├── opus.vcxproj.filters │ │ │ ├── opus_demo.vcxproj │ │ │ ├── opus_demo.vcxproj.filters │ │ │ ├── silk_common.vcxproj │ │ │ ├── silk_common.vcxproj.filters │ │ │ ├── silk_fixed.vcxproj │ │ │ ├── silk_fixed.vcxproj.filters │ │ │ ├── silk_float.vcxproj │ │ │ ├── silk_float.vcxproj.filters │ │ │ ├── test_opus_api.vcxproj │ │ │ ├── test_opus_api.vcxproj.filters │ │ │ ├── test_opus_decode.vcxproj │ │ │ ├── test_opus_decode.vcxproj.filters │ │ │ ├── test_opus_encode.vcxproj │ │ │ └── test_opus_encode.vcxproj.filters │ │ │ ├── config.h │ │ │ └── genversion.bat │ ├── resample │ │ ├── COPYING │ │ ├── README.resample │ │ ├── include │ │ │ └── resamplesubs.h │ │ └── src │ │ │ ├── largefilter.h │ │ │ ├── libresample_dll.c │ │ │ ├── resample.h │ │ │ ├── resamplesubs.c │ │ │ ├── smallfilter.h │ │ │ └── stddefs.h │ ├── speex │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── include │ │ │ └── speex │ │ │ │ ├── speex.h │ │ │ │ ├── speex_bits.h │ │ │ │ ├── speex_buffer.h │ │ │ │ ├── speex_callbacks.h │ │ │ │ ├── speex_config_types.h.in │ │ │ │ ├── speex_echo.h │ │ │ │ ├── speex_header.h │ │ │ │ ├── speex_jitter.h │ │ │ │ ├── speex_preprocess.h │ │ │ │ ├── speex_resampler.h │ │ │ │ ├── speex_stereo.h │ │ │ │ └── speex_types.h │ │ ├── libspeex │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.h │ │ │ ├── bits.c │ │ │ ├── buffer.c │ │ │ ├── cb_search.c │ │ │ ├── cb_search.h │ │ │ ├── cb_search_arm4.h │ │ │ ├── cb_search_bfin.h │ │ │ ├── cb_search_sse.h │ │ │ ├── echo_diagnostic.m │ │ │ ├── exc_10_16_table.c │ │ │ ├── exc_10_32_table.c │ │ │ ├── exc_20_32_table.c │ │ │ ├── exc_5_256_table.c │ │ │ ├── exc_5_64_table.c │ │ │ ├── exc_8_128_table.c │ │ │ ├── fftwrap.c │ │ │ ├── fftwrap.h │ │ │ ├── filterbank.c │ │ │ ├── filterbank.h │ │ │ ├── filters.c │ │ │ ├── filters.h │ │ │ ├── filters_arm4.h │ │ │ ├── filters_bfin.h │ │ │ ├── filters_sse.h │ │ │ ├── fixed_arm4.h │ │ │ ├── fixed_arm5e.h │ │ │ ├── fixed_bfin.h │ │ │ ├── fixed_debug.h │ │ │ ├── fixed_generic.h │ │ │ ├── gain_table.c │ │ │ ├── gain_table_lbr.c │ │ │ ├── hexc_10_32_table.c │ │ │ ├── hexc_table.c │ │ │ ├── high_lsp_tables.c │ │ │ ├── jitter.c │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fftr.c │ │ │ ├── kiss_fftr.h │ │ │ ├── lpc.c │ │ │ ├── lpc.h │ │ │ ├── lpc_bfin.h │ │ │ ├── lsp.c │ │ │ ├── lsp.h │ │ │ ├── lsp_bfin.h │ │ │ ├── lsp_tables_nb.c │ │ │ ├── ltp.c │ │ │ ├── ltp.h │ │ │ ├── ltp_arm4.h │ │ │ ├── ltp_bfin.h │ │ │ ├── ltp_sse.h │ │ │ ├── math_approx.h │ │ │ ├── mdf.c │ │ │ ├── misc_bfin.h │ │ │ ├── modes.c │ │ │ ├── modes.h │ │ │ ├── modes_wb.c │ │ │ ├── nb_celp.c │ │ │ ├── nb_celp.h │ │ │ ├── os_support.h │ │ │ ├── preprocess.c │ │ │ ├── pseudofloat.h │ │ │ ├── quant_lsp.c │ │ │ ├── quant_lsp.h │ │ │ ├── quant_lsp_bfin.h │ │ │ ├── resample.c │ │ │ ├── resample_sse.h │ │ │ ├── sb_celp.c │ │ │ ├── sb_celp.h │ │ │ ├── scal.c │ │ │ ├── smallft.c │ │ │ ├── smallft.h │ │ │ ├── speex.c │ │ │ ├── speex_callbacks.c │ │ │ ├── speex_header.c │ │ │ ├── stack_alloc.h │ │ │ ├── stereo.c │ │ │ ├── testdenoise.c │ │ │ ├── testecho.c │ │ │ ├── testenc.c │ │ │ ├── testenc_uwb.c │ │ │ ├── testenc_wb.c │ │ │ ├── testjitter.c │ │ │ ├── testresample.c │ │ │ ├── vbr.c │ │ │ ├── vbr.h │ │ │ ├── vorbis_psy.c │ │ │ ├── vorbis_psy.h │ │ │ ├── vq.c │ │ │ ├── vq.h │ │ │ ├── vq_arm4.h │ │ │ ├── vq_bfin.h │ │ │ ├── vq_sse.h │ │ │ └── window.c │ │ ├── symbian │ │ │ └── config.h │ │ └── win32 │ │ │ └── config.h │ ├── srtp │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── Makefile.in │ │ ├── README │ │ ├── TODO │ │ ├── VERSION │ │ ├── config.h_win32vc7 │ │ ├── config.hw │ │ ├── config_in.h │ │ ├── configure │ │ ├── configure.in │ │ ├── crypto │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── VERSION │ │ │ ├── ae_xfm │ │ │ │ └── xfm.c │ │ │ ├── cipher │ │ │ │ ├── aes.c │ │ │ │ ├── aes_cbc.c │ │ │ │ ├── aes_icm.c │ │ │ │ ├── cipher.c │ │ │ │ └── null_cipher.c │ │ │ ├── hash │ │ │ │ ├── auth.c │ │ │ │ ├── hmac.c │ │ │ │ ├── null_auth.c │ │ │ │ └── sha1.c │ │ │ ├── include │ │ │ │ ├── aes.h │ │ │ │ ├── aes_cbc.h │ │ │ │ ├── aes_icm.h │ │ │ │ ├── alloc.h │ │ │ │ ├── auth.h │ │ │ │ ├── cipher.h │ │ │ │ ├── crypto.h │ │ │ │ ├── crypto_kernel.h │ │ │ │ ├── crypto_math.h │ │ │ │ ├── crypto_types.h │ │ │ │ ├── cryptoalg.h │ │ │ │ ├── datatypes.h │ │ │ │ ├── err.h │ │ │ │ ├── gf2_8.h │ │ │ │ ├── hmac.h │ │ │ │ ├── integers.h │ │ │ │ ├── kernel_compat.h │ │ │ │ ├── key.h │ │ │ │ ├── null_auth.h │ │ │ │ ├── null_cipher.h │ │ │ │ ├── prng.h │ │ │ │ ├── rand_source.h │ │ │ │ ├── rdb.h │ │ │ │ ├── rdbx.h │ │ │ │ ├── sha1.h │ │ │ │ ├── stat.h │ │ │ │ └── xfm.h │ │ │ ├── kernel │ │ │ │ ├── alloc.c │ │ │ │ ├── crypto_kernel.c │ │ │ │ ├── err.c │ │ │ │ └── key.c │ │ │ ├── math │ │ │ │ ├── datatypes.c │ │ │ │ ├── gf2_8.c │ │ │ │ ├── math.c │ │ │ │ └── stat.c │ │ │ ├── replay │ │ │ │ ├── rdb.c │ │ │ │ ├── rdbx.c │ │ │ │ └── ut_sim.c │ │ │ └── rng │ │ │ │ ├── ctr_prng.c │ │ │ │ ├── prng.c │ │ │ │ ├── rand_linux_kernel.c │ │ │ │ └── rand_source.c │ │ ├── doc │ │ │ ├── Doxyfile │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── crypto_kernel.txt │ │ │ ├── header.template │ │ │ ├── intro.txt │ │ │ └── references.txt │ │ ├── include │ │ │ ├── getopt_s.h │ │ │ ├── rtp.h │ │ │ ├── rtp_priv.h │ │ │ ├── srtp.h │ │ │ ├── srtp_priv.h │ │ │ └── ut_sim.h │ │ ├── install-sh │ │ ├── pjlib │ │ │ └── srtp_err.c │ │ ├── srtp.def │ │ ├── srtp │ │ │ └── srtp.c │ │ ├── srtp7.sln │ │ ├── tables │ │ │ └── aes_tables.c │ │ ├── timing │ │ ├── undos.sh │ │ └── update.sh │ ├── webrtc │ │ └── src │ │ │ ├── common_audio │ │ │ └── signal_processing_library │ │ │ │ ├── OWNERS │ │ │ │ └── main │ │ │ │ ├── interface │ │ │ │ ├── signal_processing_library.h │ │ │ │ ├── spl_inl.h │ │ │ │ └── spl_inl_armv7.h │ │ │ │ └── source │ │ │ │ ├── auto_corr_to_refl_coef.c │ │ │ │ ├── auto_correlation.c │ │ │ │ ├── complex_bit_reverse.c │ │ │ │ ├── complex_fft.c │ │ │ │ ├── complex_ifft.c │ │ │ │ ├── copy_set_operations.c │ │ │ │ ├── cos_table.c │ │ │ │ ├── cross_correlation.c │ │ │ │ ├── division_operations.c │ │ │ │ ├── dot_product_with_scale.c │ │ │ │ ├── downsample_fast.c │ │ │ │ ├── energy.c │ │ │ │ ├── filter_ar.c │ │ │ │ ├── filter_ar_fast_q12.c │ │ │ │ ├── filter_ma_fast_q12.c │ │ │ │ ├── get_hanning_window.c │ │ │ │ ├── get_scaling_square.c │ │ │ │ ├── hanning_table.c │ │ │ │ ├── ilbc_specific_functions.c │ │ │ │ ├── levinson_durbin.c │ │ │ │ ├── lpc_to_refl_coef.c │ │ │ │ ├── min_max_operations.c │ │ │ │ ├── min_max_operations_neon.c │ │ │ │ ├── randn_table.c │ │ │ │ ├── randomization_functions.c │ │ │ │ ├── refl_coef_to_lpc.c │ │ │ │ ├── resample.c │ │ │ │ ├── resample_48khz.c │ │ │ │ ├── resample_by_2.c │ │ │ │ ├── resample_by_2_internal.c │ │ │ │ ├── resample_by_2_internal.h │ │ │ │ ├── resample_fractional.c │ │ │ │ ├── sin_table.c │ │ │ │ ├── sin_table_1024.c │ │ │ │ ├── spl_sqrt.c │ │ │ │ ├── spl_sqrt_floor.c │ │ │ │ ├── spl_version.c │ │ │ │ ├── splitting_filter.c │ │ │ │ ├── sqrt_of_one_minus_x_squared.c │ │ │ │ ├── vector_scaling_operations.c │ │ │ │ ├── webrtc_fft_t_1024_8.c │ │ │ │ └── webrtc_fft_t_rad.c │ │ │ ├── common_types.h │ │ │ ├── engine_configurations.h │ │ │ ├── modules │ │ │ └── audio_processing │ │ │ │ ├── aec │ │ │ │ └── main │ │ │ │ │ ├── interface │ │ │ │ │ └── echo_cancellation.h │ │ │ │ │ ├── matlab │ │ │ │ │ └── fullaec.m │ │ │ │ │ └── source │ │ │ │ │ ├── aec_core.c │ │ │ │ │ ├── aec_core.h │ │ │ │ │ ├── aec_core_sse2.c │ │ │ │ │ ├── aec_rdft.c │ │ │ │ │ ├── aec_rdft.h │ │ │ │ │ ├── aec_rdft_sse2.c │ │ │ │ │ ├── echo_cancellation.c │ │ │ │ │ ├── resampler.c │ │ │ │ │ └── resampler.h │ │ │ │ ├── agc │ │ │ │ └── main │ │ │ │ │ ├── interface │ │ │ │ │ └── gain_control.h │ │ │ │ │ └── source │ │ │ │ │ ├── analog_agc.c │ │ │ │ │ ├── analog_agc.h │ │ │ │ │ ├── digital_agc.c │ │ │ │ │ └── digital_agc.h │ │ │ │ ├── ns │ │ │ │ └── main │ │ │ │ │ ├── interface │ │ │ │ │ ├── noise_suppression.h │ │ │ │ │ └── noise_suppression_x.h │ │ │ │ │ └── source │ │ │ │ │ ├── defines.h │ │ │ │ │ ├── noise_suppression.c │ │ │ │ │ ├── noise_suppression_x.c │ │ │ │ │ ├── ns_core.c │ │ │ │ │ ├── ns_core.h │ │ │ │ │ ├── nsx_core.c │ │ │ │ │ ├── nsx_core.h │ │ │ │ │ ├── nsx_core_neon.c │ │ │ │ │ ├── nsx_defines.h │ │ │ │ │ └── windows_private.h │ │ │ │ └── utility │ │ │ │ ├── fft4g.c │ │ │ │ ├── fft4g.h │ │ │ │ ├── ring_buffer.c │ │ │ │ └── ring_buffer.h │ │ │ ├── system_wrappers │ │ │ ├── OWNERS │ │ │ ├── interface │ │ │ │ ├── aligned_malloc.h │ │ │ │ ├── atomic32_wrapper.h │ │ │ │ ├── condition_variable_wrapper.h │ │ │ │ ├── constructor_magic.h │ │ │ │ ├── cpu_features_wrapper.h │ │ │ │ ├── cpu_wrapper.h │ │ │ │ ├── critical_section_wrapper.h │ │ │ │ ├── data_log.h │ │ │ │ ├── data_log_impl.h │ │ │ │ ├── event_wrapper.h │ │ │ │ ├── file_wrapper.h │ │ │ │ ├── fix_interlocked_exchange_pointer_windows.h │ │ │ │ ├── list_wrapper.h │ │ │ │ ├── map_wrapper.h │ │ │ │ ├── ref_count.h │ │ │ │ ├── rpcsal.h │ │ │ │ ├── rw_lock_wrapper.h │ │ │ │ ├── scoped_ptr.h │ │ │ │ ├── sort.h │ │ │ │ ├── thread_wrapper.h │ │ │ │ ├── tick_util.h │ │ │ │ └── trace.h │ │ │ └── source │ │ │ │ ├── aligned_malloc.cc │ │ │ │ ├── atomic32.cc │ │ │ │ ├── atomic32_linux.h │ │ │ │ ├── atomic32_mac.h │ │ │ │ ├── atomic32_windows.h │ │ │ │ ├── condition_variable.cc │ │ │ │ ├── condition_variable_posix.cc │ │ │ │ ├── condition_variable_posix.h │ │ │ │ ├── condition_variable_windows.cc │ │ │ │ ├── condition_variable_windows.h │ │ │ │ ├── cpu.cc │ │ │ │ ├── cpu_features.cc │ │ │ │ ├── cpu_linux.cc │ │ │ │ ├── cpu_linux.h │ │ │ │ ├── cpu_mac.cc │ │ │ │ ├── cpu_mac.h │ │ │ │ ├── cpu_windows.cc │ │ │ │ ├── cpu_windows.h │ │ │ │ ├── critical_section.cc │ │ │ │ ├── critical_section_posix.cc │ │ │ │ ├── critical_section_posix.h │ │ │ │ ├── critical_section_windows.cc │ │ │ │ ├── critical_section_windows.h │ │ │ │ ├── data_log.cc │ │ │ │ ├── data_log_dummy.cc │ │ │ │ ├── data_log_helpers_unittest.cc │ │ │ │ ├── data_log_unittest.cc │ │ │ │ ├── event.cc │ │ │ │ ├── event_posix.cc │ │ │ │ ├── event_posix.h │ │ │ │ ├── event_windows.cc │ │ │ │ ├── event_windows.h │ │ │ │ ├── file_impl.cc │ │ │ │ ├── file_impl.h │ │ │ │ ├── list_no_stl.cc │ │ │ │ ├── list_no_stl.h │ │ │ │ ├── list_stl.cc │ │ │ │ ├── list_stl.h │ │ │ │ ├── list_unittest.cc │ │ │ │ ├── map.cc │ │ │ │ ├── map_no_stl.cc │ │ │ │ ├── map_no_stl.h │ │ │ │ ├── map_unittest.cc │ │ │ │ ├── rw_lock.cc │ │ │ │ ├── rw_lock_generic.cc │ │ │ │ ├── rw_lock_generic.h │ │ │ │ ├── rw_lock_posix.cc │ │ │ │ ├── rw_lock_posix.h │ │ │ │ ├── rw_lock_windows.cc │ │ │ │ ├── rw_lock_windows.h │ │ │ │ ├── sort.cc │ │ │ │ ├── spreadsortlib │ │ │ │ ├── constants.hpp │ │ │ │ └── spreadsort.hpp │ │ │ │ ├── thread.cc │ │ │ │ ├── thread_posix.cc │ │ │ │ ├── thread_posix.h │ │ │ │ ├── thread_windows.cc │ │ │ │ ├── thread_windows.h │ │ │ │ ├── thread_windows_set_name.h │ │ │ │ ├── trace_impl.cc │ │ │ │ ├── trace_impl.h │ │ │ │ ├── trace_posix.cc │ │ │ │ ├── trace_posix.h │ │ │ │ ├── trace_windows.cc │ │ │ │ └── trace_windows.h │ │ │ └── typedefs.h │ └── zsrtp │ │ ├── include │ │ ├── ZsrtpCWrapper.h │ │ └── openssl_compat.h │ │ ├── srtp │ │ └── ZsrtpCWrapper.cpp │ │ └── zrtp │ │ ├── COPYING │ │ ├── README.md │ │ ├── base_version │ │ ├── common │ │ ├── EventClass.cpp │ │ ├── EventClass.h │ │ ├── MutexClass.cpp │ │ ├── MutexClass.h │ │ ├── Thread.cpp │ │ ├── Thread.h │ │ ├── osSpecifics.c │ │ └── osSpecifics.h │ │ ├── cryptcommon │ │ ├── ZrtpRandom.cpp │ │ ├── ZrtpRandom.h │ │ ├── aes.h │ │ ├── aes_modes.c │ │ ├── aescpp.h │ │ ├── aescrypt.c │ │ ├── aeskey.c │ │ ├── aesopt.h │ │ ├── aestab.c │ │ ├── aestab.h │ │ ├── brg_endian.h │ │ ├── brg_types.h │ │ ├── macSkein.cpp │ │ ├── macSkein.h │ │ ├── skein.c │ │ ├── skein.h │ │ ├── skeinApi.c │ │ ├── skeinApi.h │ │ ├── skein_block.c │ │ ├── skein_iv.h │ │ ├── skein_port.h │ │ ├── twofish.c │ │ ├── twofish.h │ │ └── twofish_cfb.c │ │ ├── srtp │ │ ├── CryptoContext.cpp │ │ ├── CryptoContext.h │ │ ├── CryptoContextCtrl.cpp │ │ ├── CryptoContextCtrl.h │ │ ├── SrtpHandler.cpp │ │ ├── SrtpHandler.h │ │ └── crypto │ │ │ ├── SrtpSymCrypto.cpp │ │ │ ├── SrtpSymCrypto.h │ │ │ ├── gcrypt │ │ │ ├── InitializeGcrypt.cpp │ │ │ ├── gcryptSrtpSymCrypto.cpp │ │ │ └── gcrypthmac.cpp │ │ │ ├── hmac.cpp │ │ │ ├── hmac.h │ │ │ ├── openssl │ │ │ ├── SrtpSymCrypto.cpp │ │ │ └── hmac.cpp │ │ │ ├── sha1.c │ │ │ └── sha1.h │ │ └── zrtp │ │ ├── Base32.cpp │ │ ├── ZIDCacheDb.cpp │ │ ├── ZIDCacheFile.cpp │ │ ├── ZIDRecordDb.cpp │ │ ├── ZIDRecordFile.cpp │ │ ├── ZRtp.cpp │ │ ├── ZrtpCWrapper.cpp │ │ ├── ZrtpCallbackWrapper.cpp │ │ ├── ZrtpConfigure.cpp │ │ ├── ZrtpCrc32.cpp │ │ ├── ZrtpPacketClearAck.cpp │ │ ├── ZrtpPacketCommit.cpp │ │ ├── ZrtpPacketConf2Ack.cpp │ │ ├── ZrtpPacketConfirm.cpp │ │ ├── ZrtpPacketDHPart.cpp │ │ ├── ZrtpPacketError.cpp │ │ ├── ZrtpPacketErrorAck.cpp │ │ ├── ZrtpPacketGoClear.cpp │ │ ├── ZrtpPacketHello.cpp │ │ ├── ZrtpPacketHelloAck.cpp │ │ ├── ZrtpPacketPing.cpp │ │ ├── ZrtpPacketPingAck.cpp │ │ ├── ZrtpPacketRelayAck.cpp │ │ ├── ZrtpPacketSASrelay.cpp │ │ ├── ZrtpSdesStream.cpp │ │ ├── ZrtpStateClass.cpp │ │ ├── ZrtpTextData.cpp │ │ ├── crypto │ │ ├── aesCFB.cpp │ │ ├── aesCFB.h │ │ ├── gcrypt │ │ │ ├── InitializeGcrypt.cpp │ │ │ ├── gcryptAesCFB.cpp │ │ │ ├── gcryptZrtpDH.cpp │ │ │ ├── gcrypthmac256.cpp │ │ │ ├── gcrypthmac384.cpp │ │ │ ├── gcryptsha256.cpp │ │ │ └── gcryptsha384.cpp │ │ ├── hmac256.cpp │ │ ├── hmac256.h │ │ ├── hmac384.cpp │ │ ├── hmac384.h │ │ ├── openssl │ │ │ ├── InitializeOpenSSL.cpp │ │ │ ├── aesCFB.cpp │ │ │ ├── hmac256.cpp │ │ │ ├── hmac384.cpp │ │ │ ├── sha256.cpp │ │ │ ├── sha384.cpp │ │ │ └── zrtpDH.cpp │ │ ├── sha2.c │ │ ├── sha2.h │ │ ├── sha256.cpp │ │ ├── sha256.h │ │ ├── sha384.cpp │ │ ├── sha384.h │ │ ├── skein256.cpp │ │ ├── skein256.h │ │ ├── skein384.cpp │ │ ├── skein384.h │ │ ├── skeinMac256.cpp │ │ ├── skeinMac256.h │ │ ├── skeinMac384.cpp │ │ ├── skeinMac384.h │ │ ├── twoCFB.cpp │ │ ├── twoCFB.h │ │ ├── zrtpDH.cpp │ │ └── zrtpDH.h │ │ ├── libzrtpcpp │ │ ├── Base32.h │ │ ├── ZIDCache.h │ │ ├── ZIDCacheDb.h │ │ ├── ZIDCacheFile.h │ │ ├── ZIDRecord.h │ │ ├── ZIDRecordDb.h │ │ ├── ZIDRecordFile.h │ │ ├── ZRtp.h │ │ ├── ZrtpCWrapper.h │ │ ├── ZrtpCallback.h │ │ ├── ZrtpCallbackWrapper.h │ │ ├── ZrtpCodes.h │ │ ├── ZrtpConfigure.h │ │ ├── ZrtpCrc32.h │ │ ├── ZrtpPacketBase.h │ │ ├── ZrtpPacketClearAck.h │ │ ├── ZrtpPacketCommit.h │ │ ├── ZrtpPacketConf2Ack.h │ │ ├── ZrtpPacketConfirm.h │ │ ├── ZrtpPacketDHPart.h │ │ ├── ZrtpPacketError.h │ │ ├── ZrtpPacketErrorAck.h │ │ ├── ZrtpPacketGoClear.h │ │ ├── ZrtpPacketHello.h │ │ ├── ZrtpPacketHelloAck.h │ │ ├── ZrtpPacketPing.h │ │ ├── ZrtpPacketPingAck.h │ │ ├── ZrtpPacketRelayAck.h │ │ ├── ZrtpPacketSASrelay.h │ │ ├── ZrtpSdesStream.h │ │ ├── ZrtpStateClass.h │ │ ├── ZrtpStates.h │ │ ├── ZrtpTextData.h │ │ ├── ZrtpUserCallback.h │ │ ├── zrtpB64Decode.h │ │ ├── zrtpB64Encode.h │ │ ├── zrtpCacheDbBackend.h │ │ └── zrtpPacket.h │ │ ├── zrtpB64Decode.c │ │ ├── zrtpB64Encode.c │ │ └── zrtpCacheSqliteBackend.c │ └── version.mak ├── docs ├── Dependencies.txt ├── DeveloperGuide.txt ├── Install.debian ├── Install.linux ├── Install.osx ├── Install.rasbian ├── Install.ubuntu ├── Install.windows ├── Licenses.txt └── Uninstall.txt ├── setup.py ├── setup_pjsip.py └── sipsimple ├── __info__.py ├── __init__.py ├── account ├── __init__.py ├── bonjour │ ├── __init__.py │ └── _bonjour.py ├── publication.py ├── registration.py ├── subscription.py └── xcap │ ├── __init__.py │ └── storage │ ├── __init__.py │ ├── file.py │ └── memory.py ├── addressbook.py ├── application.py ├── audio.py ├── configuration ├── __init__.py ├── backend │ ├── __init__.py │ ├── file.py │ └── memory.py ├── datatypes.py └── settings.py ├── core ├── __init__.py ├── _core.error.pxi ├── _core.event.pxi ├── _core.headers.pxi ├── _core.helper.pxi ├── _core.invitation.pxi ├── _core.lib.pxi ├── _core.mediatransport.pxi ├── _core.pxd ├── _core.pyx ├── _core.referral.pxi ├── _core.request.pxi ├── _core.sdp.pxi ├── _core.sound.pxi ├── _core.subscription.pxi ├── _core.ua.pxi ├── _core.util.pxi ├── _core.video.pxi ├── _engine.py ├── _helpers.py └── _primitives.py ├── logging.py ├── lookup.py ├── payloads ├── README.txt ├── __init__.py ├── addressbook.py ├── caps.py ├── cipid.py ├── commonpolicy.py ├── conference.py ├── datatypes.py ├── dialoginfo.py ├── dialogrules.py ├── directory.py ├── imdn.py ├── iscomposing.py ├── messagesummary.py ├── omapolicy.py ├── pidf.py ├── prescontent.py ├── presrules.py ├── resourcelists.py ├── rlmi.py ├── rlsnotify.py ├── rlsservices.py ├── rpid.py ├── watcherinfo.py ├── xcapcaps.py ├── xcapdiff.py └── xml-schemas │ ├── addressbook.xsd │ ├── caps.xsd │ ├── cipid.xsd │ ├── common-policy.xsd │ ├── common-schema.xsd │ ├── conference.xsd │ ├── data-model.xsd │ ├── dialog-info.xsd │ ├── dialog-rules.xsd │ ├── im-iscomposing.xsd │ ├── imdn.xsd │ ├── oma-common-policy.xsd │ ├── oma-pres-content.xsd │ ├── patchops.xsd │ ├── pidf.xsd │ ├── pres-rules.xsd │ ├── resourcelists.xsd │ ├── rlmi.xsd │ ├── rlsservices.xsd │ ├── rpid.xsd │ ├── watcherinfo.xsd │ ├── xcap-caps.xsd │ ├── xcap-directory.xsd │ ├── xcapdiff.xsd │ └── xml.xsd ├── session.py ├── storage.py ├── streams ├── __init__.py ├── msrp │ ├── __init__.py │ ├── chat.py │ ├── filetransfer.py │ └── screensharing.py └── rtp │ ├── __init__.py │ ├── audio.py │ └── video.py ├── threading ├── __init__.py └── green.py ├── util ├── __init__.py ├── _sha1.h └── _sha1.pyx └── video.py /.boring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/.boring -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/TODO -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | docs/DeveloperGuide.txt 2 | -------------------------------------------------------------------------------- /debian/python-sipsimple.lintian-overrides: -------------------------------------------------------------------------------- 1 | binary: possible-gpl-code-linked-with-openssl 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /deps/pjsip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/COPYING -------------------------------------------------------------------------------- /deps/pjsip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/Makefile -------------------------------------------------------------------------------- /deps/pjsip/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/README.txt -------------------------------------------------------------------------------- /deps/pjsip/aconfigure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/aconfigure -------------------------------------------------------------------------------- /deps/pjsip/aconfigure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/aconfigure.ac -------------------------------------------------------------------------------- /deps/pjsip/base_rev: -------------------------------------------------------------------------------- 1 | 5249 2 | -------------------------------------------------------------------------------- /deps/pjsip/build.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build.mak.in -------------------------------------------------------------------------------- /deps/pjsip/build/cc-auto.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/cc-auto.mak.in -------------------------------------------------------------------------------- /deps/pjsip/build/cc-gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/cc-gcc.mak -------------------------------------------------------------------------------- /deps/pjsip/build/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/common.mak -------------------------------------------------------------------------------- /deps/pjsip/build/host-mingw.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/host-mingw.mak -------------------------------------------------------------------------------- /deps/pjsip/build/host-unix.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/host-unix.mak -------------------------------------------------------------------------------- /deps/pjsip/build/host-win32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/host-win32.mak -------------------------------------------------------------------------------- /deps/pjsip/build/m-arm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/m-arm.mak -------------------------------------------------------------------------------- /deps/pjsip/build/m-auto.mak: -------------------------------------------------------------------------------- 1 | # Nothing needs to be defined here 2 | -------------------------------------------------------------------------------- /deps/pjsip/build/m-i386.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/m-i386.mak -------------------------------------------------------------------------------- /deps/pjsip/build/m-x86_64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/m-x86_64.mak -------------------------------------------------------------------------------- /deps/pjsip/build/os-auto.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/os-auto.mak.in -------------------------------------------------------------------------------- /deps/pjsip/build/rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/build/rules.mak -------------------------------------------------------------------------------- /deps/pjsip/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/config.guess -------------------------------------------------------------------------------- /deps/pjsip/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/config.sub -------------------------------------------------------------------------------- /deps/pjsip/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/configure -------------------------------------------------------------------------------- /deps/pjsip/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/install-sh -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/build/Makefile -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/docs/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/docs/doxygen.cfg -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/docs/doxygen.css -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/docs/footer.html -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/docs/header.html -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/include/pjlib-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/include/pjlib-util.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/base64.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/crc32.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/dns.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/errno.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/getopt.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/json.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/md5.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/pcap.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/sha1.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/string.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib-util/src/pjlib-util/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib-util/src/pjlib-util/xml.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/build/Makefile -------------------------------------------------------------------------------- /deps/pjsip/pjlib/build/os-auto.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/build/os-auto.mak.in -------------------------------------------------------------------------------- /deps/pjsip/pjlib/docs/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/docs/doxygen.cfg -------------------------------------------------------------------------------- /deps/pjsip/pjlib/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/docs/doxygen.css -------------------------------------------------------------------------------- /deps/pjsip/pjlib/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/docs/footer.html -------------------------------------------------------------------------------- /deps/pjsip/pjlib/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/docs/header.html -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/file.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/hash.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/list.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/lock.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/os.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/pool.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/proactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/proactor.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/scanner.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/sock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/sock.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/string.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/timer.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/tree.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj++/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj++/types.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/activesock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/activesock.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/addr_resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/addr_resolv.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/array.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/assert.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/assert.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/cc_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/cc_armcc.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/cc_codew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/cc_codew.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/cc_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/cc_gcc.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/cc_gcce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/cc_gcce.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/cc_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/cc_msvc.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/cc_mwcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/cc_mwcc.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/ctype.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/errno.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/m_alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/m_alpha.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/m_armv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/m_armv4.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/m_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/m_i386.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/m_m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/m_m68k.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/m_sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/m_sparc.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/m_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/m_x86_64.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/malloc.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/os_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/os_linux.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/os_rtems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/os_rtems.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/os_sunos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/os_sunos.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/os_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/os_win32.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/rand.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/setjmp.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/size_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/size_t.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/socket.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/stdarg.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/string.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/compat/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/compat/time.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/config.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/ctype.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/doxygen.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/errno.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/except.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/fifobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/fifobuf.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/file_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/file_access.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/file_io.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/guid.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/hash.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/ioqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/ioqueue.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/ip_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/ip_helper.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/list.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/list_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/list_i.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/lock.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/log.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/math.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/os.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/pool.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/pool_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/pool_alt.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/pool_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/pool_buf.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/pool_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/pool_i.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/rand.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/rbtree.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/sock.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/sock_qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/sock_qos.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/sock_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/sock_select.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/ssl_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/ssl_sock.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/string.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/string_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/string_i.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/timer.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/types.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pj/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pj/unicode.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pjlib++.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pjlib++.hpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/include/pjlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/include/pjlib.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/activesock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/activesock.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/addr_resolv_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/addr_resolv_sock.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/array.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/compat/longjmp_i386.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/compat/longjmp_i386.S -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/compat/setjmp_i386.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/compat/setjmp_i386.S -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/compat/sigjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/compat/sigjmp.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/compat/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/compat/string.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/config.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ctype.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/errno.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/except.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/except.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/exception_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/exception_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/extra-exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/extra-exports.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/fifobuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/fifobuf.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/file_access_unistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/file_access_unistd.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/file_access_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/file_access_win32.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/file_io_ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/file_io_ansi.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/file_io_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/file_io_win32.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/guid.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/guid_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/guid_simple.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/guid_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/guid_uuid.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/guid_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/guid_win32.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/hash.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ioqueue_common_abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ioqueue_common_abs.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ioqueue_common_abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ioqueue_common_abs.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ioqueue_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ioqueue_dummy.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ioqueue_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ioqueue_epoll.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ioqueue_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ioqueue_select.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ioqueue_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ioqueue_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ioqueue_winnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ioqueue_winnt.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ip_helper_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ip_helper_generic.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ip_helper_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ip_helper_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ip_helper_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ip_helper_win32.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/list.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/lock.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/log.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/log_writer_printk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/log_writer_printk.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/log_writer_stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/log_writer_stdout.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_core_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_core_darwin.m -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_core_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_core_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_core_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_core_unix.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_core_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_core_win32.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_error_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_error_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_error_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_error_unix.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_error_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_error_win32.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_info.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_info_iphone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_info_iphone.m -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_info_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_info_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_rwmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_rwmutex.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_symbian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_symbian.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_time_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_time_bsd.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_time_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_time_common.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_time_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_time_unix.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_time_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_time_win32.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_timestamp_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_timestamp_common.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_timestamp_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_timestamp_posix.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/os_timestamp_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/os_timestamp_win32.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/pool.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/pool_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/pool_buf.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/pool_caching.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/pool_caching.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/pool_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/pool_dbg.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/pool_policy_kmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/pool_policy_kmalloc.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/pool_policy_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/pool_policy_malloc.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/pool_policy_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/pool_policy_new.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/pool_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/pool_signature.h -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/rand.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/rbtree.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/sock_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/sock_bsd.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/sock_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/sock_common.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/sock_linux_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/sock_linux_kernel.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/sock_qos_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/sock_qos_bsd.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/sock_qos_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/sock_qos_common.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/sock_qos_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/sock_qos_dummy.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/sock_qos_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/sock_qos_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/sock_qos_wm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/sock_qos_wm.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/sock_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/sock_select.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/sock_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/sock_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ssl_sock_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ssl_sock_common.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ssl_sock_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ssl_sock_dump.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ssl_sock_ossl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ssl_sock_ossl.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/ssl_sock_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/ssl_sock_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/string.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/symbols.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/timer.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/timer_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/timer_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/types.c -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/unicode_symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/unicode_symbian.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjlib/src/pj/unicode_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjlib/src/pj/unicode_win32.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/README.txt -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/build/Makefile -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/build/os-auto.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/build/os-auto.mak.in -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/docs/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/docs/doxygen.cfg -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/docs/footer.html -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/docs/header.html -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/docs/master-port.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/docs/master-port.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/docs/media-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/docs/media-flow.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/docs/media-flow.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/docs/media-flow.vsd -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/docs/media-transport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/docs/media-transport.PNG -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/docs/siprtp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/docs/siprtp.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/docs/sndtest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/docs/sndtest.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia-codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia-codec.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/avi.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/circbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/circbuf.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/clock.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/codec.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/config.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/delaybuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/delaybuf.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/doxygen.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/echo.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/endpoint.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/errno.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/event.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/format.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/frame.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/g711.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/jbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/jbuf.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/mem_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/mem_port.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/plc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/plc.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/port.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/resample.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/rtcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/rtcp.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/rtcp_xr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/rtcp_xr.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/rtp.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/sdp.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/sdp_neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/sdp_neg.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/session.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/sound.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/stereo.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/stream.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/tonegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/tonegen.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/types.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/vid_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/vid_port.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/vid_tee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/vid_tee.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/wav_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/wav_port.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/wave.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia/wsola.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia/wsola.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia_audiodev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia_audiodev.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/include/pjmedia_videodev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/include/pjmedia_videodev.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia-codec/g722.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia-codec/g722.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia-codec/g7221.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia-codec/g7221.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia-codec/gsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia-codec/gsm.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia-codec/ilbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia-codec/ilbc.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia-codec/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia-codec/opus.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia-codec/vpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia-codec/vpx.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/alaw_ulaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/alaw_ulaw.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/avi_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/avi_player.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/clock_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/clock_thread.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/codec.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/conf_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/conf_switch.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/conference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/conference.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/converter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/converter.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/delaybuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/delaybuf.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/dummy.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/echo_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/echo_common.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/echo_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/echo_port.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/echo_speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/echo_speex.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/endpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/endpoint.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/errno.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/event.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/ffmpeg_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/ffmpeg_util.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/ffmpeg_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/ffmpeg_util.h -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/format.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/g711.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/jbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/jbuf.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/master_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/master_port.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/mem_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/mem_capture.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/mem_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/mem_player.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/mixer_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/mixer_port.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/null_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/null_port.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/plc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/plc_common.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/port.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/rtcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/rtcp.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/rtcp_xr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/rtcp_xr.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/rtp.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/sdp.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/sdp_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/sdp_cmp.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/sdp_neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/sdp_neg.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/sdp_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/sdp_wrap.cpp -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/session.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/silencedet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/silencedet.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/sound_legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/sound_legacy.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/sound_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/sound_port.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/splitcomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/splitcomb.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/stereo_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/stereo_port.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/stream.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/stream_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/stream_info.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/tonegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/tonegen.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/types.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/vid_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/vid_codec.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/vid_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/vid_port.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/vid_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/vid_stream.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/vid_tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/vid_tee.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/wav_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/wav_player.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/wav_playlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/wav_playlist.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/wav_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/wav_writer.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/wave.c -------------------------------------------------------------------------------- /deps/pjsip/pjmedia/src/pjmedia/wsola.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjmedia/src/pjmedia/wsola.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/build/Makefile -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/UML-class-diagram.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/UML-class-diagram.dia -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/UML-class-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/UML-class-diagram.png -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/doc_ice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/doc_ice.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/doc_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/doc_mainpage.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/doc_nat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/doc_nat.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/doc_samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/doc_samples.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/doc_stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/doc_stun.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/doc_turn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/doc_turn.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/doxygen.cfg -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/doxygen.css -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/footer.html -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/header.html -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/ice-arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/ice-arch.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/ice_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/ice_demo.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/pjturn_client.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/pjturn_client.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjnath/docs/stun-arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/docs/stun-arch.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjnath/include/pjnath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/include/pjnath.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/include/pjnath/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/include/pjnath/config.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/include/pjnath/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/include/pjnath/errno.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/include/pjnath/ice_strans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/include/pjnath/ice_strans.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/include/pjnath/nat_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/include/pjnath/nat_detect.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/include/pjnath/stun_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/include/pjnath/stun_auth.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/include/pjnath/stun_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/include/pjnath/stun_msg.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/include/pjnath/stun_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/include/pjnath/stun_sock.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/include/pjnath/turn_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/include/pjnath/turn_sock.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/include/pjnath/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/include/pjnath/types.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/errno.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/ice_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/ice_session.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/ice_strans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/ice_strans.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/nat_detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/nat_detect.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/stun_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/stun_auth.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/stun_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/stun_msg.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/stun_msg_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/stun_msg_dump.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/stun_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/stun_session.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/stun_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/stun_sock.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/turn_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/turn_session.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjnath/turn_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjnath/turn_sock.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjturn-srv/allocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjturn-srv/allocation.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjturn-srv/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjturn-srv/auth.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjturn-srv/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjturn-srv/auth.h -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjturn-srv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjturn-srv/main.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjturn-srv/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjturn-srv/server.c -------------------------------------------------------------------------------- /deps/pjsip/pjnath/src/pjturn-srv/turn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjnath/src/pjturn-srv/turn.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/build/Makefile -------------------------------------------------------------------------------- /deps/pjsip/pjsip/build/os-auto.mak.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/pjsip/pjsip/docs/PJSUA-TESTING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/docs/PJSUA-TESTING.txt -------------------------------------------------------------------------------- /deps/pjsip/pjsip/docs/TRANSPORT-PROBLEMS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/docs/TRANSPORT-PROBLEMS.TXT -------------------------------------------------------------------------------- /deps/pjsip/pjsip/docs/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/docs/doxygen.cfg -------------------------------------------------------------------------------- /deps/pjsip/pjsip/docs/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/docs/doxygen.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/docs/footer.html -------------------------------------------------------------------------------- /deps/pjsip/pjsip/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/docs/header.html -------------------------------------------------------------------------------- /deps/pjsip/pjsip/docs/pjsip-arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/docs/pjsip-arch.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjsip/docs/pjsip-perf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/docs/pjsip-perf.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjsip/docs/pjsua.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/docs/pjsua.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjsip/docs/siprtp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/docs/siprtp.jpg -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-simple/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-simple/errno.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-simple/evsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-simple/evsub.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-simple/mwi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-simple/mwi.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-simple/pidf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-simple/pidf.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-simple/rpid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-simple/rpid.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-simple/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-simple/types.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-simple/xpidf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-simple/xpidf.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-ua/sip_inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-ua/sip_inv.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-ua/sip_regc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-ua/sip_regc.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-ua/sip_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-ua/sip_timer.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip-ua/sip_xfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip-ua/sip_xfer.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/print_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/print_util.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_auth.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_auth_aka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_auth_aka.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_auth_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_auth_msg.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_config.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_dialog.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_endpoint.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_errno.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_event.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_module.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_msg.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_parser.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_private.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_resolve.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_tel_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_tel_uri.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_types.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_ua_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_ua_layer.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_uri.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip/sip_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip/sip_util.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip_auth.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip_simple.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/include/pjsip_ua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/include/pjsip_ua.h -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-simple/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-simple/errno.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-simple/evsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-simple/evsub.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-simple/evsub_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-simple/evsub_msg.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-simple/mwi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-simple/mwi.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-simple/pidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-simple/pidf.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-simple/presence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-simple/presence.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-simple/publishc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-simple/publishc.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-simple/rpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-simple/rpid.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-simple/xpidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-simple/xpidf.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-ua/sip_100rel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-ua/sip_100rel.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-ua/sip_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-ua/sip_inv.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-ua/sip_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-ua/sip_reg.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-ua/sip_replaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-ua/sip_replaces.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-ua/sip_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-ua/sip_timer.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip-ua/sip_xfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip-ua/sip_xfer.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_auth_aka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_auth_aka.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_auth_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_auth_client.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_auth_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_auth_msg.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_auth_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_auth_parser.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_auth_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_auth_server.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_config.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_dialog.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_endpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_endpoint.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_errno.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_msg.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_multipart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_multipart.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_parser.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_resolve.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_tel_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_tel_uri.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_transaction.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_transport.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_ua_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_ua_layer.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_uri.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_util.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_util_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_util_proxy.c -------------------------------------------------------------------------------- /deps/pjsip/pjsip/src/pjsip/sip_util_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/pjsip/src/pjsip/sip_util_wrap.cpp -------------------------------------------------------------------------------- /deps/pjsip/third_party/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/README.txt -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/g7221/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/g7221/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/gsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/gsm/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/gsm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/gsm/config.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/ilbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/ilbc/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/opus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/opus/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/os-auto.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/os-auto.mak.in -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/speex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/speex/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/speex/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/speex/config.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/srtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/srtp/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/webrtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/webrtc/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/build/zsrtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/build/zsrtp/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/common/common.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/common/config.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/common/count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/common/count.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/common/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/common/defs.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/common/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/common/tables.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/common/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/common/tables.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/common/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/common/typedef.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/decode/dct4_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/decode/dct4_s.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/decode/dct4_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/decode/dct4_s.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/decode/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/decode/decoder.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/g7221/encode/dct4_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/g7221/encode/dct4_a.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/COPYRIGHT -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/ChangeLog -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/INSTALL -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/MACHINES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/MACHINES -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/MANIFEST -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/README -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/inc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/inc/config.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/inc/gsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/inc/gsm.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/inc/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/inc/private.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/inc/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/inc/proto.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/inc/toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/inc/toast.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/inc/unproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/inc/unproto.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/man/bitter.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/man/bitter.1 -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/man/gsm.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/man/gsm.3 -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/man/gsm_print.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/man/gsm_print.3 -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/man/toast.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/man/toast.1 -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/add.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/code.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/debug.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/decode.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/gsm_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/gsm_print.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/long_term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/long_term.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/lpc.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/rpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/rpe.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/table.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/toast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/toast.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/src/toast_lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/src/toast_lin.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tls/bitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tls/bitter.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tls/bitter.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tls/bitter.dta -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tls/ginger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tls/ginger.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tls/sour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tls/sour.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tls/sour1.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tls/sour1.dta -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tls/sour2.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tls/sour2.dta -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tls/sweet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tls/sweet.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tls/taste.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tls/taste.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tls/taste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tls/taste.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tst/cod2lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tst/cod2lin.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tst/cod2txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tst/cod2txt.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tst/gsm2cod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tst/gsm2cod.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tst/lin2cod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tst/lin2cod.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tst/lin2txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tst/lin2txt.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/gsm/tst/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/gsm/tst/run -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/LPCdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/LPCdecode.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/LPCdecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/LPCdecode.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/LPCencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/LPCencode.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/LPCencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/LPCencode.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/StateSearchW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/StateSearchW.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/StateSearchW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/StateSearchW.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/anaFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/anaFilter.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/anaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/anaFilter.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/constants.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/constants.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/createCB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/createCB.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/createCB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/createCB.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/doCPLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/doCPLC.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/doCPLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/doCPLC.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/enhancer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/enhancer.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/enhancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/enhancer.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/filter.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/filter.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/gainquant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/gainquant.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/gainquant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/gainquant.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/getCBvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/getCBvec.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/getCBvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/getCBvec.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/helpfun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/helpfun.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/helpfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/helpfun.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/hpInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/hpInput.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/hpInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/hpInput.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/hpOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/hpOutput.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/hpOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/hpOutput.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/iCBConstruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/iCBConstruct.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/iCBConstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/iCBConstruct.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/iCBSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/iCBSearch.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/iCBSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/iCBSearch.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/iLBC_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/iLBC_decode.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/iLBC_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/iLBC_decode.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/iLBC_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/iLBC_define.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/iLBC_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/iLBC_encode.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/iLBC_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/iLBC_encode.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/iLBC_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/iLBC_test.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/lsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/lsf.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/lsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/lsf.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/packing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/packing.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/packing.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/syntFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/syntFilter.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/ilbc/syntFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/ilbc/syntFilter.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/milenage/milenage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/milenage/milenage.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/milenage/milenage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/milenage/milenage.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/milenage/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/milenage/rijndael.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/milenage/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/milenage/rijndael.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/mp3/mp3_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/mp3/mp3_port.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/mp3/mp3_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/mp3/mp3_writer.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/.gitignore -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/AUTHORS -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/COPYING -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/INSTALL -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/Makefile.am -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/Makefile.in -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/Makefile.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/Makefile.mips -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/Makefile.unix -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/README -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/aclocal.m4 -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/arch.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/bands.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/bands.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/celt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/celt.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/celt.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/cwrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/cwrs.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/cwrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/cwrs.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/entcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/entcode.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/entcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/entcode.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/entdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/entdec.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/entdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/entdec.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/entenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/entenc.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/entenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/entenc.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/laplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/laplace.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/laplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/laplace.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/mathops.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/mathops.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/mdct.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/mdct.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/modes.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/modes.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/pitch.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/pitch.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/rate.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/rate.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/vq.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/celt/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/celt/vq.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/compile -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/config.guess -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/config.h.in -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/config.sub -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/configure -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/configure.ac -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/depcomp -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/doc/TODO -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/include/opus.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/install-sh -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/ltmain.sh -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/m4/libtool.m4 -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/m4/ltsugar.m4 -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/missing -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/opus.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/opus.m4 -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/opus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/opus.pc.in -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/package_version: -------------------------------------------------------------------------------- 1 | PACKAGE_VERSION="1.1.2" 2 | -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/A2NLSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/A2NLSF.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/API.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/CNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/CNG.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/Inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/Inlines.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/NLSF2A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/NLSF2A.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/NLSF_VQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/NLSF_VQ.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/NSQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/NSQ.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/PLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/PLC.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/PLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/PLC.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/VAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/VAD.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/control.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/debug.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/debug.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/dec_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/dec_API.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/define.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/enc_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/enc_API.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/errors.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/lin2log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/lin2log.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/log2lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/log2lin.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/macros.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/main.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/sort.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/structs.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/tables.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/silk/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/silk/typedef.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/src/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/src/analysis.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/src/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/src/analysis.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/src/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/src/mlp.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/src/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/src/mlp.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/src/mlp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/src/mlp_data.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/src/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/src/opus.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/test-driver -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/version.mk -------------------------------------------------------------------------------- /deps/pjsip/third_party/opus/win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/opus/win32/config.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/resample/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/resample/COPYING -------------------------------------------------------------------------------- /deps/pjsip/third_party/speex/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/speex/AUTHORS -------------------------------------------------------------------------------- /deps/pjsip/third_party/speex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/speex/COPYING -------------------------------------------------------------------------------- /deps/pjsip/third_party/speex/libspeex/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/speex/libspeex/vq.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/speex/libspeex/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/speex/libspeex/vq.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/CHANGES -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/LICENSE -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/Makefile.in -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/README -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/TODO -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/VERSION: -------------------------------------------------------------------------------- 1 | 1.4.4 2 | -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/config.hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/config.hw -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/config_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/config_in.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/configure -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/configure.in -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/crypto/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/doc/Doxyfile -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/doc/Makefile -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/doc/intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/doc/intro.txt -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/include/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/include/rtp.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/include/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/include/srtp.h -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/install-sh -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/srtp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/srtp.def -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/srtp/srtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/srtp/srtp.c -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/srtp7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/srtp7.sln -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/timing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/timing -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/undos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/undos.sh -------------------------------------------------------------------------------- /deps/pjsip/third_party/srtp/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/srtp/update.sh -------------------------------------------------------------------------------- /deps/pjsip/third_party/zsrtp/zrtp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/third_party/zsrtp/zrtp/COPYING -------------------------------------------------------------------------------- /deps/pjsip/third_party/zsrtp/zrtp/base_version: -------------------------------------------------------------------------------- 1 | 4.4.0-dev 2 | -------------------------------------------------------------------------------- /deps/pjsip/version.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/deps/pjsip/version.mak -------------------------------------------------------------------------------- /docs/Dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/docs/Dependencies.txt -------------------------------------------------------------------------------- /docs/DeveloperGuide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/docs/DeveloperGuide.txt -------------------------------------------------------------------------------- /docs/Install.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/docs/Install.debian -------------------------------------------------------------------------------- /docs/Install.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/docs/Install.linux -------------------------------------------------------------------------------- /docs/Install.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/docs/Install.osx -------------------------------------------------------------------------------- /docs/Install.rasbian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/docs/Install.rasbian -------------------------------------------------------------------------------- /docs/Install.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/docs/Install.ubuntu -------------------------------------------------------------------------------- /docs/Install.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/docs/Install.windows -------------------------------------------------------------------------------- /docs/Licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/docs/Licenses.txt -------------------------------------------------------------------------------- /docs/Uninstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/docs/Uninstall.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/setup.py -------------------------------------------------------------------------------- /setup_pjsip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/setup_pjsip.py -------------------------------------------------------------------------------- /sipsimple/__info__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/__info__.py -------------------------------------------------------------------------------- /sipsimple/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/__init__.py -------------------------------------------------------------------------------- /sipsimple/account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/account/__init__.py -------------------------------------------------------------------------------- /sipsimple/account/bonjour/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/account/bonjour/__init__.py -------------------------------------------------------------------------------- /sipsimple/account/bonjour/_bonjour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/account/bonjour/_bonjour.py -------------------------------------------------------------------------------- /sipsimple/account/publication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/account/publication.py -------------------------------------------------------------------------------- /sipsimple/account/registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/account/registration.py -------------------------------------------------------------------------------- /sipsimple/account/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/account/subscription.py -------------------------------------------------------------------------------- /sipsimple/account/xcap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/account/xcap/__init__.py -------------------------------------------------------------------------------- /sipsimple/account/xcap/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/account/xcap/storage/__init__.py -------------------------------------------------------------------------------- /sipsimple/account/xcap/storage/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/account/xcap/storage/file.py -------------------------------------------------------------------------------- /sipsimple/account/xcap/storage/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/account/xcap/storage/memory.py -------------------------------------------------------------------------------- /sipsimple/addressbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/addressbook.py -------------------------------------------------------------------------------- /sipsimple/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/application.py -------------------------------------------------------------------------------- /sipsimple/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/audio.py -------------------------------------------------------------------------------- /sipsimple/configuration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/configuration/__init__.py -------------------------------------------------------------------------------- /sipsimple/configuration/backend/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/configuration/backend/file.py -------------------------------------------------------------------------------- /sipsimple/configuration/backend/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/configuration/backend/memory.py -------------------------------------------------------------------------------- /sipsimple/configuration/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/configuration/datatypes.py -------------------------------------------------------------------------------- /sipsimple/configuration/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/configuration/settings.py -------------------------------------------------------------------------------- /sipsimple/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/__init__.py -------------------------------------------------------------------------------- /sipsimple/core/_core.error.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.error.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.event.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.event.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.headers.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.headers.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.helper.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.helper.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.invitation.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.invitation.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.lib.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.lib.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.mediatransport.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.mediatransport.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.pxd -------------------------------------------------------------------------------- /sipsimple/core/_core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.pyx -------------------------------------------------------------------------------- /sipsimple/core/_core.referral.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.referral.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.request.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.request.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.sdp.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.sdp.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.sound.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.sound.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.subscription.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.subscription.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.ua.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.ua.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.util.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.util.pxi -------------------------------------------------------------------------------- /sipsimple/core/_core.video.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_core.video.pxi -------------------------------------------------------------------------------- /sipsimple/core/_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_engine.py -------------------------------------------------------------------------------- /sipsimple/core/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_helpers.py -------------------------------------------------------------------------------- /sipsimple/core/_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/core/_primitives.py -------------------------------------------------------------------------------- /sipsimple/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/logging.py -------------------------------------------------------------------------------- /sipsimple/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/lookup.py -------------------------------------------------------------------------------- /sipsimple/payloads/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/README.txt -------------------------------------------------------------------------------- /sipsimple/payloads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/__init__.py -------------------------------------------------------------------------------- /sipsimple/payloads/addressbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/addressbook.py -------------------------------------------------------------------------------- /sipsimple/payloads/caps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/caps.py -------------------------------------------------------------------------------- /sipsimple/payloads/cipid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/cipid.py -------------------------------------------------------------------------------- /sipsimple/payloads/commonpolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/commonpolicy.py -------------------------------------------------------------------------------- /sipsimple/payloads/conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/conference.py -------------------------------------------------------------------------------- /sipsimple/payloads/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/datatypes.py -------------------------------------------------------------------------------- /sipsimple/payloads/dialoginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/dialoginfo.py -------------------------------------------------------------------------------- /sipsimple/payloads/dialogrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/dialogrules.py -------------------------------------------------------------------------------- /sipsimple/payloads/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/directory.py -------------------------------------------------------------------------------- /sipsimple/payloads/imdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/imdn.py -------------------------------------------------------------------------------- /sipsimple/payloads/iscomposing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/iscomposing.py -------------------------------------------------------------------------------- /sipsimple/payloads/messagesummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/messagesummary.py -------------------------------------------------------------------------------- /sipsimple/payloads/omapolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/omapolicy.py -------------------------------------------------------------------------------- /sipsimple/payloads/pidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/pidf.py -------------------------------------------------------------------------------- /sipsimple/payloads/prescontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/prescontent.py -------------------------------------------------------------------------------- /sipsimple/payloads/presrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/presrules.py -------------------------------------------------------------------------------- /sipsimple/payloads/resourcelists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/resourcelists.py -------------------------------------------------------------------------------- /sipsimple/payloads/rlmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/rlmi.py -------------------------------------------------------------------------------- /sipsimple/payloads/rlsnotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/rlsnotify.py -------------------------------------------------------------------------------- /sipsimple/payloads/rlsservices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/rlsservices.py -------------------------------------------------------------------------------- /sipsimple/payloads/rpid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/rpid.py -------------------------------------------------------------------------------- /sipsimple/payloads/watcherinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/watcherinfo.py -------------------------------------------------------------------------------- /sipsimple/payloads/xcapcaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/xcapcaps.py -------------------------------------------------------------------------------- /sipsimple/payloads/xcapdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/xcapdiff.py -------------------------------------------------------------------------------- /sipsimple/payloads/xml-schemas/caps.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/xml-schemas/caps.xsd -------------------------------------------------------------------------------- /sipsimple/payloads/xml-schemas/cipid.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/xml-schemas/cipid.xsd -------------------------------------------------------------------------------- /sipsimple/payloads/xml-schemas/imdn.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/xml-schemas/imdn.xsd -------------------------------------------------------------------------------- /sipsimple/payloads/xml-schemas/pidf.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/xml-schemas/pidf.xsd -------------------------------------------------------------------------------- /sipsimple/payloads/xml-schemas/rlmi.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/xml-schemas/rlmi.xsd -------------------------------------------------------------------------------- /sipsimple/payloads/xml-schemas/rpid.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/xml-schemas/rpid.xsd -------------------------------------------------------------------------------- /sipsimple/payloads/xml-schemas/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/payloads/xml-schemas/xml.xsd -------------------------------------------------------------------------------- /sipsimple/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/session.py -------------------------------------------------------------------------------- /sipsimple/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/storage.py -------------------------------------------------------------------------------- /sipsimple/streams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/streams/__init__.py -------------------------------------------------------------------------------- /sipsimple/streams/msrp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/streams/msrp/__init__.py -------------------------------------------------------------------------------- /sipsimple/streams/msrp/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/streams/msrp/chat.py -------------------------------------------------------------------------------- /sipsimple/streams/msrp/filetransfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/streams/msrp/filetransfer.py -------------------------------------------------------------------------------- /sipsimple/streams/msrp/screensharing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/streams/msrp/screensharing.py -------------------------------------------------------------------------------- /sipsimple/streams/rtp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/streams/rtp/__init__.py -------------------------------------------------------------------------------- /sipsimple/streams/rtp/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/streams/rtp/audio.py -------------------------------------------------------------------------------- /sipsimple/streams/rtp/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/streams/rtp/video.py -------------------------------------------------------------------------------- /sipsimple/threading/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/threading/__init__.py -------------------------------------------------------------------------------- /sipsimple/threading/green.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/threading/green.py -------------------------------------------------------------------------------- /sipsimple/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/util/__init__.py -------------------------------------------------------------------------------- /sipsimple/util/_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/util/_sha1.h -------------------------------------------------------------------------------- /sipsimple/util/_sha1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/util/_sha1.pyx -------------------------------------------------------------------------------- /sipsimple/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-sipsimple/HEAD/sipsimple/video.py --------------------------------------------------------------------------------