├── .gitignore ├── LICENSE ├── README.md ├── baresip ├── include │ ├── baresip.h │ ├── baresip_base_config.h │ ├── baresip_conference.h │ ├── baresip_dialog_info_direction.h │ ├── baresip_dialog_info_status.h │ ├── baresip_presence_status.h │ ├── baresip_recorder.h │ ├── baresip_zrtp.h │ └── module.h ├── mk │ └── win32-tc │ │ ├── baresip.bdsproj │ │ └── baresip.cpp ├── modules │ ├── aufile │ │ └── aufile.c │ ├── aufile_mm │ │ └── aufile_mm.c │ ├── avcodec │ │ ├── avcodec.c │ │ ├── avcodec.h │ │ ├── avcodec_sdp.c │ │ ├── decode.c │ │ ├── encode.c │ │ ├── h263.c │ │ ├── h264.c │ │ └── h26x.h │ ├── avformat │ │ ├── avformat.c │ │ ├── avformat_audio.c │ │ ├── avformat_video.c │ │ └── mod_avformat.h │ ├── colorbar_generator │ │ └── colorbar_generator.c │ ├── colorbar_generator_animated │ │ └── colorbar_generator_animated.c │ ├── dialog_info │ │ ├── dialog_info.c │ │ ├── dialog_info.h │ │ └── dialog_info_subscriber.c │ ├── dshow │ │ └── dshow.cpp │ ├── g711 │ │ └── g711.c │ ├── g722 │ │ └── g722.c │ ├── g726_32 │ │ ├── g726.c │ │ ├── g726.h │ │ └── g726_32.c │ ├── gsm │ │ └── gsm.c │ ├── gzrtp │ │ ├── gzrtp.cpp │ │ ├── gzrtp_stream.cpp │ │ ├── gzrtp_stream.h │ │ ├── messages.cpp │ │ ├── module.mk │ │ ├── session.cpp │ │ ├── session.h │ │ ├── srtp.cpp │ │ └── srtp.h │ ├── ice │ │ └── ice.c │ ├── l16 │ │ └── l16.c │ ├── mixminus │ │ └── mixminus.c │ ├── mwi │ │ └── mwi.c │ ├── nullaudio │ │ ├── nullaudio.c │ │ ├── nullaudio.h │ │ ├── nullaudio_play.c │ │ └── nullaudio_src.c │ ├── nullvideo │ │ └── nullvideo.c │ ├── opus │ │ ├── opus.c │ │ ├── opus_decode.c │ │ ├── opus_encode.c │ │ ├── opus_priv.h │ │ └── opus_sdp.c │ ├── portaudio │ │ └── portaudio.c │ ├── presence │ │ ├── notifier.c │ │ ├── presence.c │ │ ├── presence.h │ │ └── subscriber.c │ ├── recorder │ │ ├── recorder.c │ │ ├── wavfile.c │ │ └── wavfile.h │ ├── sdl │ │ ├── CMakeLists.txt │ │ └── sdl.c │ ├── selfview │ │ └── selfview.c │ ├── softvol │ │ ├── agc.c │ │ ├── agc.h │ │ ├── gate.c │ │ ├── gate.h │ │ └── softvol.c │ ├── speex │ │ └── speex.c │ ├── speex_aec │ │ └── speex_aec.c │ ├── speex_pp │ │ └── speex_pp.c │ ├── srtp │ │ ├── sdes.c │ │ ├── sdes.h │ │ └── srtp_srtp.c │ ├── stun │ │ └── stun.c │ ├── webrtc_aec │ │ └── webrtc_aec.c │ └── winwave2 │ │ ├── winwave2.c │ │ ├── winwave2.h │ │ ├── winwave2_play.c │ │ └── winwave2_src.c └── src │ ├── account.c │ ├── aucodec.c │ ├── audio.c │ ├── aufilt.c │ ├── auplay.c │ ├── ausrc.c │ ├── call.c │ ├── cmd.c │ ├── conf.c │ ├── config.c │ ├── contact.c │ ├── core.h │ ├── dtmf.c │ ├── dtmf.h │ ├── magic.h │ ├── mctrl.c │ ├── menc.c │ ├── message.c │ ├── mnat.c │ ├── module.c │ ├── net.c │ ├── paging_tx.c │ ├── play.c │ ├── reg.c │ ├── rtpkeep.c │ ├── sdp.c │ ├── sipreq.c │ ├── static.c │ ├── stream.c │ ├── tone_generator.c │ ├── tone_generator.h │ ├── ua.c │ ├── vidcodec.c │ ├── video.c │ ├── vidfilt.c │ ├── vidisp.c │ └── vidsrc.c ├── bccsdk └── strmiids.lib ├── common ├── BtnController.h ├── Colors.cpp ├── Colors.h ├── KeybKeys.cpp ├── KeybKeys.h ├── MathUtils.cpp ├── MathUtils.h ├── Mutex.h ├── NetworkUtils.cpp ├── NetworkUtils.h ├── OS.cpp ├── OS.h ├── Observable.h ├── Observer.h ├── ScopedLock.h ├── StaticCheck.h ├── TelecomUtils.cpp ├── TelecomUtils.h ├── TimeCounter.h ├── TrayIcon.cpp ├── TrayIcon.h ├── Unicode.cpp ├── Unicode.h ├── Utilities.cpp ├── Utilities.h ├── WindowsMessageFilter.cpp ├── WindowsMessageFilter.h ├── base64.cpp ├── base64.h ├── common.bdsproj ├── common.cpp ├── ecc.cpp ├── ecc.h ├── fifo.h └── singleton.h ├── cppcheck └── tSIP.cppcheck ├── ffmpeg ├── dll2lib.bat ├── include │ ├── COPYING.LGPLv3 │ ├── libavcodec │ │ ├── avcodec.h │ │ ├── codec.h │ │ ├── codec_desc.h │ │ ├── codec_id.h │ │ ├── codec_par.h │ │ ├── defs.h │ │ ├── packet.h │ │ ├── version.h │ │ └── version_major.h │ ├── libavdevice │ │ ├── avdevice.h │ │ ├── version.h │ │ └── version_major.h │ ├── libavformat │ │ ├── avformat.h │ │ ├── avio.h │ │ ├── version.h │ │ └── version_major.h │ ├── libavutil │ │ ├── attributes.h │ │ ├── avconfig.h │ │ ├── avutil.h │ │ ├── buffer.h │ │ ├── channel_layout.h │ │ ├── common.h │ │ ├── dict.h │ │ ├── error.h │ │ ├── frame.h │ │ ├── hwcontext.h │ │ ├── intfloat.h │ │ ├── log.h │ │ ├── macros.h │ │ ├── mathematics.h │ │ ├── mem.h │ │ ├── opt.h │ │ ├── pixdesc.h │ │ ├── pixfmt.h │ │ ├── rational.h │ │ ├── samplefmt.h │ │ └── version.h │ └── libswresample │ │ ├── swresample.h │ │ ├── version.h │ │ └── version_major.h ├── info.txt └── lib │ ├── avcodec-59.lib │ ├── avdevice-59.lib │ ├── avformat-59.lib │ ├── avutil-57.lib │ ├── info.txt │ └── swresample-4.lib ├── g722 ├── GNUmakefile ├── Makefile ├── README.md ├── g722.bdsproj ├── g722.cpp ├── g722.h ├── g722_decode.c ├── g722_decoder.h ├── g722_encode.c ├── g722_encoder.h ├── g722_private.h ├── test.c ├── test.checksum └── test.g722 ├── gsm ├── COPYRIGHT ├── README ├── build │ ├── gsm.bdsproj │ └── gsm.cpp ├── inc │ ├── config.h │ ├── gsm.h │ ├── gsm.h.orig │ ├── private.h │ ├── proto.h │ ├── toast.h │ └── unproto.h └── 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 ├── inttypes └── inttypes.h ├── jsoncpp ├── AUTHORS ├── README.txt ├── doc │ ├── doxyfile.in │ ├── footer.html │ ├── header.html │ ├── jsoncpp.dox │ ├── readme.txt │ ├── roadmap.dox │ └── sconscript ├── include │ └── json │ │ ├── autolink.h │ │ ├── config.h │ │ ├── forwards.h │ │ ├── json.h │ │ ├── reader.h │ │ ├── value.h │ │ └── writer.h ├── jsoncpp.bdsproj ├── jsoncpp.cpp └── src │ ├── jsontestrunner │ ├── jsontest.vcproj │ ├── main.cpp │ └── sconscript │ └── lib_json │ ├── json_batchallocator.h │ ├── json_internalarray.inl │ ├── json_internalmap.inl │ ├── json_reader.cpp │ ├── json_value.cpp │ ├── json_valueiterator.inl │ ├── json_writer.cpp │ ├── lib_json.vcproj │ └── sconscript ├── lua ├── Makefile ├── README ├── doc │ ├── contents.html │ ├── index.css │ ├── logo.gif │ ├── lua.1 │ ├── lua.css │ ├── luac.1 │ ├── manual.css │ ├── manual.html │ ├── osi-certified-72x60.png │ └── readme.html ├── src │ ├── Makefile │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lbitlib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h └── turbo_cpp │ ├── lua_static.bdsproj │ └── lua_static.cpp ├── openssl ├── inc32 │ └── openssl │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ ├── aes.h │ │ ├── applink.c │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1err.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── asyncerr.h │ │ ├── bio.h │ │ ├── bioerr.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── bnerr.h │ │ ├── buffer.h │ │ ├── buffererr.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── cmserr.h │ │ ├── comp.h │ │ ├── comperr.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── conferr.h │ │ ├── crypto.h │ │ ├── cryptoerr.h │ │ ├── ct.h │ │ ├── cterr.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dherr.h │ │ ├── dsa.h │ │ ├── dsaerr.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecerr.h │ │ ├── engine.h │ │ ├── engineerr.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── evperr.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── kdferr.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── objectserr.h │ │ ├── ocsp.h │ │ ├── ocsperr.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pemerr.h │ │ ├── pkcs12.h │ │ ├── pkcs12err.h │ │ ├── pkcs7.h │ │ ├── pkcs7err.h │ │ ├── rand.h │ │ ├── rand_drbg.h │ │ ├── randerr.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── rsaerr.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── sslerr.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── storeerr.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── tserr.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── uierr.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ ├── x509err.h │ │ ├── x509v3.h │ │ └── x509v3err.h └── out32 │ ├── libcrypto-1_1.lib │ └── libssl-1_1.lib ├── opus ├── 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_arm64.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 ├── libopus.bdsproj ├── libopus.cpp ├── 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.h │ ├── NSQ_del_dec.c │ ├── PLC.c │ ├── PLC.h │ ├── SigProc_FIX.h │ ├── VAD.c │ ├── VQ_WMat_EC.c │ ├── ana_filt_bank_1.c │ ├── arm │ │ ├── NSQ_neon.c │ │ ├── NSQ_neon.h │ │ ├── SigProc_FIX_armv4.h │ │ ├── SigProc_FIX_armv5e.h │ │ ├── arm_silk_map.c │ │ ├── macros_arm64.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 │ ├── VS2015 │ ├── 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 ├── opusenc ├── include │ └── opusenc.h ├── src │ ├── arch.h │ ├── ogg_packer.c │ ├── ogg_packer.h │ ├── opus_header.c │ ├── opus_header.h │ ├── opusenc.c │ ├── picture.c │ ├── picture.h │ ├── unicode_support.c │ └── unicode_support.h └── win32-tc │ ├── libopusenc.bdsproj │ └── libopusenc.cpp ├── portaudio ├── LICENSE.txt ├── README.txt ├── build │ └── bc │ │ ├── portaudio.bdsproj │ │ └── portaudio.cpp ├── include │ ├── pa_asio.h │ ├── pa_jack.h │ ├── pa_linux_alsa.h │ ├── pa_mac_core.h │ ├── pa_win_ds.h │ ├── pa_win_wasapi.h │ ├── pa_win_waveformat.h │ ├── pa_win_wmme.h │ └── portaudio.h └── src │ ├── common │ ├── pa_allocation.c │ ├── pa_allocation.h │ ├── pa_converters.c │ ├── pa_converters.h │ ├── pa_cpuload.c │ ├── pa_cpuload.h │ ├── pa_debugprint.c │ ├── pa_debugprint.h │ ├── pa_dither.c │ ├── pa_dither.h │ ├── pa_endianness.h │ ├── pa_front.c │ ├── pa_hostapi.h │ ├── pa_memorybarrier.h │ ├── pa_process.c │ ├── pa_process.h │ ├── pa_ringbuffer.c │ ├── pa_ringbuffer.h │ ├── pa_stream.c │ ├── pa_stream.h │ ├── pa_trace.c │ ├── pa_trace.h │ ├── pa_types.h │ └── pa_util.h │ ├── hostapi │ └── dsound │ │ ├── pa_win_ds.c │ │ ├── pa_win_ds_dynlink.c │ │ └── pa_win_ds_dynlink.h │ └── os │ ├── unix │ ├── pa_unix_hostapis.c │ ├── pa_unix_util.c │ └── pa_unix_util.h │ └── win │ ├── pa_win_coinitialize.c │ ├── pa_win_coinitialize.h │ ├── pa_win_hostapis.c │ ├── pa_win_util.c │ ├── pa_win_waveformat.c │ ├── pa_win_wdmks_utils.c │ ├── pa_win_wdmks_utils.h │ ├── pa_x86_plain_converters.c │ └── pa_x86_plain_converters.h ├── re ├── Makefile ├── docs │ ├── COPYING │ ├── ChangeLog │ ├── README │ ├── TODO │ ├── main.dox │ └── symbols.txt ├── include │ ├── re.h │ ├── re_aes.h │ ├── re_av1.h │ ├── re_base64.h │ ├── re_bitv.h │ ├── re_conf.h │ ├── re_crc32.h │ ├── re_dbg.h │ ├── re_dns.h │ ├── re_fmt.h │ ├── re_h264.h │ ├── re_h265.h │ ├── re_hash.h │ ├── re_hmac.h │ ├── re_http.h │ ├── re_httpauth.h │ ├── re_ice.h │ ├── re_jbuf.h │ ├── re_list.h │ ├── re_lock.h │ ├── re_main.h │ ├── re_mbuf.h │ ├── re_md5.h │ ├── re_mem.h │ ├── re_mod.h │ ├── re_mqueue.h │ ├── re_msg.h │ ├── re_natbd.h │ ├── re_net.h │ ├── re_rtp.h │ ├── re_sa.h │ ├── re_sdp.h │ ├── re_sha.h │ ├── re_sip.h │ ├── re_sipevent.h │ ├── re_sipreg.h │ ├── re_sipsess.h │ ├── re_srtp.h │ ├── re_stun.h │ ├── re_sxmlc.h │ ├── re_sxmlsearch.h │ ├── re_sys.h │ ├── re_tcp.h │ ├── re_telev.h │ ├── re_thread.h │ ├── re_tls.h │ ├── re_tmr.h │ ├── re_turn.h │ ├── re_types.h │ ├── re_udp.h │ └── re_uri.h ├── mk │ └── win32-tc │ │ ├── re.bdsproj │ │ └── re.cpp └── src │ ├── _new_h265 │ └── h265_nal.c │ ├── aes │ └── aes.c │ ├── av1 │ ├── av1_pkt.c │ ├── depack.c │ └── obu.c │ ├── base64 │ └── b64.c │ ├── conf │ └── conf.c │ ├── crc32 │ └── crc32.c │ ├── dbg │ ├── dbg.c │ └── log.c │ ├── dns │ ├── client.c │ ├── cstr.c │ ├── darwin │ │ └── srv.c │ ├── dname.c │ ├── dns.h │ ├── dns_hdr.c │ ├── ns.c │ ├── res.c │ ├── rr.c │ ├── rrlist.c │ └── win32 │ │ └── srv.c │ ├── fmt │ ├── ch.c │ ├── hexdump.c │ ├── pl.c │ ├── print.c │ ├── prm.c │ ├── regex.c │ ├── str.c │ ├── str_error.c │ └── time.c │ ├── h264 │ ├── getbit.c │ ├── h264.h │ ├── h264_nal.c │ └── sps.c │ ├── hash │ ├── func.c │ └── hash.c │ ├── hmac │ ├── hmac.c │ └── hmac_sha1.c │ ├── http │ ├── auth.c │ ├── mod.mk │ ├── msg.c │ └── server.c │ ├── httpauth │ ├── basic.c │ └── digest.c │ ├── ice │ ├── cand.c │ ├── candpair.c │ ├── chklist.c │ ├── comp.c │ ├── connchk.c │ ├── gather.c │ ├── ice.c │ ├── ice.h │ ├── icem.c │ ├── icesdp.c │ ├── icestr.c │ ├── stunsrv.c │ └── util.c │ ├── jbuf │ └── jbuf.c │ ├── list │ └── list.c │ ├── lock │ ├── lock.c │ ├── rwlock.c │ ├── symbian │ │ └── rmutex.cpp │ └── win32 │ │ ├── lock.c │ │ └── win32_lock.c │ ├── main │ ├── epoll.c │ ├── init.c │ ├── main.c │ ├── main.h │ ├── method.c │ └── symbian │ │ └── actsched.cpp │ ├── mbuf │ └── mbuf.c │ ├── md5 │ ├── md5.c │ ├── md5.h │ └── wrap.c │ ├── mem │ └── mem.c │ ├── mod │ ├── dl.c │ ├── mod.c │ ├── mod_internal.h │ ├── symbian │ │ └── rlib.cpp │ └── win32 │ │ └── dll.c │ ├── mqueue │ ├── mqueue.c │ ├── mqueue.h │ └── win32 │ │ └── pipe.c │ ├── msg │ ├── ctype.c │ └── msg_param.c │ ├── natbd │ ├── filtering.c │ ├── genalg.c │ ├── hairpinning.c │ ├── lifetime.c │ ├── mapping.c │ └── natstr.c │ ├── net │ ├── bsd │ │ └── brt.c │ ├── if.c │ ├── ifaddrs.c │ ├── linux │ │ └── rt.c │ ├── net.c │ ├── net_sock.c │ ├── netstr.c │ ├── posix │ │ └── pif.c │ ├── rt.c │ ├── sockopt.c │ ├── symbian │ │ ├── rconn.cpp │ │ ├── sif.cpp │ │ ├── snet.cpp │ │ └── srt.cpp │ └── win32 │ │ └── wif.c │ ├── rtp │ ├── fb.c │ ├── member.c │ ├── ntp.c │ ├── pkt.c │ ├── rtcp.c │ ├── rtcp.h │ ├── rtp.c │ ├── rtp_rr.c │ ├── sdes.c │ ├── sess.c │ └── source.c │ ├── sa │ ├── ntop.c │ ├── printaddr.c │ ├── pton.c │ └── sa.c │ ├── sdp │ ├── format.c │ ├── media.c │ ├── sdp.h │ ├── sdp_attr.c │ ├── sdp_msg.c │ ├── sdp_str.c │ └── session.c │ ├── sha │ └── sha1.c │ ├── sip │ ├── addr.c │ ├── auth.c │ ├── cseq.c │ ├── ctrans.c │ ├── dialog.c │ ├── keepalive.c │ ├── keepalive_udp.c │ ├── reply.c │ ├── request.c │ ├── sip.c │ ├── sip.h │ ├── sip_access_url.c │ ├── sip_alert_info.c │ ├── sip_call_info.c │ ├── sip_msg.c │ ├── sip_reason.c │ ├── sip_transp.c │ ├── strans.c │ └── via.c │ ├── sipevent │ ├── notify.c │ ├── sipevent.h │ ├── sipevent_listen.c │ ├── sipevent_msg.c │ └── subscribe.c │ ├── sipreg │ └── reg.c │ ├── sipsess │ ├── accept.c │ ├── ack.c │ ├── close.c │ ├── connect.c │ ├── info.c │ ├── listen.c │ ├── modify.c │ ├── sip_sess.c │ ├── sipsess.h │ ├── sipsess_reply.c │ └── sipsess_request.c │ ├── srtp │ ├── README │ ├── misc.c │ ├── replay.c │ ├── srtcp.c │ ├── srtp.c │ ├── srtp.h │ └── stream.c │ ├── stun │ ├── dnsdisc.c │ ├── stun.c │ ├── stun.h │ ├── stun_addr.c │ ├── stun_attr.c │ ├── stun_ctrans.c │ ├── stun_hdr.c │ ├── stun_ind.c │ ├── stun_keepalive.c │ ├── stun_msg.c │ ├── stun_rep.c │ ├── stun_req.c │ └── stunstr.c │ ├── sxmlc │ ├── sxmlc.c │ └── sxmlsearch.c │ ├── sys │ ├── daemon.c │ ├── endian.c │ ├── fs.c │ ├── rand.c │ ├── sleep.c │ ├── symbian │ │ └── sleep.cpp │ ├── sys.c │ └── sys_time.c │ ├── tcp │ ├── symbian │ │ └── tcp.cpp │ ├── tcp.c │ └── tcp_high.c │ ├── telev │ └── telev.c │ ├── thread │ ├── posix.c │ ├── thread.c │ └── thread_win32.c │ ├── tls │ └── openssl │ │ ├── tls.c │ │ ├── tls.h │ │ ├── tls_tcp.c │ │ └── tls_udp.c │ ├── tmr │ └── tmr.c │ ├── turn │ ├── chan.c │ ├── perm.c │ ├── turnc.c │ └── turnc.h │ ├── udp │ ├── symbian │ │ └── udp.cpp │ └── udp.c │ └── uri │ ├── ucmp.c │ ├── uri.c │ └── uric.c ├── rem ├── docs │ ├── COPYING │ └── README ├── include │ ├── rem.h │ ├── rem_au.h │ ├── rem_aubuf.h │ ├── rem_audio.h │ ├── rem_aufile.h │ ├── rem_aumix.h │ ├── rem_auresamp.h │ ├── rem_autone.h │ ├── rem_avc.h │ ├── rem_dsp.h │ ├── rem_fir.h │ ├── rem_flv.h │ ├── rem_g711.h │ ├── rem_vid.h │ ├── rem_vidconv.h │ ├── rem_video.h │ └── rem_vidmix.h ├── mk │ └── win32-tc │ │ ├── rem.bdsproj │ │ └── rem.cpp └── src │ ├── au │ ├── au_fmt.c │ └── au_util.c │ ├── aubuf │ └── aubuf.c │ ├── aufile │ ├── aufile.c │ ├── aufile.h │ └── wave.c │ ├── aumix │ └── aumix.c │ ├── auresamp │ └── resamp.c │ ├── autone │ └── tone.c │ ├── fir │ └── fir.c │ ├── g711 │ └── g711.c │ ├── vid │ ├── draw.c │ ├── fmt.c │ └── frame.c │ ├── vidconv │ └── vconv.c │ └── vidmix │ └── vidmix.c ├── run_bds.bat ├── run_bds_x64.bat ├── run_bds_x64_tSIP.bat ├── run_bds_x64_tSIP_exe.bat ├── scintilla ├── License.txt ├── README ├── doc │ ├── Design.html │ ├── Icons.html │ ├── Lexer.txt │ ├── SciBreak.jpg │ ├── SciCoding.html │ ├── SciRest.jpg │ ├── SciTEIco.png │ ├── SciWord.jpg │ ├── ScintillaDoc.html │ ├── ScintillaDownload.html │ ├── ScintillaHistory.html │ ├── ScintillaRelated.html │ ├── ScintillaToDo.html │ ├── ScintillaUsage.html │ ├── Steps.html │ ├── annotations.png │ ├── index.html │ └── styledmargin.png ├── include │ ├── ILexer.h │ ├── Platform.h │ ├── SciLexer.h │ ├── Scintilla.h │ ├── Scintilla.iface │ └── ScintillaWidget.h ├── lexers │ ├── LexCPP.cpp │ ├── LexJSON.cpp │ └── LexLua.cpp ├── lexlib │ ├── Accessor.cpp │ ├── Accessor.h │ ├── CharacterSet.cpp │ ├── CharacterSet.h │ ├── LexAccessor.h │ ├── LexerBase.cpp │ ├── LexerBase.h │ ├── LexerModule.cpp │ ├── LexerModule.h │ ├── LexerNoExceptions.cpp │ ├── LexerNoExceptions.h │ ├── LexerSimple.cpp │ ├── LexerSimple.h │ ├── OptionSet.h │ ├── PropSetSimple.cpp │ ├── PropSetSimple.h │ ├── SparseState.h │ ├── StyleContext.cpp │ ├── StyleContext.h │ ├── WordList.cpp │ └── WordList.h ├── scintilla.bdsproj ├── scintilla.cpp ├── src │ ├── AutoComplete.cpp │ ├── AutoComplete.h │ ├── CallTip.cpp │ ├── CallTip.h │ ├── Catalogue.cpp │ ├── Catalogue.h │ ├── CellBuffer.cpp │ ├── CellBuffer.h │ ├── CharClassify.cpp │ ├── CharClassify.h │ ├── ContractionState.cpp │ ├── ContractionState.h │ ├── Decoration.cpp │ ├── Decoration.h │ ├── Document.cpp │ ├── Document.h │ ├── Editor.cpp │ ├── Editor.h │ ├── ExternalLexer.cpp │ ├── ExternalLexer.h │ ├── FontQuality.h │ ├── Indicator.cpp │ ├── Indicator.h │ ├── KeyMap.cpp │ ├── KeyMap.h │ ├── LexGen.py │ ├── LineMarker.cpp │ ├── LineMarker.h │ ├── Partitioning.h │ ├── PerLine.cpp │ ├── PerLine.h │ ├── PositionCache.cpp │ ├── PositionCache.h │ ├── RESearch.cpp │ ├── RESearch.h │ ├── RunStyles.cpp │ ├── RunStyles.h │ ├── SVector.h │ ├── SciTE.properties │ ├── ScintillaBase.cpp │ ├── ScintillaBase.h │ ├── Selection.cpp │ ├── Selection.h │ ├── SplitVector.h │ ├── Style.cpp │ ├── Style.h │ ├── UniConversion.cpp │ ├── UniConversion.h │ ├── ViewStyle.cpp │ ├── ViewStyle.h │ ├── XPM.cpp │ └── XPM.h └── win32 │ ├── CheckD2D.cpp │ ├── PlatWin.cpp │ ├── PlatWin.h │ ├── ScintRes.rc │ ├── Scintilla.def │ ├── ScintillaWin.cpp │ └── makefile ├── sdl2 ├── COPYING.txt ├── README-SDL.txt ├── WhatsNew.txt ├── include │ └── SDL2 │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_macosx.h.orig │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_guid.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hidapi.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_locale.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_misc.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h └── lib │ ├── SDL2.def │ ├── SDL2.lib │ └── note.txt ├── speex ├── AUTHORS ├── COPYING ├── README ├── build │ ├── libspeex.bdsproj │ └── libspeex.cpp ├── doc │ ├── Makefile.am │ ├── Makefile.in │ └── manual.pdf ├── include │ ├── Makefile.am │ ├── Makefile.in │ ├── os_support_custom.h │ └── speex │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── 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 │ ├── Makefile.am │ ├── Makefile.in │ ├── _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 │ ├── vbr.c │ ├── vbr.h │ ├── vorbis_psy.h │ ├── vq.c │ ├── vq.h │ ├── vq_arm4.h │ ├── vq_bfin.h │ ├── vq_sse.h │ └── window.c ├── tSIP.bdsgroup ├── tSIP ├── Action.cpp ├── Action.h ├── AppStatus.cpp ├── AppStatus.h ├── AudioDevicesList.cpp ├── AudioDevicesList.h ├── Bitmaps.cpp ├── Bitmaps.h ├── Branding.cpp ├── Branding.h ├── CommandLine.cpp ├── CommandLine.h ├── CustomDateUtils.hpp ├── DialpadConf.cpp ├── DialpadConf.h ├── FixedSettings.json ├── FormAbout.cpp ├── FormAbout.dfm ├── FormAbout.h ├── FormAccount.cpp ├── FormAccount.dfm ├── FormAccount.h ├── FormAccountCodecs.cpp ├── FormAccountCodecs.dfm ├── FormAccountCodecs.h ├── FormDialpadConf.cpp ├── FormDialpadConf.dfm ├── FormDialpadConf.h ├── FormMain.cpp ├── FormMain.dfm ├── FormMain.h ├── FormMessage.cpp ├── FormMessage.dfm ├── FormMessage.h ├── FormScreen.cpp ├── FormScreen.dfm ├── FormScreen.h ├── FormSettings.cpp ├── FormSettings.dfm ├── FormSettings.h ├── FormSettingsPatch.cpp ├── FormSettingsPatch.dfm ├── FormSettingsPatch.h ├── FormTextEditor.cpp ├── FormTextEditor.dfm ├── FormTextEditor.h ├── FormTrayNotifier.cpp ├── FormTrayNotifier.dfm ├── FormTrayNotifier.h ├── FormTroubleshooting.cpp ├── FormTroubleshooting.dfm ├── FormTroubleshooting.h ├── FormVideoConf.cpp ├── FormVideoConf.dfm ├── FormVideoConf.h ├── Globals.cpp ├── Globals.h ├── Log.cpp ├── Log.h ├── LogUnit.cpp ├── LogUnit.dfm ├── LogUnit.h ├── NetInterfaces.cpp ├── NetInterfaces.h ├── Paths.cpp ├── Paths.h ├── PortaudioLock.cpp ├── PortaudioLock.h ├── SIMPLE_Messages.cpp ├── SIMPLE_Messages.h ├── ScEdit.cpp ├── ScEdit.h ├── ScEditStyle.h ├── Settings.cpp ├── Settings.h ├── SettingsAppVersion.cpp ├── SettingsAppVersion.h ├── Sizes.h ├── SpeedDialStatus.cpp ├── SpeedDialStatus.h ├── Translate.cpp ├── Translate.h ├── TrayNotifierConf.cpp ├── TrayNotifierConf.h ├── Troubleshooting.cpp ├── Troubleshooting.h ├── VideoConf.cpp ├── VideoConf.h ├── VideoDevicesList.cpp ├── VideoDevicesList.h ├── _dist │ ├── busy.wav │ ├── certificates │ │ └── README.txt │ ├── error.wav │ ├── img │ │ ├── Backspace.bmp │ │ ├── FoldIn.bmp │ │ ├── FoldIn2.bmp │ │ ├── FoldOut.bmp │ │ ├── MicOff.bmp │ │ ├── Microphone.bmp │ │ ├── OVCP.ico │ │ ├── README.txt │ │ ├── Speaker.bmp │ │ ├── bellOff.bmp │ │ ├── check.bmp │ │ ├── codec.bmp │ │ ├── confirmed.bmp │ │ ├── confirmed2.bmp │ │ ├── cross.bmp │ │ ├── early.bmp │ │ ├── early2.bmp │ │ ├── empty.bmp │ │ ├── hold.bmp │ │ ├── hold2.bmp │ │ ├── json.ico │ │ ├── lock_green.bmp │ │ ├── lock_yellow.bmp │ │ ├── mail.bmp │ │ ├── mail_white.bmp │ │ ├── mail_yellow.bmp │ │ ├── miniscope.ico │ │ ├── redial.bmp │ │ ├── tSIP2.ico │ │ ├── tSIP_16x16_crossed.bmp │ │ ├── tSIP_16x16_pink.bmp │ │ ├── tSIP_16x16_yellow.bmp │ │ ├── terminated.bmp │ │ └── terminated2.bmp │ ├── libcrypto-1_1.dll │ ├── libssl-1_1.dll │ ├── modules │ │ └── README.txt │ ├── notfound.wav │ ├── phone │ │ └── README.txt │ ├── pluck.wav │ ├── recordings │ │ └── README.txt │ ├── ring.wav │ ├── ringback.wav │ ├── scripts │ │ └── README.txt │ ├── translations │ │ ├── README.txt │ │ ├── de_DE │ │ │ └── translations.json │ │ ├── en_US │ │ │ └── translations.json │ │ ├── es_ES │ │ │ └── translations.json │ │ ├── fr_FR │ │ │ └── translations.json │ │ ├── pl_PL │ │ │ └── translations.json │ │ ├── pt_BR │ │ │ └── translations.json │ │ ├── ru_RU │ │ │ └── translations.json │ │ ├── sr_SR-Cyrillic │ │ │ └── translations.json │ │ ├── sr_SR-Latn │ │ │ └── translations.json │ │ └── tr_TR │ │ │ └── translations.json │ └── vcruntime140.dll ├── _dist_extra_video │ ├── CISCO_OPENH264_BINARY_LICENSE.txt │ ├── README.txt │ ├── SDL2.dll │ ├── avcodec-59.dll │ ├── avdevice-59.dll │ ├── avformat-59.dll │ ├── avutil-57.dll │ ├── openh264.dll │ └── swresample-4.dll ├── _doc │ ├── Doxyfile │ ├── changelog.h │ ├── doxygen.h │ ├── doxygen_footer.html │ ├── doxygen_header.html │ ├── licenses.txt │ ├── proto │ │ └── proto.html │ ├── roadmap.h │ └── turbo_cpp_stdint_fix │ │ ├── stdint.h │ │ └── stdint.h.original ├── build-tools │ └── touch.exe ├── buttons │ ├── ButtonConf.cpp │ ├── ButtonConf.h │ ├── ButtonContainerConf.cpp │ ├── ButtonContainerConf.h │ ├── ButtonContainers.cpp │ ├── ButtonContainers.h │ ├── ButtonType.cpp │ ├── ButtonType.h │ ├── ButtonsDataModule.cpp │ ├── ButtonsDataModule.dfm │ ├── ButtonsDataModule.h │ ├── FormButtonContainer.cpp │ ├── FormButtonContainer.dfm │ ├── FormButtonContainer.h │ ├── FormButtonContainerConf.cpp │ ├── FormButtonContainerConf.dfm │ ├── FormButtonContainerConf.h │ ├── FormButtonCopy.cpp │ ├── FormButtonCopy.dfm │ ├── FormButtonCopy.h │ ├── FormButtonEdit.cpp │ ├── FormButtonEdit.dfm │ ├── FormButtonEdit.h │ ├── ProgrammableButton.cpp │ ├── ProgrammableButton.h │ ├── ProgrammableButtons.cpp │ └── ProgrammableButtons.h ├── contacts │ ├── Contacts.cpp │ ├── Contacts.h │ ├── ContactsXmlImport.cpp │ ├── ContactsXmlImport.h │ ├── FormContactEditor.cpp │ ├── FormContactEditor.dfm │ ├── FormContactEditor.h │ ├── FormContactPopup.cpp │ ├── FormContactPopup.dfm │ ├── FormContactPopup.h │ ├── FormContacts.cpp │ ├── FormContacts.dfm │ ├── FormContacts.h │ ├── FormContactsCsvImport.cpp │ ├── FormContactsCsvImport.dfm │ └── FormContactsCsvImport.h ├── history │ ├── FormHistory.cpp │ ├── FormHistory.dfm │ ├── FormHistory.h │ ├── History.cpp │ ├── History.h │ ├── HistoryConf.cpp │ └── HistoryConf.h ├── hotkeys │ ├── FormHotkeys.cpp │ ├── FormHotkeys.dfm │ ├── FormHotkeys.h │ ├── HotKeyConf.cpp │ ├── HotKeyConf.h │ ├── HotkeyCfgPanel.cpp │ ├── HotkeyCfgPanel.h │ ├── Hotkeys.cpp │ └── Hotkeys.h ├── phone │ ├── FormPhones.cpp │ ├── FormPhones.dfm │ ├── FormPhones.h │ ├── Phone.h │ ├── PhoneCapabilities.h │ ├── PhoneConf.h │ ├── PhoneInterface.cpp │ ├── PhoneInterface.h │ └── PhoneSettings.h ├── resource.h ├── resource.rc ├── resources │ ├── 1195445181899094722molumen_phone_icon.svg.med.png │ ├── backspace.bmp │ ├── edit.bmp │ ├── edit2.bmp │ ├── enter.bmp │ ├── error.bmp │ ├── error2.bmp │ ├── error3.bmp │ ├── info.bmp │ ├── microphone.bmp │ ├── speaker.bmp │ ├── tSIP.bmp │ ├── tSIP.ico │ ├── tSIP2.bmp │ ├── tSIP2.ico │ ├── tSIP_16x16.bmp │ ├── tSIP_16x16_pink.bmp │ ├── tSIP_16x16_yellow.bmp │ ├── warning.bmp │ ├── warning2.bmp │ └── zoom.bmp ├── scripting │ ├── FormLuaScript.cpp │ ├── FormLuaScript.dfm │ ├── FormLuaScript.h │ ├── FormLuaScriptHelp.cpp │ ├── FormLuaScriptHelp.dfm │ ├── FormLuaScriptHelp.h │ ├── FormScriptPluginVariables.cpp │ ├── FormScriptPluginVariables.dfm │ ├── FormScriptPluginVariables.h │ ├── LuaExamples.h │ ├── LuaState.cpp │ ├── LuaState.h │ ├── LuaWinapi.cpp │ ├── LuaWinapi.h │ ├── ScriptExec.cpp │ ├── ScriptExec.h │ └── ScriptSource.h ├── tSIP.bdsproj ├── tSIP.cpp ├── tSIP.res └── ua │ ├── AudioModules.cpp │ ├── AudioModules.h │ ├── Call.cpp │ ├── Call.h │ ├── Callback.cpp │ ├── Callback.h │ ├── CallbackQueue.cpp │ ├── CallbackQueue.h │ ├── Calls.cpp │ ├── Calls.h │ ├── Command.cpp │ ├── Command.h │ ├── ControlQueue.cpp │ ├── ControlQueue.h │ ├── FormUaConfOpus.cpp │ ├── FormUaConfOpus.dfm │ ├── FormUaConfOpus.h │ ├── Recorder.cpp │ ├── Recorder.h │ ├── UaConf.cpp │ ├── UaConf.h │ ├── UaCustomRequests.cpp │ ├── UaCustomRequests.h │ ├── UaGlobals.cpp │ ├── UaGlobals.h │ ├── UaMain.cpp │ ├── UaMain.h │ ├── VideoModules.cpp │ └── VideoModules.h ├── tSIP_baresip.bdsgroup ├── tSIP_baresip_common.bdsgroup ├── tSIP_baresip_opusenc.bdsgroup ├── tSIP_baresip_re.bdsgroup ├── tSIP_baresip_rem.bdsgroup ├── tSIP_baresip_speex.bdsgroup ├── tSIP_baresip_webrtc.bdsgroup ├── tSIP_baresip_zrtpcpp.bdsgroup ├── tSIP_common.bdsgroup ├── tSIP_essential.bdsgroup ├── tSIP_exe.bdsgroup ├── tSIP_re_baresip_zrtpcpp.bdsgroup ├── tSIP_rem_baresip.bdsgroup ├── webrtc ├── webrtc │ ├── common_audio │ │ ├── include │ │ │ └── audio_util.h │ │ └── signal_processing │ │ │ ├── complex_bit_reverse.c │ │ │ ├── complex_fft.c │ │ │ ├── complex_fft_tables.h │ │ │ ├── copy_set_operations.c │ │ │ ├── cross_correlation.c │ │ │ ├── downsample_fast.c │ │ │ ├── energy.c │ │ │ ├── get_scaling_square.c │ │ │ ├── include │ │ │ ├── real_fft.h │ │ │ ├── signal_processing_library.h │ │ │ └── spl_inl.h │ │ │ ├── min_max_operations.c │ │ │ ├── randomization_functions.c │ │ │ ├── real_fft.c │ │ │ ├── spl_init.c │ │ │ ├── spl_sqrt_floor.c │ │ │ └── vector_scaling_operations.c │ ├── modules │ │ └── audio_processing │ │ │ ├── OWNERS │ │ │ ├── aec │ │ │ ├── aec_core.c │ │ │ ├── aec_core.h │ │ │ ├── aec_core_internal.h │ │ │ ├── aec_rdft.c │ │ │ ├── aec_rdft.h │ │ │ ├── aec_resampler.c │ │ │ ├── aec_resampler.h │ │ │ ├── echo_cancellation.c │ │ │ ├── echo_cancellation_internal.h │ │ │ └── include │ │ │ │ └── echo_cancellation.h │ │ │ ├── audio_buffer.cc │ │ │ ├── audio_buffer.h │ │ │ ├── audio_processing_impl.cc │ │ │ ├── audio_processing_impl.h │ │ │ ├── echo_cancellation_impl.cc │ │ │ ├── echo_cancellation_impl.h │ │ │ ├── echo_control_mobile_impl.cc │ │ │ ├── echo_control_mobile_impl.h │ │ │ ├── gain_control_impl.cc │ │ │ ├── gain_control_impl.h │ │ │ ├── high_pass_filter_impl.cc │ │ │ ├── high_pass_filter_impl.h │ │ │ ├── include │ │ │ ├── audio_processing.h │ │ │ └── mock_audio_processing.h │ │ │ ├── level_estimator_impl.cc │ │ │ ├── level_estimator_impl.h │ │ │ ├── noise_suppression_impl.cc │ │ │ ├── noise_suppression_impl.h │ │ │ ├── ns │ │ │ ├── defines.h │ │ │ ├── include │ │ │ │ ├── noise_suppression.h │ │ │ │ └── noise_suppression_x.h │ │ │ ├── noise_suppression.c │ │ │ ├── noise_suppression_x.c │ │ │ ├── ns_core.c │ │ │ ├── ns_core.h │ │ │ ├── nsx_core.c │ │ │ ├── nsx_core.h │ │ │ ├── nsx_defines.h │ │ │ └── windows_private.h │ │ │ ├── processing_component.cc │ │ │ ├── processing_component.h │ │ │ ├── splitting_filter.cc │ │ │ ├── splitting_filter.h │ │ │ ├── utility │ │ │ ├── delay_estimator.c │ │ │ ├── delay_estimator.h │ │ │ ├── delay_estimator_internal.h │ │ │ ├── delay_estimator_wrapper.c │ │ │ ├── delay_estimator_wrapper.h │ │ │ ├── fft4g.h │ │ │ ├── ring_buffer.c │ │ │ └── ring_buffer.h │ │ │ ├── voice_detection_impl.cc │ │ │ └── voice_detection_impl.h │ ├── system_wrappers │ │ └── interface │ │ │ ├── compile_assert.h │ │ │ └── cpu_features_wrapper.h │ └── typedefs.h ├── webrtc_tc.bdsproj └── webrtc_tc.cpp └── zrtpcpp ├── AUTHORS ├── COPYING ├── LICENSES └── summary.md ├── bnlib ├── bn.c ├── bn.h ├── bn00.c ├── bn16.c ├── bn16.h ├── bn32.c ├── bn32.h ├── bn64.c ├── bn64.h ├── bnconfig.h.cmake ├── bninit16.c ├── bninit32.c ├── bninit64.c ├── bnprint.c ├── bnprint.h ├── bnsize00.h ├── ec │ ├── curve25519-donna.c │ ├── ec.c │ ├── ec.h │ ├── ecdh.c │ └── ecdh.h ├── germain.c ├── germain.h ├── jacobi.c ├── jacobi.h ├── kludge.h ├── lbn.h ├── lbn00.c ├── lbn16.c ├── lbn16.h ├── lbn32.c ├── lbn32.h ├── lbn64.c ├── lbn64.h ├── lbnmem.c ├── lbnmem.h ├── legal.c ├── legal.h ├── prime.c ├── prime.h ├── sieve.c └── sieve.h ├── build ├── zrtpcpp.bdsproj └── zrtpcpp.cpp ├── common ├── icuUtf.h ├── icuUtf8.c ├── 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 │ ├── hmac.cpp │ ├── hmac.h │ ├── sha1.c │ └── sha1.h └── zrtp ├── Base32.cpp ├── EmojiBase32.cpp ├── ZIDCacheDb.cpp ├── ZIDCacheEmpty.cpp ├── ZIDCacheFile.cpp ├── ZIDRecordDb.cpp ├── ZIDRecordEmpty.cpp ├── ZIDRecordFile.cpp ├── ZRtp.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 ├── hmac256.cpp ├── hmac256.h ├── hmac384.cpp ├── hmac384.h ├── 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 ├── EmojiBase32.h ├── ZIDCache.h ├── ZIDCacheDb.h ├── ZIDCacheEmpty.h ├── ZIDCacheFile.h ├── ZIDRecord.h ├── ZIDRecordDb.h ├── ZIDRecordEmpty.h ├── ZIDRecordFile.h ├── ZRtp.h ├── ZrtpCallback.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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/README.md -------------------------------------------------------------------------------- /baresip/include/baresip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/include/baresip.h -------------------------------------------------------------------------------- /baresip/include/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/include/module.h -------------------------------------------------------------------------------- /baresip/modules/gsm/gsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/modules/gsm/gsm.c -------------------------------------------------------------------------------- /baresip/modules/ice/ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/modules/ice/ice.c -------------------------------------------------------------------------------- /baresip/modules/l16/l16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/modules/l16/l16.c -------------------------------------------------------------------------------- /baresip/modules/mwi/mwi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/modules/mwi/mwi.c -------------------------------------------------------------------------------- /baresip/modules/sdl/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/modules/sdl/sdl.c -------------------------------------------------------------------------------- /baresip/src/account.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/account.c -------------------------------------------------------------------------------- /baresip/src/aucodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/aucodec.c -------------------------------------------------------------------------------- /baresip/src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/audio.c -------------------------------------------------------------------------------- /baresip/src/aufilt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/aufilt.c -------------------------------------------------------------------------------- /baresip/src/auplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/auplay.c -------------------------------------------------------------------------------- /baresip/src/ausrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/ausrc.c -------------------------------------------------------------------------------- /baresip/src/call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/call.c -------------------------------------------------------------------------------- /baresip/src/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/cmd.c -------------------------------------------------------------------------------- /baresip/src/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/conf.c -------------------------------------------------------------------------------- /baresip/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/config.c -------------------------------------------------------------------------------- /baresip/src/contact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/contact.c -------------------------------------------------------------------------------- /baresip/src/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/core.h -------------------------------------------------------------------------------- /baresip/src/dtmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/dtmf.c -------------------------------------------------------------------------------- /baresip/src/dtmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/dtmf.h -------------------------------------------------------------------------------- /baresip/src/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/magic.h -------------------------------------------------------------------------------- /baresip/src/mctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/mctrl.c -------------------------------------------------------------------------------- /baresip/src/menc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/menc.c -------------------------------------------------------------------------------- /baresip/src/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/message.c -------------------------------------------------------------------------------- /baresip/src/mnat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/mnat.c -------------------------------------------------------------------------------- /baresip/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/module.c -------------------------------------------------------------------------------- /baresip/src/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/net.c -------------------------------------------------------------------------------- /baresip/src/paging_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/paging_tx.c -------------------------------------------------------------------------------- /baresip/src/play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/play.c -------------------------------------------------------------------------------- /baresip/src/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/reg.c -------------------------------------------------------------------------------- /baresip/src/rtpkeep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/rtpkeep.c -------------------------------------------------------------------------------- /baresip/src/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/sdp.c -------------------------------------------------------------------------------- /baresip/src/sipreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/sipreq.c -------------------------------------------------------------------------------- /baresip/src/static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/static.c -------------------------------------------------------------------------------- /baresip/src/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/stream.c -------------------------------------------------------------------------------- /baresip/src/ua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/ua.c -------------------------------------------------------------------------------- /baresip/src/vidcodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/vidcodec.c -------------------------------------------------------------------------------- /baresip/src/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/video.c -------------------------------------------------------------------------------- /baresip/src/vidfilt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/vidfilt.c -------------------------------------------------------------------------------- /baresip/src/vidisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/vidisp.c -------------------------------------------------------------------------------- /baresip/src/vidsrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/baresip/src/vidsrc.c -------------------------------------------------------------------------------- /bccsdk/strmiids.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/bccsdk/strmiids.lib -------------------------------------------------------------------------------- /common/BtnController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/BtnController.h -------------------------------------------------------------------------------- /common/Colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/Colors.cpp -------------------------------------------------------------------------------- /common/Colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/Colors.h -------------------------------------------------------------------------------- /common/KeybKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/KeybKeys.cpp -------------------------------------------------------------------------------- /common/KeybKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/KeybKeys.h -------------------------------------------------------------------------------- /common/MathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/MathUtils.cpp -------------------------------------------------------------------------------- /common/MathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/MathUtils.h -------------------------------------------------------------------------------- /common/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/Mutex.h -------------------------------------------------------------------------------- /common/NetworkUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/NetworkUtils.cpp -------------------------------------------------------------------------------- /common/NetworkUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/NetworkUtils.h -------------------------------------------------------------------------------- /common/OS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/OS.cpp -------------------------------------------------------------------------------- /common/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/OS.h -------------------------------------------------------------------------------- /common/Observable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/Observable.h -------------------------------------------------------------------------------- /common/Observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/Observer.h -------------------------------------------------------------------------------- /common/ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/ScopedLock.h -------------------------------------------------------------------------------- /common/StaticCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/StaticCheck.h -------------------------------------------------------------------------------- /common/TelecomUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/TelecomUtils.cpp -------------------------------------------------------------------------------- /common/TelecomUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/TelecomUtils.h -------------------------------------------------------------------------------- /common/TimeCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/TimeCounter.h -------------------------------------------------------------------------------- /common/TrayIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/TrayIcon.cpp -------------------------------------------------------------------------------- /common/TrayIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/TrayIcon.h -------------------------------------------------------------------------------- /common/Unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/Unicode.cpp -------------------------------------------------------------------------------- /common/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/Unicode.h -------------------------------------------------------------------------------- /common/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/Utilities.cpp -------------------------------------------------------------------------------- /common/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/Utilities.h -------------------------------------------------------------------------------- /common/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/base64.cpp -------------------------------------------------------------------------------- /common/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/base64.h -------------------------------------------------------------------------------- /common/common.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/common.bdsproj -------------------------------------------------------------------------------- /common/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/common.cpp -------------------------------------------------------------------------------- /common/ecc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/ecc.cpp -------------------------------------------------------------------------------- /common/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/ecc.h -------------------------------------------------------------------------------- /common/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/fifo.h -------------------------------------------------------------------------------- /common/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/common/singleton.h -------------------------------------------------------------------------------- /cppcheck/tSIP.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/cppcheck/tSIP.cppcheck -------------------------------------------------------------------------------- /ffmpeg/dll2lib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/ffmpeg/dll2lib.bat -------------------------------------------------------------------------------- /ffmpeg/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/ffmpeg/info.txt -------------------------------------------------------------------------------- /ffmpeg/lib/avcodec-59.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/ffmpeg/lib/avcodec-59.lib -------------------------------------------------------------------------------- /ffmpeg/lib/avutil-57.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/ffmpeg/lib/avutil-57.lib -------------------------------------------------------------------------------- /ffmpeg/lib/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/ffmpeg/lib/info.txt -------------------------------------------------------------------------------- /g722/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/GNUmakefile -------------------------------------------------------------------------------- /g722/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/Makefile -------------------------------------------------------------------------------- /g722/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/README.md -------------------------------------------------------------------------------- /g722/g722.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/g722.bdsproj -------------------------------------------------------------------------------- /g722/g722.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/g722.cpp -------------------------------------------------------------------------------- /g722/g722.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/g722.h -------------------------------------------------------------------------------- /g722/g722_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/g722_decode.c -------------------------------------------------------------------------------- /g722/g722_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/g722_decoder.h -------------------------------------------------------------------------------- /g722/g722_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/g722_encode.c -------------------------------------------------------------------------------- /g722/g722_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/g722_encoder.h -------------------------------------------------------------------------------- /g722/g722_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/g722_private.h -------------------------------------------------------------------------------- /g722/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/test.c -------------------------------------------------------------------------------- /g722/test.checksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/test.checksum -------------------------------------------------------------------------------- /g722/test.g722: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/g722/test.g722 -------------------------------------------------------------------------------- /gsm/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/COPYRIGHT -------------------------------------------------------------------------------- /gsm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/README -------------------------------------------------------------------------------- /gsm/build/gsm.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/build/gsm.bdsproj -------------------------------------------------------------------------------- /gsm/build/gsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/build/gsm.cpp -------------------------------------------------------------------------------- /gsm/inc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/inc/config.h -------------------------------------------------------------------------------- /gsm/inc/gsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/inc/gsm.h -------------------------------------------------------------------------------- /gsm/inc/gsm.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/inc/gsm.h.orig -------------------------------------------------------------------------------- /gsm/inc/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/inc/private.h -------------------------------------------------------------------------------- /gsm/inc/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/inc/proto.h -------------------------------------------------------------------------------- /gsm/inc/toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/inc/toast.h -------------------------------------------------------------------------------- /gsm/inc/unproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/inc/unproto.h -------------------------------------------------------------------------------- /gsm/src/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/add.c -------------------------------------------------------------------------------- /gsm/src/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/code.c -------------------------------------------------------------------------------- /gsm/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/debug.c -------------------------------------------------------------------------------- /gsm/src/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/decode.c -------------------------------------------------------------------------------- /gsm/src/gsm_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/gsm_create.c -------------------------------------------------------------------------------- /gsm/src/gsm_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/gsm_decode.c -------------------------------------------------------------------------------- /gsm/src/gsm_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/gsm_destroy.c -------------------------------------------------------------------------------- /gsm/src/gsm_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/gsm_encode.c -------------------------------------------------------------------------------- /gsm/src/gsm_explode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/gsm_explode.c -------------------------------------------------------------------------------- /gsm/src/gsm_implode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/gsm_implode.c -------------------------------------------------------------------------------- /gsm/src/gsm_option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/gsm_option.c -------------------------------------------------------------------------------- /gsm/src/gsm_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/gsm_print.c -------------------------------------------------------------------------------- /gsm/src/long_term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/long_term.c -------------------------------------------------------------------------------- /gsm/src/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/lpc.c -------------------------------------------------------------------------------- /gsm/src/preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/preprocess.c -------------------------------------------------------------------------------- /gsm/src/rpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/rpe.c -------------------------------------------------------------------------------- /gsm/src/short_term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/short_term.c -------------------------------------------------------------------------------- /gsm/src/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/table.c -------------------------------------------------------------------------------- /gsm/src/toast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/toast.c -------------------------------------------------------------------------------- /gsm/src/toast_alaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/toast_alaw.c -------------------------------------------------------------------------------- /gsm/src/toast_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/toast_audio.c -------------------------------------------------------------------------------- /gsm/src/toast_lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/toast_lin.c -------------------------------------------------------------------------------- /gsm/src/toast_ulaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/gsm/src/toast_ulaw.c -------------------------------------------------------------------------------- /inttypes/inttypes.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jsoncpp/AUTHORS: -------------------------------------------------------------------------------- 1 | Baptiste Lepilleur 2 | -------------------------------------------------------------------------------- /jsoncpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/jsoncpp/README.txt -------------------------------------------------------------------------------- /jsoncpp/doc/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/jsoncpp/doc/doxyfile.in -------------------------------------------------------------------------------- /jsoncpp/doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/jsoncpp/doc/footer.html -------------------------------------------------------------------------------- /jsoncpp/doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/jsoncpp/doc/header.html -------------------------------------------------------------------------------- /jsoncpp/doc/jsoncpp.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/jsoncpp/doc/jsoncpp.dox -------------------------------------------------------------------------------- /jsoncpp/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/jsoncpp/doc/readme.txt -------------------------------------------------------------------------------- /jsoncpp/doc/roadmap.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/jsoncpp/doc/roadmap.dox -------------------------------------------------------------------------------- /jsoncpp/doc/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/jsoncpp/doc/sconscript -------------------------------------------------------------------------------- /jsoncpp/jsoncpp.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/jsoncpp/jsoncpp.bdsproj -------------------------------------------------------------------------------- /jsoncpp/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/jsoncpp/jsoncpp.cpp -------------------------------------------------------------------------------- /lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/Makefile -------------------------------------------------------------------------------- /lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/README -------------------------------------------------------------------------------- /lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/doc/contents.html -------------------------------------------------------------------------------- /lua/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/doc/index.css -------------------------------------------------------------------------------- /lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/doc/logo.gif -------------------------------------------------------------------------------- /lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/doc/lua.1 -------------------------------------------------------------------------------- /lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/doc/lua.css -------------------------------------------------------------------------------- /lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/doc/luac.1 -------------------------------------------------------------------------------- /lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/doc/manual.css -------------------------------------------------------------------------------- /lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/doc/manual.html -------------------------------------------------------------------------------- /lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/doc/readme.html -------------------------------------------------------------------------------- /lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/Makefile -------------------------------------------------------------------------------- /lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lapi.c -------------------------------------------------------------------------------- /lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lapi.h -------------------------------------------------------------------------------- /lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lauxlib.c -------------------------------------------------------------------------------- /lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lauxlib.h -------------------------------------------------------------------------------- /lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lbaselib.c -------------------------------------------------------------------------------- /lua/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lbitlib.c -------------------------------------------------------------------------------- /lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lcode.c -------------------------------------------------------------------------------- /lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lcode.h -------------------------------------------------------------------------------- /lua/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lcorolib.c -------------------------------------------------------------------------------- /lua/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lctype.c -------------------------------------------------------------------------------- /lua/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lctype.h -------------------------------------------------------------------------------- /lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ldblib.c -------------------------------------------------------------------------------- /lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ldebug.c -------------------------------------------------------------------------------- /lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ldebug.h -------------------------------------------------------------------------------- /lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ldo.c -------------------------------------------------------------------------------- /lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ldo.h -------------------------------------------------------------------------------- /lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ldump.c -------------------------------------------------------------------------------- /lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lfunc.c -------------------------------------------------------------------------------- /lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lfunc.h -------------------------------------------------------------------------------- /lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lgc.c -------------------------------------------------------------------------------- /lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lgc.h -------------------------------------------------------------------------------- /lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/linit.c -------------------------------------------------------------------------------- /lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/liolib.c -------------------------------------------------------------------------------- /lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/llex.c -------------------------------------------------------------------------------- /lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/llex.h -------------------------------------------------------------------------------- /lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/llimits.h -------------------------------------------------------------------------------- /lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lmathlib.c -------------------------------------------------------------------------------- /lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lmem.c -------------------------------------------------------------------------------- /lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lmem.h -------------------------------------------------------------------------------- /lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/loadlib.c -------------------------------------------------------------------------------- /lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lobject.c -------------------------------------------------------------------------------- /lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lobject.h -------------------------------------------------------------------------------- /lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lopcodes.c -------------------------------------------------------------------------------- /lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lopcodes.h -------------------------------------------------------------------------------- /lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/loslib.c -------------------------------------------------------------------------------- /lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lparser.c -------------------------------------------------------------------------------- /lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lparser.h -------------------------------------------------------------------------------- /lua/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lprefix.h -------------------------------------------------------------------------------- /lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lstate.c -------------------------------------------------------------------------------- /lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lstate.h -------------------------------------------------------------------------------- /lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lstring.c -------------------------------------------------------------------------------- /lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lstring.h -------------------------------------------------------------------------------- /lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lstrlib.c -------------------------------------------------------------------------------- /lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ltable.c -------------------------------------------------------------------------------- /lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ltable.h -------------------------------------------------------------------------------- /lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ltablib.c -------------------------------------------------------------------------------- /lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ltm.c -------------------------------------------------------------------------------- /lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/ltm.h -------------------------------------------------------------------------------- /lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lua.c -------------------------------------------------------------------------------- /lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lua.h -------------------------------------------------------------------------------- /lua/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lua.hpp -------------------------------------------------------------------------------- /lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/luac.c -------------------------------------------------------------------------------- /lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/luaconf.h -------------------------------------------------------------------------------- /lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lualib.h -------------------------------------------------------------------------------- /lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lundump.c -------------------------------------------------------------------------------- /lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lundump.h -------------------------------------------------------------------------------- /lua/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lutf8lib.c -------------------------------------------------------------------------------- /lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lvm.c -------------------------------------------------------------------------------- /lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lvm.h -------------------------------------------------------------------------------- /lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lzio.c -------------------------------------------------------------------------------- /lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/lua/src/lzio.h -------------------------------------------------------------------------------- /opus/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/AUTHORS -------------------------------------------------------------------------------- /opus/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/COPYING -------------------------------------------------------------------------------- /opus/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opus/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/INSTALL -------------------------------------------------------------------------------- /opus/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/Makefile.am -------------------------------------------------------------------------------- /opus/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/Makefile.in -------------------------------------------------------------------------------- /opus/Makefile.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/Makefile.mips -------------------------------------------------------------------------------- /opus/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/Makefile.unix -------------------------------------------------------------------------------- /opus/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/README -------------------------------------------------------------------------------- /opus/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/aclocal.m4 -------------------------------------------------------------------------------- /opus/celt/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/arch.h -------------------------------------------------------------------------------- /opus/celt/arm/arm2gnu.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/arm/arm2gnu.pl -------------------------------------------------------------------------------- /opus/celt/arm/armcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/arm/armcpu.c -------------------------------------------------------------------------------- /opus/celt/arm/armcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/arm/armcpu.h -------------------------------------------------------------------------------- /opus/celt/arm/fft_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/arm/fft_arm.h -------------------------------------------------------------------------------- /opus/celt/arm/mdct_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/arm/mdct_arm.h -------------------------------------------------------------------------------- /opus/celt/arm/pitch_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/arm/pitch_arm.h -------------------------------------------------------------------------------- /opus/celt/bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/bands.c -------------------------------------------------------------------------------- /opus/celt/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/bands.h -------------------------------------------------------------------------------- /opus/celt/celt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/celt.c -------------------------------------------------------------------------------- /opus/celt/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/celt.h -------------------------------------------------------------------------------- /opus/celt/celt_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/celt_decoder.c -------------------------------------------------------------------------------- /opus/celt/celt_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/celt_encoder.c -------------------------------------------------------------------------------- /opus/celt/celt_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/celt_lpc.c -------------------------------------------------------------------------------- /opus/celt/celt_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/celt_lpc.h -------------------------------------------------------------------------------- /opus/celt/cpu_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/cpu_support.h -------------------------------------------------------------------------------- /opus/celt/cwrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/cwrs.c -------------------------------------------------------------------------------- /opus/celt/cwrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/cwrs.h -------------------------------------------------------------------------------- /opus/celt/ecintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/ecintrin.h -------------------------------------------------------------------------------- /opus/celt/entcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/entcode.c -------------------------------------------------------------------------------- /opus/celt/entcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/entcode.h -------------------------------------------------------------------------------- /opus/celt/entdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/entdec.c -------------------------------------------------------------------------------- /opus/celt/entdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/entdec.h -------------------------------------------------------------------------------- /opus/celt/entenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/entenc.c -------------------------------------------------------------------------------- /opus/celt/entenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/entenc.h -------------------------------------------------------------------------------- /opus/celt/fixed_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/fixed_debug.h -------------------------------------------------------------------------------- /opus/celt/fixed_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/fixed_generic.h -------------------------------------------------------------------------------- /opus/celt/float_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/float_cast.h -------------------------------------------------------------------------------- /opus/celt/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/kiss_fft.c -------------------------------------------------------------------------------- /opus/celt/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/kiss_fft.h -------------------------------------------------------------------------------- /opus/celt/laplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/laplace.c -------------------------------------------------------------------------------- /opus/celt/laplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/laplace.h -------------------------------------------------------------------------------- /opus/celt/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/mathops.c -------------------------------------------------------------------------------- /opus/celt/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/mathops.h -------------------------------------------------------------------------------- /opus/celt/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/mdct.c -------------------------------------------------------------------------------- /opus/celt/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/mdct.h -------------------------------------------------------------------------------- /opus/celt/mfrngcod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/mfrngcod.h -------------------------------------------------------------------------------- /opus/celt/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/modes.c -------------------------------------------------------------------------------- /opus/celt/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/modes.h -------------------------------------------------------------------------------- /opus/celt/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/os_support.h -------------------------------------------------------------------------------- /opus/celt/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/pitch.c -------------------------------------------------------------------------------- /opus/celt/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/pitch.h -------------------------------------------------------------------------------- /opus/celt/quant_bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/quant_bands.c -------------------------------------------------------------------------------- /opus/celt/quant_bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/quant_bands.h -------------------------------------------------------------------------------- /opus/celt/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/rate.c -------------------------------------------------------------------------------- /opus/celt/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/rate.h -------------------------------------------------------------------------------- /opus/celt/stack_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/stack_alloc.h -------------------------------------------------------------------------------- /opus/celt/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/vq.c -------------------------------------------------------------------------------- /opus/celt/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/vq.h -------------------------------------------------------------------------------- /opus/celt/x86/pitch_sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/x86/pitch_sse.c -------------------------------------------------------------------------------- /opus/celt/x86/pitch_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/x86/pitch_sse.h -------------------------------------------------------------------------------- /opus/celt/x86/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/x86/x86cpu.c -------------------------------------------------------------------------------- /opus/celt/x86/x86cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt/x86/x86cpu.h -------------------------------------------------------------------------------- /opus/celt_headers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt_headers.mk -------------------------------------------------------------------------------- /opus/celt_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/celt_sources.mk -------------------------------------------------------------------------------- /opus/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/compile -------------------------------------------------------------------------------- /opus/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/config.guess -------------------------------------------------------------------------------- /opus/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/config.h.in -------------------------------------------------------------------------------- /opus/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/config.sub -------------------------------------------------------------------------------- /opus/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/configure -------------------------------------------------------------------------------- /opus/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/configure.ac -------------------------------------------------------------------------------- /opus/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/depcomp -------------------------------------------------------------------------------- /opus/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/doc/Doxyfile.in -------------------------------------------------------------------------------- /opus/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/doc/Makefile.am -------------------------------------------------------------------------------- /opus/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/doc/Makefile.in -------------------------------------------------------------------------------- /opus/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/doc/TODO -------------------------------------------------------------------------------- /opus/doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/doc/footer.html -------------------------------------------------------------------------------- /opus/doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/doc/header.html -------------------------------------------------------------------------------- /opus/doc/opus_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/doc/opus_logo.svg -------------------------------------------------------------------------------- /opus/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/include/opus.h -------------------------------------------------------------------------------- /opus/include/opus_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/include/opus_types.h -------------------------------------------------------------------------------- /opus/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/install-sh -------------------------------------------------------------------------------- /opus/libopus.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/libopus.bdsproj -------------------------------------------------------------------------------- /opus/libopus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/libopus.cpp -------------------------------------------------------------------------------- /opus/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/ltmain.sh -------------------------------------------------------------------------------- /opus/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/m4/libtool.m4 -------------------------------------------------------------------------------- /opus/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/m4/ltoptions.m4 -------------------------------------------------------------------------------- /opus/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/m4/ltsugar.m4 -------------------------------------------------------------------------------- /opus/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/m4/ltversion.m4 -------------------------------------------------------------------------------- /opus/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /opus/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/missing -------------------------------------------------------------------------------- /opus/opus.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/opus.m4 -------------------------------------------------------------------------------- /opus/opus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/opus.pc.in -------------------------------------------------------------------------------- /opus/opus_headers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/opus_headers.mk -------------------------------------------------------------------------------- /opus/opus_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/opus_sources.mk -------------------------------------------------------------------------------- /opus/package_version: -------------------------------------------------------------------------------- 1 | PACKAGE_VERSION="1.1.5" 2 | -------------------------------------------------------------------------------- /opus/silk/A2NLSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/A2NLSF.c -------------------------------------------------------------------------------- /opus/silk/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/API.h -------------------------------------------------------------------------------- /opus/silk/CNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/CNG.c -------------------------------------------------------------------------------- /opus/silk/Inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/Inlines.h -------------------------------------------------------------------------------- /opus/silk/MacroCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/MacroCount.h -------------------------------------------------------------------------------- /opus/silk/MacroDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/MacroDebug.h -------------------------------------------------------------------------------- /opus/silk/NLSF2A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/NLSF2A.c -------------------------------------------------------------------------------- /opus/silk/NLSF_VQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/NLSF_VQ.c -------------------------------------------------------------------------------- /opus/silk/NLSF_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/NLSF_decode.c -------------------------------------------------------------------------------- /opus/silk/NLSF_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/NLSF_encode.c -------------------------------------------------------------------------------- /opus/silk/NLSF_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/NLSF_unpack.c -------------------------------------------------------------------------------- /opus/silk/NSQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/NSQ.c -------------------------------------------------------------------------------- /opus/silk/NSQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/NSQ.h -------------------------------------------------------------------------------- /opus/silk/NSQ_del_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/NSQ_del_dec.c -------------------------------------------------------------------------------- /opus/silk/PLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/PLC.c -------------------------------------------------------------------------------- /opus/silk/PLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/PLC.h -------------------------------------------------------------------------------- /opus/silk/SigProc_FIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/SigProc_FIX.h -------------------------------------------------------------------------------- /opus/silk/VAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/VAD.c -------------------------------------------------------------------------------- /opus/silk/VQ_WMat_EC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/VQ_WMat_EC.c -------------------------------------------------------------------------------- /opus/silk/arm/NSQ_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/arm/NSQ_neon.c -------------------------------------------------------------------------------- /opus/silk/arm/NSQ_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/arm/NSQ_neon.h -------------------------------------------------------------------------------- /opus/silk/biquad_alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/biquad_alt.c -------------------------------------------------------------------------------- /opus/silk/bwexpander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/bwexpander.c -------------------------------------------------------------------------------- /opus/silk/bwexpander_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/bwexpander_32.c -------------------------------------------------------------------------------- /opus/silk/code_signs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/code_signs.c -------------------------------------------------------------------------------- /opus/silk/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/control.h -------------------------------------------------------------------------------- /opus/silk/control_SNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/control_SNR.c -------------------------------------------------------------------------------- /opus/silk/control_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/control_codec.c -------------------------------------------------------------------------------- /opus/silk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/debug.c -------------------------------------------------------------------------------- /opus/silk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/debug.h -------------------------------------------------------------------------------- /opus/silk/dec_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/dec_API.c -------------------------------------------------------------------------------- /opus/silk/decode_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/decode_core.c -------------------------------------------------------------------------------- /opus/silk/decode_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/decode_frame.c -------------------------------------------------------------------------------- /opus/silk/decode_pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/decode_pitch.c -------------------------------------------------------------------------------- /opus/silk/decode_pulses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/decode_pulses.c -------------------------------------------------------------------------------- /opus/silk/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/define.h -------------------------------------------------------------------------------- /opus/silk/enc_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/enc_API.c -------------------------------------------------------------------------------- /opus/silk/encode_pulses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/encode_pulses.c -------------------------------------------------------------------------------- /opus/silk/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/errors.h -------------------------------------------------------------------------------- /opus/silk/fixed/k2a_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/fixed/k2a_FIX.c -------------------------------------------------------------------------------- /opus/silk/float/k2a_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/float/k2a_FLP.c -------------------------------------------------------------------------------- /opus/silk/gain_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/gain_quant.c -------------------------------------------------------------------------------- /opus/silk/init_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/init_decoder.c -------------------------------------------------------------------------------- /opus/silk/init_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/init_encoder.c -------------------------------------------------------------------------------- /opus/silk/interpolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/interpolate.c -------------------------------------------------------------------------------- /opus/silk/lin2log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/lin2log.c -------------------------------------------------------------------------------- /opus/silk/log2lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/log2lin.c -------------------------------------------------------------------------------- /opus/silk/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/macros.h -------------------------------------------------------------------------------- /opus/silk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/main.h -------------------------------------------------------------------------------- /opus/silk/process_NLSFs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/process_NLSFs.c -------------------------------------------------------------------------------- /opus/silk/resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/resampler.c -------------------------------------------------------------------------------- /opus/silk/resampler_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/resampler_rom.c -------------------------------------------------------------------------------- /opus/silk/resampler_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/resampler_rom.h -------------------------------------------------------------------------------- /opus/silk/shell_coder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/shell_coder.c -------------------------------------------------------------------------------- /opus/silk/sigm_Q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/sigm_Q15.c -------------------------------------------------------------------------------- /opus/silk/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/sort.c -------------------------------------------------------------------------------- /opus/silk/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/structs.h -------------------------------------------------------------------------------- /opus/silk/sum_sqr_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/sum_sqr_shift.c -------------------------------------------------------------------------------- /opus/silk/table_LSF_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/table_LSF_cos.c -------------------------------------------------------------------------------- /opus/silk/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/tables.h -------------------------------------------------------------------------------- /opus/silk/tables_LTP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/tables_LTP.c -------------------------------------------------------------------------------- /opus/silk/tables_gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/tables_gain.c -------------------------------------------------------------------------------- /opus/silk/tables_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/tables_other.c -------------------------------------------------------------------------------- /opus/silk/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/typedef.h -------------------------------------------------------------------------------- /opus/silk/x86/NSQ_sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/x86/NSQ_sse.c -------------------------------------------------------------------------------- /opus/silk/x86/VAD_sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/x86/VAD_sse.c -------------------------------------------------------------------------------- /opus/silk/x86/main_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk/x86/main_sse.h -------------------------------------------------------------------------------- /opus/silk_headers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk_headers.mk -------------------------------------------------------------------------------- /opus/silk_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/silk_sources.mk -------------------------------------------------------------------------------- /opus/src/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/analysis.c -------------------------------------------------------------------------------- /opus/src/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/analysis.h -------------------------------------------------------------------------------- /opus/src/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/mlp.c -------------------------------------------------------------------------------- /opus/src/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/mlp.h -------------------------------------------------------------------------------- /opus/src/mlp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/mlp_data.c -------------------------------------------------------------------------------- /opus/src/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/opus.c -------------------------------------------------------------------------------- /opus/src/opus_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/opus_compare.c -------------------------------------------------------------------------------- /opus/src/opus_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/opus_decoder.c -------------------------------------------------------------------------------- /opus/src/opus_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/opus_demo.c -------------------------------------------------------------------------------- /opus/src/opus_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/opus_encoder.c -------------------------------------------------------------------------------- /opus/src/opus_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/opus_private.h -------------------------------------------------------------------------------- /opus/src/repacketizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/repacketizer.c -------------------------------------------------------------------------------- /opus/src/tansig_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/src/tansig_table.h -------------------------------------------------------------------------------- /opus/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/test-driver -------------------------------------------------------------------------------- /opus/tests/run_vectors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/tests/run_vectors.sh -------------------------------------------------------------------------------- /opus/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/version.mk -------------------------------------------------------------------------------- /opus/win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/win32/config.h -------------------------------------------------------------------------------- /opus/win32/genversion.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opus/win32/genversion.bat -------------------------------------------------------------------------------- /opusenc/include/opusenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opusenc/include/opusenc.h -------------------------------------------------------------------------------- /opusenc/src/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opusenc/src/arch.h -------------------------------------------------------------------------------- /opusenc/src/ogg_packer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opusenc/src/ogg_packer.c -------------------------------------------------------------------------------- /opusenc/src/ogg_packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opusenc/src/ogg_packer.h -------------------------------------------------------------------------------- /opusenc/src/opus_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opusenc/src/opus_header.c -------------------------------------------------------------------------------- /opusenc/src/opus_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opusenc/src/opus_header.h -------------------------------------------------------------------------------- /opusenc/src/opusenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opusenc/src/opusenc.c -------------------------------------------------------------------------------- /opusenc/src/picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opusenc/src/picture.c -------------------------------------------------------------------------------- /opusenc/src/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/opusenc/src/picture.h -------------------------------------------------------------------------------- /portaudio/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/portaudio/LICENSE.txt -------------------------------------------------------------------------------- /portaudio/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/portaudio/README.txt -------------------------------------------------------------------------------- /re/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/Makefile -------------------------------------------------------------------------------- /re/docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/docs/COPYING -------------------------------------------------------------------------------- /re/docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/docs/ChangeLog -------------------------------------------------------------------------------- /re/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/docs/README -------------------------------------------------------------------------------- /re/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/docs/TODO -------------------------------------------------------------------------------- /re/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/docs/main.dox -------------------------------------------------------------------------------- /re/docs/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/docs/symbols.txt -------------------------------------------------------------------------------- /re/include/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re.h -------------------------------------------------------------------------------- /re/include/re_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_aes.h -------------------------------------------------------------------------------- /re/include/re_av1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_av1.h -------------------------------------------------------------------------------- /re/include/re_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_base64.h -------------------------------------------------------------------------------- /re/include/re_bitv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_bitv.h -------------------------------------------------------------------------------- /re/include/re_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_conf.h -------------------------------------------------------------------------------- /re/include/re_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_crc32.h -------------------------------------------------------------------------------- /re/include/re_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_dbg.h -------------------------------------------------------------------------------- /re/include/re_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_dns.h -------------------------------------------------------------------------------- /re/include/re_fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_fmt.h -------------------------------------------------------------------------------- /re/include/re_h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_h264.h -------------------------------------------------------------------------------- /re/include/re_h265.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_h265.h -------------------------------------------------------------------------------- /re/include/re_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_hash.h -------------------------------------------------------------------------------- /re/include/re_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_hmac.h -------------------------------------------------------------------------------- /re/include/re_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_http.h -------------------------------------------------------------------------------- /re/include/re_httpauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_httpauth.h -------------------------------------------------------------------------------- /re/include/re_ice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_ice.h -------------------------------------------------------------------------------- /re/include/re_jbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_jbuf.h -------------------------------------------------------------------------------- /re/include/re_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_list.h -------------------------------------------------------------------------------- /re/include/re_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_lock.h -------------------------------------------------------------------------------- /re/include/re_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_main.h -------------------------------------------------------------------------------- /re/include/re_mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_mbuf.h -------------------------------------------------------------------------------- /re/include/re_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_md5.h -------------------------------------------------------------------------------- /re/include/re_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_mem.h -------------------------------------------------------------------------------- /re/include/re_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_mod.h -------------------------------------------------------------------------------- /re/include/re_mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_mqueue.h -------------------------------------------------------------------------------- /re/include/re_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_msg.h -------------------------------------------------------------------------------- /re/include/re_natbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_natbd.h -------------------------------------------------------------------------------- /re/include/re_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_net.h -------------------------------------------------------------------------------- /re/include/re_rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_rtp.h -------------------------------------------------------------------------------- /re/include/re_sa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_sa.h -------------------------------------------------------------------------------- /re/include/re_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_sdp.h -------------------------------------------------------------------------------- /re/include/re_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_sha.h -------------------------------------------------------------------------------- /re/include/re_sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_sip.h -------------------------------------------------------------------------------- /re/include/re_sipevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_sipevent.h -------------------------------------------------------------------------------- /re/include/re_sipreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_sipreg.h -------------------------------------------------------------------------------- /re/include/re_sipsess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_sipsess.h -------------------------------------------------------------------------------- /re/include/re_srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_srtp.h -------------------------------------------------------------------------------- /re/include/re_stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_stun.h -------------------------------------------------------------------------------- /re/include/re_sxmlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_sxmlc.h -------------------------------------------------------------------------------- /re/include/re_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_sys.h -------------------------------------------------------------------------------- /re/include/re_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_tcp.h -------------------------------------------------------------------------------- /re/include/re_telev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_telev.h -------------------------------------------------------------------------------- /re/include/re_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_thread.h -------------------------------------------------------------------------------- /re/include/re_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_tls.h -------------------------------------------------------------------------------- /re/include/re_tmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_tmr.h -------------------------------------------------------------------------------- /re/include/re_turn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_turn.h -------------------------------------------------------------------------------- /re/include/re_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_types.h -------------------------------------------------------------------------------- /re/include/re_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_udp.h -------------------------------------------------------------------------------- /re/include/re_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/include/re_uri.h -------------------------------------------------------------------------------- /re/mk/win32-tc/re.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/mk/win32-tc/re.bdsproj -------------------------------------------------------------------------------- /re/mk/win32-tc/re.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/mk/win32-tc/re.cpp -------------------------------------------------------------------------------- /re/src/aes/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/aes/aes.c -------------------------------------------------------------------------------- /re/src/av1/av1_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/av1/av1_pkt.c -------------------------------------------------------------------------------- /re/src/av1/depack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/av1/depack.c -------------------------------------------------------------------------------- /re/src/av1/obu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/av1/obu.c -------------------------------------------------------------------------------- /re/src/base64/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/base64/b64.c -------------------------------------------------------------------------------- /re/src/conf/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/conf/conf.c -------------------------------------------------------------------------------- /re/src/crc32/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/crc32/crc32.c -------------------------------------------------------------------------------- /re/src/dbg/dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dbg/dbg.c -------------------------------------------------------------------------------- /re/src/dbg/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dbg/log.c -------------------------------------------------------------------------------- /re/src/dns/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/client.c -------------------------------------------------------------------------------- /re/src/dns/cstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/cstr.c -------------------------------------------------------------------------------- /re/src/dns/darwin/srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/darwin/srv.c -------------------------------------------------------------------------------- /re/src/dns/dname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/dname.c -------------------------------------------------------------------------------- /re/src/dns/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/dns.h -------------------------------------------------------------------------------- /re/src/dns/dns_hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/dns_hdr.c -------------------------------------------------------------------------------- /re/src/dns/ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/ns.c -------------------------------------------------------------------------------- /re/src/dns/res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/res.c -------------------------------------------------------------------------------- /re/src/dns/rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/rr.c -------------------------------------------------------------------------------- /re/src/dns/rrlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/rrlist.c -------------------------------------------------------------------------------- /re/src/dns/win32/srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/dns/win32/srv.c -------------------------------------------------------------------------------- /re/src/fmt/ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/fmt/ch.c -------------------------------------------------------------------------------- /re/src/fmt/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/fmt/hexdump.c -------------------------------------------------------------------------------- /re/src/fmt/pl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/fmt/pl.c -------------------------------------------------------------------------------- /re/src/fmt/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/fmt/print.c -------------------------------------------------------------------------------- /re/src/fmt/prm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/fmt/prm.c -------------------------------------------------------------------------------- /re/src/fmt/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/fmt/regex.c -------------------------------------------------------------------------------- /re/src/fmt/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/fmt/str.c -------------------------------------------------------------------------------- /re/src/fmt/str_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/fmt/str_error.c -------------------------------------------------------------------------------- /re/src/fmt/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/fmt/time.c -------------------------------------------------------------------------------- /re/src/h264/getbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/h264/getbit.c -------------------------------------------------------------------------------- /re/src/h264/h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/h264/h264.h -------------------------------------------------------------------------------- /re/src/h264/h264_nal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/h264/h264_nal.c -------------------------------------------------------------------------------- /re/src/h264/sps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/h264/sps.c -------------------------------------------------------------------------------- /re/src/hash/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/hash/func.c -------------------------------------------------------------------------------- /re/src/hash/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/hash/hash.c -------------------------------------------------------------------------------- /re/src/hmac/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/hmac/hmac.c -------------------------------------------------------------------------------- /re/src/hmac/hmac_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/hmac/hmac_sha1.c -------------------------------------------------------------------------------- /re/src/http/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/http/auth.c -------------------------------------------------------------------------------- /re/src/http/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/http/mod.mk -------------------------------------------------------------------------------- /re/src/http/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/http/msg.c -------------------------------------------------------------------------------- /re/src/http/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/http/server.c -------------------------------------------------------------------------------- /re/src/httpauth/basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/httpauth/basic.c -------------------------------------------------------------------------------- /re/src/httpauth/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/httpauth/digest.c -------------------------------------------------------------------------------- /re/src/ice/cand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/cand.c -------------------------------------------------------------------------------- /re/src/ice/candpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/candpair.c -------------------------------------------------------------------------------- /re/src/ice/chklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/chklist.c -------------------------------------------------------------------------------- /re/src/ice/comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/comp.c -------------------------------------------------------------------------------- /re/src/ice/connchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/connchk.c -------------------------------------------------------------------------------- /re/src/ice/gather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/gather.c -------------------------------------------------------------------------------- /re/src/ice/ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/ice.c -------------------------------------------------------------------------------- /re/src/ice/ice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/ice.h -------------------------------------------------------------------------------- /re/src/ice/icem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/icem.c -------------------------------------------------------------------------------- /re/src/ice/icesdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/icesdp.c -------------------------------------------------------------------------------- /re/src/ice/icestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/icestr.c -------------------------------------------------------------------------------- /re/src/ice/stunsrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/stunsrv.c -------------------------------------------------------------------------------- /re/src/ice/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/ice/util.c -------------------------------------------------------------------------------- /re/src/jbuf/jbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/jbuf/jbuf.c -------------------------------------------------------------------------------- /re/src/list/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/list/list.c -------------------------------------------------------------------------------- /re/src/lock/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/lock/lock.c -------------------------------------------------------------------------------- /re/src/lock/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/lock/rwlock.c -------------------------------------------------------------------------------- /re/src/lock/win32/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/lock/win32/lock.c -------------------------------------------------------------------------------- /re/src/main/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/main/epoll.c -------------------------------------------------------------------------------- /re/src/main/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/main/init.c -------------------------------------------------------------------------------- /re/src/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/main/main.c -------------------------------------------------------------------------------- /re/src/main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/main/main.h -------------------------------------------------------------------------------- /re/src/main/method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/main/method.c -------------------------------------------------------------------------------- /re/src/mbuf/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/mbuf/mbuf.c -------------------------------------------------------------------------------- /re/src/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/md5/md5.c -------------------------------------------------------------------------------- /re/src/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/md5/md5.h -------------------------------------------------------------------------------- /re/src/md5/wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/md5/wrap.c -------------------------------------------------------------------------------- /re/src/mem/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/mem/mem.c -------------------------------------------------------------------------------- /re/src/mod/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/mod/dl.c -------------------------------------------------------------------------------- /re/src/mod/mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/mod/mod.c -------------------------------------------------------------------------------- /re/src/mod/mod_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/mod/mod_internal.h -------------------------------------------------------------------------------- /re/src/mod/win32/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/mod/win32/dll.c -------------------------------------------------------------------------------- /re/src/mqueue/mqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/mqueue/mqueue.c -------------------------------------------------------------------------------- /re/src/mqueue/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/mqueue/mqueue.h -------------------------------------------------------------------------------- /re/src/msg/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/msg/ctype.c -------------------------------------------------------------------------------- /re/src/msg/msg_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/msg/msg_param.c -------------------------------------------------------------------------------- /re/src/natbd/filtering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/natbd/filtering.c -------------------------------------------------------------------------------- /re/src/natbd/genalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/natbd/genalg.c -------------------------------------------------------------------------------- /re/src/natbd/lifetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/natbd/lifetime.c -------------------------------------------------------------------------------- /re/src/natbd/mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/natbd/mapping.c -------------------------------------------------------------------------------- /re/src/natbd/natstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/natbd/natstr.c -------------------------------------------------------------------------------- /re/src/net/bsd/brt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/bsd/brt.c -------------------------------------------------------------------------------- /re/src/net/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/if.c -------------------------------------------------------------------------------- /re/src/net/ifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/ifaddrs.c -------------------------------------------------------------------------------- /re/src/net/linux/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/linux/rt.c -------------------------------------------------------------------------------- /re/src/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/net.c -------------------------------------------------------------------------------- /re/src/net/net_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/net_sock.c -------------------------------------------------------------------------------- /re/src/net/netstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/netstr.c -------------------------------------------------------------------------------- /re/src/net/posix/pif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/posix/pif.c -------------------------------------------------------------------------------- /re/src/net/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/rt.c -------------------------------------------------------------------------------- /re/src/net/sockopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/sockopt.c -------------------------------------------------------------------------------- /re/src/net/win32/wif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/net/win32/wif.c -------------------------------------------------------------------------------- /re/src/rtp/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/fb.c -------------------------------------------------------------------------------- /re/src/rtp/member.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/member.c -------------------------------------------------------------------------------- /re/src/rtp/ntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/ntp.c -------------------------------------------------------------------------------- /re/src/rtp/pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/pkt.c -------------------------------------------------------------------------------- /re/src/rtp/rtcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/rtcp.c -------------------------------------------------------------------------------- /re/src/rtp/rtcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/rtcp.h -------------------------------------------------------------------------------- /re/src/rtp/rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/rtp.c -------------------------------------------------------------------------------- /re/src/rtp/rtp_rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/rtp_rr.c -------------------------------------------------------------------------------- /re/src/rtp/sdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/sdes.c -------------------------------------------------------------------------------- /re/src/rtp/sess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/sess.c -------------------------------------------------------------------------------- /re/src/rtp/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/rtp/source.c -------------------------------------------------------------------------------- /re/src/sa/ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sa/ntop.c -------------------------------------------------------------------------------- /re/src/sa/printaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sa/printaddr.c -------------------------------------------------------------------------------- /re/src/sa/pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sa/pton.c -------------------------------------------------------------------------------- /re/src/sa/sa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sa/sa.c -------------------------------------------------------------------------------- /re/src/sdp/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sdp/format.c -------------------------------------------------------------------------------- /re/src/sdp/media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sdp/media.c -------------------------------------------------------------------------------- /re/src/sdp/sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sdp/sdp.h -------------------------------------------------------------------------------- /re/src/sdp/sdp_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sdp/sdp_attr.c -------------------------------------------------------------------------------- /re/src/sdp/sdp_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sdp/sdp_msg.c -------------------------------------------------------------------------------- /re/src/sdp/sdp_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sdp/sdp_str.c -------------------------------------------------------------------------------- /re/src/sdp/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sdp/session.c -------------------------------------------------------------------------------- /re/src/sha/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sha/sha1.c -------------------------------------------------------------------------------- /re/src/sip/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/addr.c -------------------------------------------------------------------------------- /re/src/sip/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/auth.c -------------------------------------------------------------------------------- /re/src/sip/cseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/cseq.c -------------------------------------------------------------------------------- /re/src/sip/ctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/ctrans.c -------------------------------------------------------------------------------- /re/src/sip/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/dialog.c -------------------------------------------------------------------------------- /re/src/sip/keepalive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/keepalive.c -------------------------------------------------------------------------------- /re/src/sip/reply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/reply.c -------------------------------------------------------------------------------- /re/src/sip/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/request.c -------------------------------------------------------------------------------- /re/src/sip/sip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/sip.c -------------------------------------------------------------------------------- /re/src/sip/sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/sip.h -------------------------------------------------------------------------------- /re/src/sip/sip_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/sip_msg.c -------------------------------------------------------------------------------- /re/src/sip/sip_reason.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/sip_reason.c -------------------------------------------------------------------------------- /re/src/sip/sip_transp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/sip_transp.c -------------------------------------------------------------------------------- /re/src/sip/strans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/strans.c -------------------------------------------------------------------------------- /re/src/sip/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sip/via.c -------------------------------------------------------------------------------- /re/src/sipevent/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipevent/notify.c -------------------------------------------------------------------------------- /re/src/sipreg/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipreg/reg.c -------------------------------------------------------------------------------- /re/src/sipsess/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipsess/accept.c -------------------------------------------------------------------------------- /re/src/sipsess/ack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipsess/ack.c -------------------------------------------------------------------------------- /re/src/sipsess/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipsess/close.c -------------------------------------------------------------------------------- /re/src/sipsess/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipsess/connect.c -------------------------------------------------------------------------------- /re/src/sipsess/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipsess/info.c -------------------------------------------------------------------------------- /re/src/sipsess/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipsess/listen.c -------------------------------------------------------------------------------- /re/src/sipsess/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipsess/modify.c -------------------------------------------------------------------------------- /re/src/sipsess/sip_sess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipsess/sip_sess.c -------------------------------------------------------------------------------- /re/src/sipsess/sipsess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sipsess/sipsess.h -------------------------------------------------------------------------------- /re/src/srtp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/srtp/README -------------------------------------------------------------------------------- /re/src/srtp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/srtp/misc.c -------------------------------------------------------------------------------- /re/src/srtp/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/srtp/replay.c -------------------------------------------------------------------------------- /re/src/srtp/srtcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/srtp/srtcp.c -------------------------------------------------------------------------------- /re/src/srtp/srtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/srtp/srtp.c -------------------------------------------------------------------------------- /re/src/srtp/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/srtp/srtp.h -------------------------------------------------------------------------------- /re/src/srtp/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/srtp/stream.c -------------------------------------------------------------------------------- /re/src/stun/dnsdisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/dnsdisc.c -------------------------------------------------------------------------------- /re/src/stun/stun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stun.c -------------------------------------------------------------------------------- /re/src/stun/stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stun.h -------------------------------------------------------------------------------- /re/src/stun/stun_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stun_addr.c -------------------------------------------------------------------------------- /re/src/stun/stun_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stun_attr.c -------------------------------------------------------------------------------- /re/src/stun/stun_ctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stun_ctrans.c -------------------------------------------------------------------------------- /re/src/stun/stun_hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stun_hdr.c -------------------------------------------------------------------------------- /re/src/stun/stun_ind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stun_ind.c -------------------------------------------------------------------------------- /re/src/stun/stun_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stun_msg.c -------------------------------------------------------------------------------- /re/src/stun/stun_rep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stun_rep.c -------------------------------------------------------------------------------- /re/src/stun/stun_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stun_req.c -------------------------------------------------------------------------------- /re/src/stun/stunstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/stun/stunstr.c -------------------------------------------------------------------------------- /re/src/sxmlc/sxmlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sxmlc/sxmlc.c -------------------------------------------------------------------------------- /re/src/sxmlc/sxmlsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sxmlc/sxmlsearch.c -------------------------------------------------------------------------------- /re/src/sys/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sys/daemon.c -------------------------------------------------------------------------------- /re/src/sys/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sys/endian.c -------------------------------------------------------------------------------- /re/src/sys/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sys/fs.c -------------------------------------------------------------------------------- /re/src/sys/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sys/rand.c -------------------------------------------------------------------------------- /re/src/sys/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sys/sleep.c -------------------------------------------------------------------------------- /re/src/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sys/sys.c -------------------------------------------------------------------------------- /re/src/sys/sys_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/sys/sys_time.c -------------------------------------------------------------------------------- /re/src/tcp/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/tcp/tcp.c -------------------------------------------------------------------------------- /re/src/tcp/tcp_high.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/tcp/tcp_high.c -------------------------------------------------------------------------------- /re/src/telev/telev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/telev/telev.c -------------------------------------------------------------------------------- /re/src/thread/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/thread/posix.c -------------------------------------------------------------------------------- /re/src/thread/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/thread/thread.c -------------------------------------------------------------------------------- /re/src/tls/openssl/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/tls/openssl/tls.c -------------------------------------------------------------------------------- /re/src/tls/openssl/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/tls/openssl/tls.h -------------------------------------------------------------------------------- /re/src/tmr/tmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/tmr/tmr.c -------------------------------------------------------------------------------- /re/src/turn/chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/turn/chan.c -------------------------------------------------------------------------------- /re/src/turn/perm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/turn/perm.c -------------------------------------------------------------------------------- /re/src/turn/turnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/turn/turnc.c -------------------------------------------------------------------------------- /re/src/turn/turnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/turn/turnc.h -------------------------------------------------------------------------------- /re/src/udp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/udp/udp.c -------------------------------------------------------------------------------- /re/src/uri/ucmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/uri/ucmp.c -------------------------------------------------------------------------------- /re/src/uri/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/uri/uri.c -------------------------------------------------------------------------------- /re/src/uri/uric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/re/src/uri/uric.c -------------------------------------------------------------------------------- /rem/docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/docs/COPYING -------------------------------------------------------------------------------- /rem/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/docs/README -------------------------------------------------------------------------------- /rem/include/rem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem.h -------------------------------------------------------------------------------- /rem/include/rem_au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_au.h -------------------------------------------------------------------------------- /rem/include/rem_aubuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_aubuf.h -------------------------------------------------------------------------------- /rem/include/rem_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_audio.h -------------------------------------------------------------------------------- /rem/include/rem_aufile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_aufile.h -------------------------------------------------------------------------------- /rem/include/rem_aumix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_aumix.h -------------------------------------------------------------------------------- /rem/include/rem_autone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_autone.h -------------------------------------------------------------------------------- /rem/include/rem_avc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_avc.h -------------------------------------------------------------------------------- /rem/include/rem_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_dsp.h -------------------------------------------------------------------------------- /rem/include/rem_fir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_fir.h -------------------------------------------------------------------------------- /rem/include/rem_flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_flv.h -------------------------------------------------------------------------------- /rem/include/rem_g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_g711.h -------------------------------------------------------------------------------- /rem/include/rem_vid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_vid.h -------------------------------------------------------------------------------- /rem/include/rem_vidconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_vidconv.h -------------------------------------------------------------------------------- /rem/include/rem_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_video.h -------------------------------------------------------------------------------- /rem/include/rem_vidmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/include/rem_vidmix.h -------------------------------------------------------------------------------- /rem/mk/win32-tc/rem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/mk/win32-tc/rem.cpp -------------------------------------------------------------------------------- /rem/src/au/au_fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/au/au_fmt.c -------------------------------------------------------------------------------- /rem/src/au/au_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/au/au_util.c -------------------------------------------------------------------------------- /rem/src/aubuf/aubuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/aubuf/aubuf.c -------------------------------------------------------------------------------- /rem/src/aufile/aufile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/aufile/aufile.c -------------------------------------------------------------------------------- /rem/src/aufile/aufile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/aufile/aufile.h -------------------------------------------------------------------------------- /rem/src/aufile/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/aufile/wave.c -------------------------------------------------------------------------------- /rem/src/aumix/aumix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/aumix/aumix.c -------------------------------------------------------------------------------- /rem/src/auresamp/resamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/auresamp/resamp.c -------------------------------------------------------------------------------- /rem/src/autone/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/autone/tone.c -------------------------------------------------------------------------------- /rem/src/fir/fir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/fir/fir.c -------------------------------------------------------------------------------- /rem/src/g711/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/g711/g711.c -------------------------------------------------------------------------------- /rem/src/vid/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/vid/draw.c -------------------------------------------------------------------------------- /rem/src/vid/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/vid/fmt.c -------------------------------------------------------------------------------- /rem/src/vid/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/vid/frame.c -------------------------------------------------------------------------------- /rem/src/vidconv/vconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/vidconv/vconv.c -------------------------------------------------------------------------------- /rem/src/vidmix/vidmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/rem/src/vidmix/vidmix.c -------------------------------------------------------------------------------- /run_bds.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/run_bds.bat -------------------------------------------------------------------------------- /run_bds_x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/run_bds_x64.bat -------------------------------------------------------------------------------- /run_bds_x64_tSIP.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/run_bds_x64_tSIP.bat -------------------------------------------------------------------------------- /run_bds_x64_tSIP_exe.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/run_bds_x64_tSIP_exe.bat -------------------------------------------------------------------------------- /scintilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/License.txt -------------------------------------------------------------------------------- /scintilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/README -------------------------------------------------------------------------------- /scintilla/doc/Design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/doc/Design.html -------------------------------------------------------------------------------- /scintilla/doc/Icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/doc/Icons.html -------------------------------------------------------------------------------- /scintilla/doc/Lexer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/doc/Lexer.txt -------------------------------------------------------------------------------- /scintilla/doc/SciRest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/doc/SciRest.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciWord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/doc/SciWord.jpg -------------------------------------------------------------------------------- /scintilla/doc/Steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/doc/Steps.html -------------------------------------------------------------------------------- /scintilla/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/doc/index.html -------------------------------------------------------------------------------- /scintilla/scintilla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/scintilla.cpp -------------------------------------------------------------------------------- /scintilla/src/CallTip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/CallTip.cpp -------------------------------------------------------------------------------- /scintilla/src/CallTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/CallTip.h -------------------------------------------------------------------------------- /scintilla/src/Catalogue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/Catalogue.h -------------------------------------------------------------------------------- /scintilla/src/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/Document.h -------------------------------------------------------------------------------- /scintilla/src/Editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/Editor.cpp -------------------------------------------------------------------------------- /scintilla/src/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/Editor.h -------------------------------------------------------------------------------- /scintilla/src/Indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/Indicator.h -------------------------------------------------------------------------------- /scintilla/src/KeyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/KeyMap.cpp -------------------------------------------------------------------------------- /scintilla/src/KeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/KeyMap.h -------------------------------------------------------------------------------- /scintilla/src/LexGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/LexGen.py -------------------------------------------------------------------------------- /scintilla/src/PerLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/PerLine.cpp -------------------------------------------------------------------------------- /scintilla/src/PerLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/PerLine.h -------------------------------------------------------------------------------- /scintilla/src/RESearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/RESearch.h -------------------------------------------------------------------------------- /scintilla/src/RunStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/RunStyles.h -------------------------------------------------------------------------------- /scintilla/src/SVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/SVector.h -------------------------------------------------------------------------------- /scintilla/src/Selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/Selection.h -------------------------------------------------------------------------------- /scintilla/src/Style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/Style.cpp -------------------------------------------------------------------------------- /scintilla/src/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/Style.h -------------------------------------------------------------------------------- /scintilla/src/ViewStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/ViewStyle.h -------------------------------------------------------------------------------- /scintilla/src/XPM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/XPM.cpp -------------------------------------------------------------------------------- /scintilla/src/XPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/src/XPM.h -------------------------------------------------------------------------------- /scintilla/win32/PlatWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/win32/PlatWin.h -------------------------------------------------------------------------------- /scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /scintilla/win32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/scintilla/win32/makefile -------------------------------------------------------------------------------- /sdl2/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/sdl2/COPYING.txt -------------------------------------------------------------------------------- /sdl2/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/sdl2/README-SDL.txt -------------------------------------------------------------------------------- /sdl2/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/sdl2/WhatsNew.txt -------------------------------------------------------------------------------- /sdl2/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/sdl2/include/SDL2/SDL.h -------------------------------------------------------------------------------- /sdl2/lib/SDL2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/sdl2/lib/SDL2.def -------------------------------------------------------------------------------- /sdl2/lib/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/sdl2/lib/SDL2.lib -------------------------------------------------------------------------------- /sdl2/lib/note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/sdl2/lib/note.txt -------------------------------------------------------------------------------- /speex/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/AUTHORS -------------------------------------------------------------------------------- /speex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/COPYING -------------------------------------------------------------------------------- /speex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/README -------------------------------------------------------------------------------- /speex/build/libspeex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/build/libspeex.cpp -------------------------------------------------------------------------------- /speex/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/doc/Makefile.am -------------------------------------------------------------------------------- /speex/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/doc/Makefile.in -------------------------------------------------------------------------------- /speex/doc/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/doc/manual.pdf -------------------------------------------------------------------------------- /speex/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = speex 3 | -------------------------------------------------------------------------------- /speex/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/include/Makefile.in -------------------------------------------------------------------------------- /speex/libspeex/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/arch.h -------------------------------------------------------------------------------- /speex/libspeex/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/bits.c -------------------------------------------------------------------------------- /speex/libspeex/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/buffer.c -------------------------------------------------------------------------------- /speex/libspeex/fftwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/fftwrap.c -------------------------------------------------------------------------------- /speex/libspeex/fftwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/fftwrap.h -------------------------------------------------------------------------------- /speex/libspeex/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/filters.c -------------------------------------------------------------------------------- /speex/libspeex/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/filters.h -------------------------------------------------------------------------------- /speex/libspeex/jitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/jitter.c -------------------------------------------------------------------------------- /speex/libspeex/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/kiss_fft.c -------------------------------------------------------------------------------- /speex/libspeex/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/kiss_fft.h -------------------------------------------------------------------------------- /speex/libspeex/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/lpc.c -------------------------------------------------------------------------------- /speex/libspeex/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/lpc.h -------------------------------------------------------------------------------- /speex/libspeex/lpc_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/lpc_bfin.h -------------------------------------------------------------------------------- /speex/libspeex/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/lsp.c -------------------------------------------------------------------------------- /speex/libspeex/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/lsp.h -------------------------------------------------------------------------------- /speex/libspeex/lsp_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/lsp_bfin.h -------------------------------------------------------------------------------- /speex/libspeex/ltp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/ltp.c -------------------------------------------------------------------------------- /speex/libspeex/ltp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/ltp.h -------------------------------------------------------------------------------- /speex/libspeex/ltp_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/ltp_arm4.h -------------------------------------------------------------------------------- /speex/libspeex/ltp_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/ltp_bfin.h -------------------------------------------------------------------------------- /speex/libspeex/ltp_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/ltp_sse.h -------------------------------------------------------------------------------- /speex/libspeex/mdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/mdf.c -------------------------------------------------------------------------------- /speex/libspeex/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/modes.c -------------------------------------------------------------------------------- /speex/libspeex/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/modes.h -------------------------------------------------------------------------------- /speex/libspeex/modes_wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/modes_wb.c -------------------------------------------------------------------------------- /speex/libspeex/nb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/nb_celp.c -------------------------------------------------------------------------------- /speex/libspeex/nb_celp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/nb_celp.h -------------------------------------------------------------------------------- /speex/libspeex/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/resample.c -------------------------------------------------------------------------------- /speex/libspeex/sb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/sb_celp.c -------------------------------------------------------------------------------- /speex/libspeex/sb_celp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/sb_celp.h -------------------------------------------------------------------------------- /speex/libspeex/scal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/scal.c -------------------------------------------------------------------------------- /speex/libspeex/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/smallft.c -------------------------------------------------------------------------------- /speex/libspeex/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/smallft.h -------------------------------------------------------------------------------- /speex/libspeex/speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/speex.c -------------------------------------------------------------------------------- /speex/libspeex/stereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/stereo.c -------------------------------------------------------------------------------- /speex/libspeex/testecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/testecho.c -------------------------------------------------------------------------------- /speex/libspeex/testenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/testenc.c -------------------------------------------------------------------------------- /speex/libspeex/vbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/vbr.c -------------------------------------------------------------------------------- /speex/libspeex/vbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/vbr.h -------------------------------------------------------------------------------- /speex/libspeex/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/vq.c -------------------------------------------------------------------------------- /speex/libspeex/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/vq.h -------------------------------------------------------------------------------- /speex/libspeex/vq_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/vq_arm4.h -------------------------------------------------------------------------------- /speex/libspeex/vq_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/vq_bfin.h -------------------------------------------------------------------------------- /speex/libspeex/vq_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/vq_sse.h -------------------------------------------------------------------------------- /speex/libspeex/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/speex/libspeex/window.c -------------------------------------------------------------------------------- /tSIP.bdsgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP.bdsgroup -------------------------------------------------------------------------------- /tSIP/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Action.cpp -------------------------------------------------------------------------------- /tSIP/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Action.h -------------------------------------------------------------------------------- /tSIP/AppStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/AppStatus.cpp -------------------------------------------------------------------------------- /tSIP/AppStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/AppStatus.h -------------------------------------------------------------------------------- /tSIP/AudioDevicesList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/AudioDevicesList.cpp -------------------------------------------------------------------------------- /tSIP/AudioDevicesList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/AudioDevicesList.h -------------------------------------------------------------------------------- /tSIP/Bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Bitmaps.cpp -------------------------------------------------------------------------------- /tSIP/Bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Bitmaps.h -------------------------------------------------------------------------------- /tSIP/Branding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Branding.cpp -------------------------------------------------------------------------------- /tSIP/Branding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Branding.h -------------------------------------------------------------------------------- /tSIP/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/CommandLine.cpp -------------------------------------------------------------------------------- /tSIP/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/CommandLine.h -------------------------------------------------------------------------------- /tSIP/CustomDateUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/CustomDateUtils.hpp -------------------------------------------------------------------------------- /tSIP/DialpadConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/DialpadConf.cpp -------------------------------------------------------------------------------- /tSIP/DialpadConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/DialpadConf.h -------------------------------------------------------------------------------- /tSIP/FixedSettings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tSIP/FormAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormAbout.cpp -------------------------------------------------------------------------------- /tSIP/FormAbout.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormAbout.dfm -------------------------------------------------------------------------------- /tSIP/FormAbout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormAbout.h -------------------------------------------------------------------------------- /tSIP/FormAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormAccount.cpp -------------------------------------------------------------------------------- /tSIP/FormAccount.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormAccount.dfm -------------------------------------------------------------------------------- /tSIP/FormAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormAccount.h -------------------------------------------------------------------------------- /tSIP/FormAccountCodecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormAccountCodecs.h -------------------------------------------------------------------------------- /tSIP/FormDialpadConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormDialpadConf.cpp -------------------------------------------------------------------------------- /tSIP/FormDialpadConf.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormDialpadConf.dfm -------------------------------------------------------------------------------- /tSIP/FormDialpadConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormDialpadConf.h -------------------------------------------------------------------------------- /tSIP/FormMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormMain.cpp -------------------------------------------------------------------------------- /tSIP/FormMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormMain.dfm -------------------------------------------------------------------------------- /tSIP/FormMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormMain.h -------------------------------------------------------------------------------- /tSIP/FormMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormMessage.cpp -------------------------------------------------------------------------------- /tSIP/FormMessage.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormMessage.dfm -------------------------------------------------------------------------------- /tSIP/FormMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormMessage.h -------------------------------------------------------------------------------- /tSIP/FormScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormScreen.cpp -------------------------------------------------------------------------------- /tSIP/FormScreen.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormScreen.dfm -------------------------------------------------------------------------------- /tSIP/FormScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormScreen.h -------------------------------------------------------------------------------- /tSIP/FormSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormSettings.cpp -------------------------------------------------------------------------------- /tSIP/FormSettings.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormSettings.dfm -------------------------------------------------------------------------------- /tSIP/FormSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormSettings.h -------------------------------------------------------------------------------- /tSIP/FormSettingsPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormSettingsPatch.h -------------------------------------------------------------------------------- /tSIP/FormTextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormTextEditor.cpp -------------------------------------------------------------------------------- /tSIP/FormTextEditor.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormTextEditor.dfm -------------------------------------------------------------------------------- /tSIP/FormTextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormTextEditor.h -------------------------------------------------------------------------------- /tSIP/FormTrayNotifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormTrayNotifier.cpp -------------------------------------------------------------------------------- /tSIP/FormTrayNotifier.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormTrayNotifier.dfm -------------------------------------------------------------------------------- /tSIP/FormTrayNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormTrayNotifier.h -------------------------------------------------------------------------------- /tSIP/FormVideoConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormVideoConf.cpp -------------------------------------------------------------------------------- /tSIP/FormVideoConf.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormVideoConf.dfm -------------------------------------------------------------------------------- /tSIP/FormVideoConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/FormVideoConf.h -------------------------------------------------------------------------------- /tSIP/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Globals.cpp -------------------------------------------------------------------------------- /tSIP/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Globals.h -------------------------------------------------------------------------------- /tSIP/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Log.cpp -------------------------------------------------------------------------------- /tSIP/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Log.h -------------------------------------------------------------------------------- /tSIP/LogUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/LogUnit.cpp -------------------------------------------------------------------------------- /tSIP/LogUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/LogUnit.dfm -------------------------------------------------------------------------------- /tSIP/LogUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/LogUnit.h -------------------------------------------------------------------------------- /tSIP/NetInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/NetInterfaces.cpp -------------------------------------------------------------------------------- /tSIP/NetInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/NetInterfaces.h -------------------------------------------------------------------------------- /tSIP/Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Paths.cpp -------------------------------------------------------------------------------- /tSIP/Paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Paths.h -------------------------------------------------------------------------------- /tSIP/PortaudioLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/PortaudioLock.cpp -------------------------------------------------------------------------------- /tSIP/PortaudioLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/PortaudioLock.h -------------------------------------------------------------------------------- /tSIP/SIMPLE_Messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/SIMPLE_Messages.cpp -------------------------------------------------------------------------------- /tSIP/SIMPLE_Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/SIMPLE_Messages.h -------------------------------------------------------------------------------- /tSIP/ScEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ScEdit.cpp -------------------------------------------------------------------------------- /tSIP/ScEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ScEdit.h -------------------------------------------------------------------------------- /tSIP/ScEditStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ScEditStyle.h -------------------------------------------------------------------------------- /tSIP/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Settings.cpp -------------------------------------------------------------------------------- /tSIP/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Settings.h -------------------------------------------------------------------------------- /tSIP/SettingsAppVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/SettingsAppVersion.h -------------------------------------------------------------------------------- /tSIP/Sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Sizes.h -------------------------------------------------------------------------------- /tSIP/SpeedDialStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/SpeedDialStatus.cpp -------------------------------------------------------------------------------- /tSIP/SpeedDialStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/SpeedDialStatus.h -------------------------------------------------------------------------------- /tSIP/Translate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Translate.cpp -------------------------------------------------------------------------------- /tSIP/Translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Translate.h -------------------------------------------------------------------------------- /tSIP/TrayNotifierConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/TrayNotifierConf.cpp -------------------------------------------------------------------------------- /tSIP/TrayNotifierConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/TrayNotifierConf.h -------------------------------------------------------------------------------- /tSIP/Troubleshooting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Troubleshooting.cpp -------------------------------------------------------------------------------- /tSIP/Troubleshooting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/Troubleshooting.h -------------------------------------------------------------------------------- /tSIP/VideoConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/VideoConf.cpp -------------------------------------------------------------------------------- /tSIP/VideoConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/VideoConf.h -------------------------------------------------------------------------------- /tSIP/VideoDevicesList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/VideoDevicesList.cpp -------------------------------------------------------------------------------- /tSIP/VideoDevicesList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/VideoDevicesList.h -------------------------------------------------------------------------------- /tSIP/_dist/busy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/busy.wav -------------------------------------------------------------------------------- /tSIP/_dist/certificates/README.txt: -------------------------------------------------------------------------------- 1 | Directory for CA PEM file and client certificate PEM. -------------------------------------------------------------------------------- /tSIP/_dist/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/error.wav -------------------------------------------------------------------------------- /tSIP/_dist/img/FoldIn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/img/FoldIn.bmp -------------------------------------------------------------------------------- /tSIP/_dist/img/MicOff.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/img/MicOff.bmp -------------------------------------------------------------------------------- /tSIP/_dist/img/OVCP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/img/OVCP.ico -------------------------------------------------------------------------------- /tSIP/_dist/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/img/README.txt -------------------------------------------------------------------------------- /tSIP/_dist/img/check.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/img/check.bmp -------------------------------------------------------------------------------- /tSIP/_dist/img/codec.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/img/codec.bmp -------------------------------------------------------------------------------- /tSIP/_dist/img/cross.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/img/cross.bmp -------------------------------------------------------------------------------- /tSIP/_dist/img/early.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/img/early.bmp -------------------------------------------------------------------------------- /tSIP/_dist/pluck.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/pluck.wav -------------------------------------------------------------------------------- /tSIP/_dist/ring.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_dist/ring.wav -------------------------------------------------------------------------------- /tSIP/_dist/scripts/README.txt: -------------------------------------------------------------------------------- 1 | Directory for Lua scripts. -------------------------------------------------------------------------------- /tSIP/_doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_doc/Doxyfile -------------------------------------------------------------------------------- /tSIP/_doc/changelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_doc/changelog.h -------------------------------------------------------------------------------- /tSIP/_doc/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_doc/doxygen.h -------------------------------------------------------------------------------- /tSIP/_doc/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_doc/licenses.txt -------------------------------------------------------------------------------- /tSIP/_doc/roadmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/_doc/roadmap.h -------------------------------------------------------------------------------- /tSIP/history/History.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/history/History.h -------------------------------------------------------------------------------- /tSIP/hotkeys/Hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/hotkeys/Hotkeys.h -------------------------------------------------------------------------------- /tSIP/phone/Phone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/phone/Phone.h -------------------------------------------------------------------------------- /tSIP/phone/PhoneConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/phone/PhoneConf.h -------------------------------------------------------------------------------- /tSIP/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/resource.h -------------------------------------------------------------------------------- /tSIP/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/resource.rc -------------------------------------------------------------------------------- /tSIP/tSIP.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/tSIP.bdsproj -------------------------------------------------------------------------------- /tSIP/tSIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/tSIP.cpp -------------------------------------------------------------------------------- /tSIP/tSIP.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/tSIP.res -------------------------------------------------------------------------------- /tSIP/ua/AudioModules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/AudioModules.h -------------------------------------------------------------------------------- /tSIP/ua/Call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/Call.cpp -------------------------------------------------------------------------------- /tSIP/ua/Call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/Call.h -------------------------------------------------------------------------------- /tSIP/ua/Callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/Callback.cpp -------------------------------------------------------------------------------- /tSIP/ua/Callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/Callback.h -------------------------------------------------------------------------------- /tSIP/ua/Calls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/Calls.cpp -------------------------------------------------------------------------------- /tSIP/ua/Calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/Calls.h -------------------------------------------------------------------------------- /tSIP/ua/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/Command.cpp -------------------------------------------------------------------------------- /tSIP/ua/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/Command.h -------------------------------------------------------------------------------- /tSIP/ua/ControlQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/ControlQueue.h -------------------------------------------------------------------------------- /tSIP/ua/Recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/Recorder.cpp -------------------------------------------------------------------------------- /tSIP/ua/Recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/Recorder.h -------------------------------------------------------------------------------- /tSIP/ua/UaConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/UaConf.cpp -------------------------------------------------------------------------------- /tSIP/ua/UaConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/UaConf.h -------------------------------------------------------------------------------- /tSIP/ua/UaGlobals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/UaGlobals.cpp -------------------------------------------------------------------------------- /tSIP/ua/UaGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/UaGlobals.h -------------------------------------------------------------------------------- /tSIP/ua/UaMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/UaMain.cpp -------------------------------------------------------------------------------- /tSIP/ua/UaMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/UaMain.h -------------------------------------------------------------------------------- /tSIP/ua/VideoModules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP/ua/VideoModules.h -------------------------------------------------------------------------------- /tSIP_baresip.bdsgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP_baresip.bdsgroup -------------------------------------------------------------------------------- /tSIP_common.bdsgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP_common.bdsgroup -------------------------------------------------------------------------------- /tSIP_exe.bdsgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/tSIP_exe.bdsgroup -------------------------------------------------------------------------------- /webrtc/webrtc_tc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/webrtc/webrtc_tc.cpp -------------------------------------------------------------------------------- /zrtpcpp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/AUTHORS -------------------------------------------------------------------------------- /zrtpcpp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/COPYING -------------------------------------------------------------------------------- /zrtpcpp/bnlib/bn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/bn.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/bn.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/bn00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/bn00.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/bn16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/bn16.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/bn16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/bn16.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/bn32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/bn32.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/bn32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/bn32.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/bn64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/bn64.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/bn64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/bn64.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/ec/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/ec/ec.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/ec/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/ec/ec.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/jacobi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/jacobi.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/jacobi.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/kludge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/kludge.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/lbn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/lbn.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/lbn00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/lbn00.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/lbn16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/lbn16.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/lbn16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/lbn16.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/lbn32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/lbn32.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/lbn32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/lbn32.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/lbn64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/lbn64.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/lbn64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/lbn64.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/lbnmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/lbnmem.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/lbnmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/lbnmem.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/legal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/legal.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/legal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/legal.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/prime.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/prime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/prime.h -------------------------------------------------------------------------------- /zrtpcpp/bnlib/sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/sieve.c -------------------------------------------------------------------------------- /zrtpcpp/bnlib/sieve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/bnlib/sieve.h -------------------------------------------------------------------------------- /zrtpcpp/zrtp/ZRtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomek-o/tSIP/HEAD/zrtpcpp/zrtp/ZRtp.cpp --------------------------------------------------------------------------------