├── H.263-1998 ├── Makefile ├── Makefile.linux ├── ReadMe.txt ├── dyna.cxx ├── ffmpeg_error_patch.txt ├── h263-1998.cxx ├── h263-1998.h ├── h263_2005.ncb ├── h263_2005.sln ├── h263_2005.vcproj ├── h263_2008.vcproj ├── h263pframe.cxx ├── h263pframe.h ├── mpi.cxx ├── opal │ ├── critsect.h │ ├── dyna.h │ ├── ffmpeg.h │ ├── mpi.h │ ├── opalplugin.h │ ├── plugin-config.h │ ├── rtpframe.h │ ├── trace.h │ └── vs-stdint.h ├── rfc2190.cxx ├── rfc2190.h ├── trace.cxx └── tracer.h ├── README.md ├── h323plus ├── MPL-1.1.html ├── Makefile ├── Makefile.in ├── OpenH323.mak ├── Openh323libce.vcb ├── Openh323libce.vcp ├── Openh323libce.vcw ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── configure.exe ├── h323plus.sln ├── h323plus.vcproj ├── h323plus_2005.sln ├── h323plus_2005.vcproj ├── h323plus_2008.sln ├── h323plus_2008.vcproj ├── include │ ├── channels.h │ ├── codec │ │ └── opalplugin.h │ ├── codecs.h │ ├── dynacodec.h │ ├── gccpdu.h │ ├── gkclient.h │ ├── gkserver.h │ ├── gnugknat.h │ ├── guid.h │ ├── h224.h │ ├── h224handler.h │ ├── h225.h │ ├── h225ras.h │ ├── h230 │ │ ├── OID2.h │ │ └── h230.h │ ├── h235.h │ ├── h235auth.h │ ├── h235plugin.h │ ├── h235pluginmgr.h │ ├── h245.h │ ├── h248.h │ ├── h281.h │ ├── h281handler.h │ ├── h323.h │ ├── h323annexg.h │ ├── h323caps.h │ ├── h323con.h │ ├── h323ep.h │ ├── h323filetransfer.h │ ├── h323h224.h │ ├── h323neg.h │ ├── h323pdu.h │ ├── h323pluginmgr.h │ ├── h323rtp.h │ ├── h323t120.h │ ├── h323t38.h │ ├── h323trans.h │ ├── h341 │ │ ├── h341.h │ │ └── h341_oid.h │ ├── h350 │ │ ├── h350.h │ │ └── h350_service.h │ ├── h450 │ │ ├── h4501.h │ │ ├── h45010.h │ │ ├── h45011.h │ │ ├── h4502.h │ │ ├── h4503.h │ │ ├── h4504.h │ │ ├── h4505.h │ │ ├── h4506.h │ │ ├── h4507.h │ │ ├── h4508.h │ │ ├── h4509.h │ │ └── h450pdu.h │ ├── h460 │ │ ├── h460.h │ │ ├── h4601.h │ │ ├── h46018.h │ │ ├── h46019.h │ │ ├── h4609.h │ │ ├── h460p.h │ │ ├── h460pres.h │ │ └── h460tm.h │ ├── h501.h │ ├── h501pdu.h │ ├── jitter.h │ ├── mcspdu.h │ ├── mediafmt.h │ ├── opalvxml.h │ ├── opalwavfile.h │ ├── openh323buildopts.h │ ├── openh323buildopts.h.in │ ├── peclient.h │ ├── q922.h │ ├── q931.h │ ├── rfc2833.h │ ├── rtp.h │ ├── rtp2wav.h │ ├── svcctrl.h │ ├── t120proto.h │ ├── t38.h │ ├── t38proto.h │ ├── transports.h │ ├── x224.h │ └── x880.h ├── install-sh ├── mpl-1.0.htm ├── openh323u.mak ├── openh323u.mak.in ├── plugins │ ├── Install.vdproj │ ├── Makefile │ ├── Makefile.in │ ├── audio │ │ ├── ECG722 │ │ │ ├── EasyG722 │ │ │ │ ├── EasyG722.h │ │ │ │ ├── EasyG722.pdf │ │ │ │ └── libG722.a │ │ │ ├── Makefile │ │ │ ├── ReadMe.txt │ │ │ ├── easycodecs.cxx │ │ │ ├── easycodecs.h │ │ │ ├── g722codec.h │ │ │ ├── g7231codec.h │ │ │ ├── g728codec.h │ │ │ └── g729Acodec.h │ │ ├── ECG7231 │ │ │ ├── EasyCodecs.dsw │ │ │ ├── EasyG722.dsp │ │ │ ├── EasyG7231.dsp │ │ │ ├── EasyG7231 │ │ │ │ ├── EasyG7231.h │ │ │ │ ├── EasyG7231.pdf │ │ │ │ └── libG7231.a │ │ │ ├── EasyG7231_2005.vcproj │ │ │ ├── EasyG7231_2008.vcproj │ │ │ ├── EasyG728.dsp │ │ │ ├── EasyG728_2005.vcproj │ │ │ ├── EasyG728_2008.vcproj │ │ │ ├── EasyG729A.dsp │ │ │ ├── EasyG729A_2005.sln │ │ │ ├── EasyG729A_2005.vcproj │ │ │ ├── EasyG729A_2005.vcproj.RUM.admin.user │ │ │ ├── EasyG729A_2008.vcproj │ │ │ ├── Makefile │ │ │ ├── ReadMe.txt │ │ │ ├── easycodecs.c │ │ │ ├── easycodecs.cxx │ │ │ ├── easycodecs.h │ │ │ ├── g722codec.h │ │ │ ├── g7231codec.h │ │ │ ├── g728codec.h │ │ │ └── g729Acodec.h │ │ ├── ECG728 │ │ │ ├── EasyG728 │ │ │ │ ├── EasyG728.h │ │ │ │ ├── EasyG728.pdf │ │ │ │ └── libG728.a │ │ │ ├── Makefile │ │ │ ├── ReadMe.txt │ │ │ ├── easycodecs.cxx │ │ │ ├── easycodecs.h │ │ │ ├── g722codec.h │ │ │ ├── g7231codec.h │ │ │ ├── g728codec.h │ │ │ └── g729Acodec.h │ │ ├── ECG729A │ │ │ ├── EasyG729A.dsp │ │ │ ├── EasyG729A.lib │ │ │ ├── EasyG729A │ │ │ │ ├── EasyG729A.h │ │ │ │ ├── EasyG729A.lib │ │ │ │ ├── EasyG729A.pdf │ │ │ │ └── libG729a.a │ │ │ ├── EasyG729A_2005.sln │ │ │ ├── EasyG729A_2005.vcproj │ │ │ ├── EasyG729A_2005.vcproj.RUM.admin.user │ │ │ ├── Makefile │ │ │ ├── ReadMe.txt │ │ │ ├── easycodecs.cxx │ │ │ ├── easycodecs.h │ │ │ ├── g722codec.h │ │ │ ├── g7231codec.h │ │ │ ├── g728codec.h │ │ │ └── g729Acodec.h │ │ ├── G.722.2 │ │ │ ├── AMR-WB │ │ │ │ ├── dec.h │ │ │ │ ├── dec_acelp.c │ │ │ │ ├── dec_acelp.h │ │ │ │ ├── dec_dtx.c │ │ │ │ ├── dec_dtx.h │ │ │ │ ├── dec_gain.c │ │ │ │ ├── dec_gain.h │ │ │ │ ├── dec_if.c │ │ │ │ ├── dec_if.h │ │ │ │ ├── dec_lpc.c │ │ │ │ ├── dec_lpc.h │ │ │ │ ├── dec_main.c │ │ │ │ ├── dec_main.h │ │ │ │ ├── dec_rom.c │ │ │ │ ├── dec_util.c │ │ │ │ ├── dec_util.h │ │ │ │ ├── enc.h │ │ │ │ ├── enc_acelp.c │ │ │ │ ├── enc_acelp.h │ │ │ │ ├── enc_dtx.c │ │ │ │ ├── enc_dtx.h │ │ │ │ ├── enc_gain.c │ │ │ │ ├── enc_gain.h │ │ │ │ ├── enc_if.c │ │ │ │ ├── enc_if.h │ │ │ │ ├── enc_lpc.c │ │ │ │ ├── enc_lpc.h │ │ │ │ ├── enc_main.c │ │ │ │ ├── enc_main.h │ │ │ │ ├── enc_rom.c │ │ │ │ ├── enc_util.c │ │ │ │ ├── enc_util.h │ │ │ │ ├── if_rom.c │ │ │ │ ├── if_rom.h │ │ │ │ └── typedef.h │ │ │ ├── G.722.2_2005.sln │ │ │ ├── G.722.2_2005.vcproj │ │ │ ├── G.722.2_2005.vcproj.RUM.admin.user │ │ │ ├── G.722.2_2008.vcproj │ │ │ ├── G7222Codec.cpp │ │ │ ├── Makefile.in │ │ │ └── opalplugin.h │ │ ├── G722.zip │ │ ├── G722 │ │ │ ├── Makefile.in │ │ │ ├── VoIPCodecs │ │ │ │ ├── bitstream.c │ │ │ │ ├── bitstream.h │ │ │ │ ├── dc_restore.h │ │ │ │ ├── g722.h │ │ │ │ ├── g722_decode.c │ │ │ │ ├── g722_encode.c │ │ │ │ ├── inttypes.h │ │ │ │ └── telephony.h │ │ │ ├── g722_2003.vcproj │ │ │ ├── g722_2005.sln │ │ │ ├── g722_2005.vcproj │ │ │ ├── g722_2005.vcproj.RUM.admin.user │ │ │ ├── g722_2008.vcproj │ │ │ ├── g722codec.cpp │ │ │ └── opal │ │ │ │ └── critsect.h │ │ ├── G7231ACM │ │ │ ├── README.txt │ │ │ ├── g7231acm.cxx │ │ │ ├── g7231acm.dsp │ │ │ └── g7231acm.vcproj │ │ ├── G726 │ │ │ ├── .cvsignore │ │ │ ├── G726.dsp │ │ │ ├── G726.vcproj │ │ │ ├── G726_2005.vcproj │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── g711.c │ │ │ ├── g726 │ │ │ │ ├── g726_16.c │ │ │ │ ├── g726_24.c │ │ │ │ ├── g726_32.c │ │ │ │ ├── g726_40.c │ │ │ │ ├── g72x.c │ │ │ │ ├── g72x.h │ │ │ │ └── private.h │ │ │ └── g726codec.c │ │ ├── GSM0610 │ │ │ ├── .cvsignore │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── PART_OF_TOAST │ │ │ ├── README │ │ │ ├── gsm0610.dsp │ │ │ ├── gsm0610.vcproj │ │ │ ├── gsm0610_2005.vcproj │ │ │ ├── gsm06_10_codec.c │ │ │ ├── inc │ │ │ │ ├── config.h │ │ │ │ ├── gsm.h │ │ │ │ ├── private.h │ │ │ │ ├── proto.h │ │ │ │ └── unproto.h │ │ │ └── src │ │ │ │ ├── add.c │ │ │ │ ├── code.c │ │ │ │ ├── decode.c │ │ │ │ ├── gsm_create.c │ │ │ │ ├── gsm_decode.c │ │ │ │ ├── gsm_destroy.c │ │ │ │ ├── gsm_encode.c │ │ │ │ ├── gsm_lpc.c │ │ │ │ ├── gsm_option.c │ │ │ │ ├── long_term.c │ │ │ │ ├── preprocess.c │ │ │ │ ├── rpe.c │ │ │ │ ├── short_term.c │ │ │ │ └── table.c │ │ ├── IMA_ADPCM │ │ │ ├── .cvsignore │ │ │ ├── IMA_ADPCM.dsp │ │ │ ├── IMA_ADPCM.vcproj │ │ │ ├── IMA_ADPCM_2005.vcproj │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── ima_adpcm.c │ │ ├── LPC_10 │ │ │ ├── .cvsignore │ │ │ ├── LPC_10.dsp │ │ │ ├── LPC_10.vcproj │ │ │ ├── LPC_10_2005.vcproj │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── lpc10.h │ │ │ ├── lpc_10_codec.c │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── analys.c │ │ │ │ ├── bsynz.c │ │ │ │ ├── chanwr.c │ │ │ │ ├── dcbias.c │ │ │ │ ├── decode_.c │ │ │ │ ├── deemp.c │ │ │ │ ├── difmag.c │ │ │ │ ├── dyptrk.c │ │ │ │ ├── encode_.c │ │ │ │ ├── energy.c │ │ │ │ ├── f2c.h │ │ │ │ ├── f2clib.c │ │ │ │ ├── ham84.c │ │ │ │ ├── hp100.c │ │ │ │ ├── invert.c │ │ │ │ ├── irc2pc.c │ │ │ │ ├── ivfilt.c │ │ │ │ ├── lpcdec.c │ │ │ │ ├── lpcenc.c │ │ │ │ ├── lpcini.c │ │ │ │ ├── lpfilt.c │ │ │ │ ├── makefile.dos │ │ │ │ ├── makefile.unx │ │ │ │ ├── median.c │ │ │ │ ├── mload.c │ │ │ │ ├── onset.c │ │ │ │ ├── pitsyn.c │ │ │ │ ├── placea.c │ │ │ │ ├── placev.c │ │ │ │ ├── preemp.c │ │ │ │ ├── prepro.c │ │ │ │ ├── random.c │ │ │ │ ├── rcchk.c │ │ │ │ ├── synths.c │ │ │ │ ├── tbdm.c │ │ │ │ ├── voicin.c │ │ │ │ └── vparms.c │ │ ├── SILK │ │ │ ├── Makefile │ │ │ ├── opal │ │ │ │ └── critsect.h │ │ │ ├── silkSrc.103 │ │ │ │ ├── SKP_Silk_A2NLSF.c │ │ │ │ ├── SKP_Silk_CNG.c │ │ │ │ ├── SKP_Silk_FIX_Win32_debug.lib │ │ │ │ ├── SKP_Silk_FIX_Win32_mt.lib │ │ │ │ ├── SKP_Silk_HP_variable_cutoff_FIX.c │ │ │ │ ├── SKP_Silk_Inlines.h │ │ │ │ ├── SKP_Silk_LBRR_reset.c │ │ │ │ ├── SKP_Silk_LPC_inv_pred_gain.c │ │ │ │ ├── SKP_Silk_LPC_stabilize.c │ │ │ │ ├── SKP_Silk_LPC_synthesis_filter.c │ │ │ │ ├── SKP_Silk_LPC_synthesis_order16.c │ │ │ │ ├── SKP_Silk_LP_variable_cutoff.c │ │ │ │ ├── SKP_Silk_LSF_cos_table.c │ │ │ │ ├── SKP_Silk_LTP_analysis_filter_FIX.c │ │ │ │ ├── SKP_Silk_LTP_scale_ctrl_FIX.c │ │ │ │ ├── SKP_Silk_MA.c │ │ │ │ ├── SKP_Silk_NLSF2A.c │ │ │ │ ├── SKP_Silk_NLSF2A_stable.c │ │ │ │ ├── SKP_Silk_NLSF_MSVQ_decode.c │ │ │ │ ├── SKP_Silk_NLSF_MSVQ_encode_FIX.c │ │ │ │ ├── SKP_Silk_NLSF_VQ_rate_distortion_FIX.c │ │ │ │ ├── SKP_Silk_NLSF_VQ_sum_error_FIX.c │ │ │ │ ├── SKP_Silk_NLSF_VQ_weights_laroia.c │ │ │ │ ├── SKP_Silk_NLSF_stabilize.c │ │ │ │ ├── SKP_Silk_NSQ.c │ │ │ │ ├── SKP_Silk_NSQ_del_dec.c │ │ │ │ ├── SKP_Silk_PLC.c │ │ │ │ ├── SKP_Silk_PLC.h │ │ │ │ ├── SKP_Silk_SDK_API.h │ │ │ │ ├── SKP_Silk_SigProc_FIX.h │ │ │ │ ├── SKP_Silk_VAD.c │ │ │ │ ├── SKP_Silk_VQ_nearest_neighbor_FIX.c │ │ │ │ ├── SKP_Silk_allpass_int.c │ │ │ │ ├── SKP_Silk_ana_filt_bank_1.c │ │ │ │ ├── SKP_Silk_apply_sine_window.c │ │ │ │ ├── SKP_Silk_array_maxabs.c │ │ │ │ ├── SKP_Silk_autocorr.c │ │ │ │ ├── SKP_Silk_biquad.c │ │ │ │ ├── SKP_Silk_biquad_alt.c │ │ │ │ ├── SKP_Silk_burg_modified.c │ │ │ │ ├── SKP_Silk_bwexpander.c │ │ │ │ ├── SKP_Silk_bwexpander_32.c │ │ │ │ ├── SKP_Silk_code_signs.c │ │ │ │ ├── SKP_Silk_common_pitch_est_defines.h │ │ │ │ ├── SKP_Silk_control.h │ │ │ │ ├── SKP_Silk_control_codec_FIX.c │ │ │ │ ├── SKP_Silk_corrMatrix_FIX.c │ │ │ │ ├── SKP_Silk_create_init_destroy.c │ │ │ │ ├── SKP_Silk_dec_API.c │ │ │ │ ├── SKP_Silk_decode_core.c │ │ │ │ ├── SKP_Silk_decode_frame.c │ │ │ │ ├── SKP_Silk_decode_indices_v4.c │ │ │ │ ├── SKP_Silk_decode_parameters.c │ │ │ │ ├── SKP_Silk_decode_parameters_v4.c │ │ │ │ ├── SKP_Silk_decode_pulses.c │ │ │ │ ├── SKP_Silk_decoder_set_fs.c │ │ │ │ ├── SKP_Silk_define.h │ │ │ │ ├── SKP_Silk_define_FIX.h │ │ │ │ ├── SKP_Silk_detect_SWB_input.c │ │ │ │ ├── SKP_Silk_enc_API.c │ │ │ │ ├── SKP_Silk_encode_frame_FIX.c │ │ │ │ ├── SKP_Silk_encode_parameters.c │ │ │ │ ├── SKP_Silk_encode_parameters_v4.c │ │ │ │ ├── SKP_Silk_encode_pulses.c │ │ │ │ ├── SKP_Silk_errors.h │ │ │ │ ├── SKP_Silk_find_LPC_FIX.c │ │ │ │ ├── SKP_Silk_find_LTP_FIX.c │ │ │ │ ├── SKP_Silk_find_pitch_lags_FIX.c │ │ │ │ ├── SKP_Silk_find_pred_coefs_FIX.c │ │ │ │ ├── SKP_Silk_gain_quant.c │ │ │ │ ├── SKP_Silk_init_encoder_FIX.c │ │ │ │ ├── SKP_Silk_inner_prod_aligned.c │ │ │ │ ├── SKP_Silk_interpolate.c │ │ │ │ ├── SKP_Silk_k2a.c │ │ │ │ ├── SKP_Silk_k2a_Q16.c │ │ │ │ ├── SKP_Silk_lin2log.c │ │ │ │ ├── SKP_Silk_log2lin.c │ │ │ │ ├── SKP_Silk_lowpass_int.c │ │ │ │ ├── SKP_Silk_lowpass_short.c │ │ │ │ ├── SKP_Silk_macros.h │ │ │ │ ├── SKP_Silk_main.h │ │ │ │ ├── SKP_Silk_main_FIX.h │ │ │ │ ├── SKP_Silk_noise_shape_analysis_FIX.c │ │ │ │ ├── SKP_Silk_perceptual_parameters_FIX.h │ │ │ │ ├── SKP_Silk_pitch_analysis_core.c │ │ │ │ ├── SKP_Silk_pitch_est_defines.h │ │ │ │ ├── SKP_Silk_pitch_est_tables.c │ │ │ │ ├── SKP_Silk_prefilter_FIX.c │ │ │ │ ├── SKP_Silk_process_NLSFs_FIX.c │ │ │ │ ├── SKP_Silk_process_gains_FIX.c │ │ │ │ ├── SKP_Silk_pulses_to_bytes.c │ │ │ │ ├── SKP_Silk_quant_LTP_gains_FIX.c │ │ │ │ ├── SKP_Silk_range_coder.c │ │ │ │ ├── SKP_Silk_regularize_correlations_FIX.c │ │ │ │ ├── SKP_Silk_resample_1_2.c │ │ │ │ ├── SKP_Silk_resample_1_2_coarse.c │ │ │ │ ├── SKP_Silk_resample_1_2_coarsest.c │ │ │ │ ├── SKP_Silk_resample_1_3.c │ │ │ │ ├── SKP_Silk_resample_2_1_coarse.c │ │ │ │ ├── SKP_Silk_resample_2_3.c │ │ │ │ ├── SKP_Silk_resample_2_3_coarse.c │ │ │ │ ├── SKP_Silk_resample_2_3_coarsest.c │ │ │ │ ├── SKP_Silk_resample_2_3_rom.c │ │ │ │ ├── SKP_Silk_resample_3_1.c │ │ │ │ ├── SKP_Silk_resample_3_2.c │ │ │ │ ├── SKP_Silk_resample_3_2_rom.c │ │ │ │ ├── SKP_Silk_resample_3_4.c │ │ │ │ ├── SKP_Silk_resample_4_3.c │ │ │ │ ├── SKP_Silk_resample_rom.h │ │ │ │ ├── SKP_Silk_residual_energy16_FIX.c │ │ │ │ ├── SKP_Silk_residual_energy_FIX.c │ │ │ │ ├── SKP_Silk_scale_copy_vector16.c │ │ │ │ ├── SKP_Silk_scale_vector.c │ │ │ │ ├── SKP_Silk_schur.c │ │ │ │ ├── SKP_Silk_schur64.c │ │ │ │ ├── SKP_Silk_shell_coder.c │ │ │ │ ├── SKP_Silk_sigm_Q15.c │ │ │ │ ├── SKP_Silk_solve_LS_FIX.c │ │ │ │ ├── SKP_Silk_sort.c │ │ │ │ ├── SKP_Silk_structs.h │ │ │ │ ├── SKP_Silk_structs_FIX.h │ │ │ │ ├── SKP_Silk_sum_sqr_shift.c │ │ │ │ ├── SKP_Silk_tables.h │ │ │ │ ├── SKP_Silk_tables_LTP.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_10.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_10.h │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_16.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_16.h │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_10.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_10.h │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_16.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_16.h │ │ │ │ ├── SKP_Silk_tables_gain.c │ │ │ │ ├── SKP_Silk_tables_other.c │ │ │ │ ├── SKP_Silk_tables_pitch_lag.c │ │ │ │ ├── SKP_Silk_tables_pulses_per_block.c │ │ │ │ ├── SKP_Silk_tables_sign.c │ │ │ │ ├── SKP_Silk_tables_type_offset.c │ │ │ │ └── SKP_Silk_typedef.h │ │ │ ├── silkSrc │ │ │ │ ├── SKP_Silk_A2NLSF.c │ │ │ │ ├── SKP_Silk_CNG.c │ │ │ │ ├── SKP_Silk_HP_variable_cutoff_FIX.c │ │ │ │ ├── SKP_Silk_Inlines.h │ │ │ │ ├── SKP_Silk_LBRR_reset.c │ │ │ │ ├── SKP_Silk_LPC_inv_pred_gain.c │ │ │ │ ├── SKP_Silk_LPC_synthesis_filter.c │ │ │ │ ├── SKP_Silk_LPC_synthesis_order16.c │ │ │ │ ├── SKP_Silk_LP_variable_cutoff.c │ │ │ │ ├── SKP_Silk_LSF_cos_table.c │ │ │ │ ├── SKP_Silk_LTP_analysis_filter_FIX.c │ │ │ │ ├── SKP_Silk_LTP_scale_ctrl_FIX.c │ │ │ │ ├── SKP_Silk_MA.c │ │ │ │ ├── SKP_Silk_NLSF2A.c │ │ │ │ ├── SKP_Silk_NLSF2A_stable.c │ │ │ │ ├── SKP_Silk_NLSF_MSVQ_decode.c │ │ │ │ ├── SKP_Silk_NLSF_MSVQ_encode_FIX.c │ │ │ │ ├── SKP_Silk_NLSF_VQ_rate_distortion_FIX.c │ │ │ │ ├── SKP_Silk_NLSF_VQ_sum_error_FIX.c │ │ │ │ ├── SKP_Silk_NLSF_VQ_weights_laroia.c │ │ │ │ ├── SKP_Silk_NLSF_stabilize.c │ │ │ │ ├── SKP_Silk_NSQ.c │ │ │ │ ├── SKP_Silk_NSQ_del_dec.c │ │ │ │ ├── SKP_Silk_PLC.c │ │ │ │ ├── SKP_Silk_PLC.h │ │ │ │ ├── SKP_Silk_SDK_API.h │ │ │ │ ├── SKP_Silk_SigProc_FIX.h │ │ │ │ ├── SKP_Silk_VAD.c │ │ │ │ ├── SKP_Silk_VQ_nearest_neighbor_FIX.c │ │ │ │ ├── SKP_Silk_ana_filt_bank_1.c │ │ │ │ ├── SKP_Silk_apply_sine_window_new.c │ │ │ │ ├── SKP_Silk_array_maxabs.c │ │ │ │ ├── SKP_Silk_autocorr.c │ │ │ │ ├── SKP_Silk_biquad.c │ │ │ │ ├── SKP_Silk_biquad_alt.c │ │ │ │ ├── SKP_Silk_burg_modified.c │ │ │ │ ├── SKP_Silk_bwexpander.c │ │ │ │ ├── SKP_Silk_bwexpander_32.c │ │ │ │ ├── SKP_Silk_code_signs.c │ │ │ │ ├── SKP_Silk_common_pitch_est_defines.h │ │ │ │ ├── SKP_Silk_control.h │ │ │ │ ├── SKP_Silk_control_audio_bandwidth.c │ │ │ │ ├── SKP_Silk_control_codec_FIX.c │ │ │ │ ├── SKP_Silk_corrMatrix_FIX.c │ │ │ │ ├── SKP_Silk_create_init_destroy.c │ │ │ │ ├── SKP_Silk_dec_API.c │ │ │ │ ├── SKP_Silk_decode_core.c │ │ │ │ ├── SKP_Silk_decode_frame.c │ │ │ │ ├── SKP_Silk_decode_parameters.c │ │ │ │ ├── SKP_Silk_decode_pitch.c │ │ │ │ ├── SKP_Silk_decode_pulses.c │ │ │ │ ├── SKP_Silk_decoder_set_fs.c │ │ │ │ ├── SKP_Silk_define.h │ │ │ │ ├── SKP_Silk_detect_SWB_input.c │ │ │ │ ├── SKP_Silk_enc_API.c │ │ │ │ ├── SKP_Silk_encode_frame_FIX.c │ │ │ │ ├── SKP_Silk_encode_parameters.c │ │ │ │ ├── SKP_Silk_encode_pulses.c │ │ │ │ ├── SKP_Silk_errors.h │ │ │ │ ├── SKP_Silk_find_LPC_FIX.c │ │ │ │ ├── SKP_Silk_find_LTP_FIX.c │ │ │ │ ├── SKP_Silk_find_pitch_lags_FIX.c │ │ │ │ ├── SKP_Silk_find_pred_coefs_FIX.c │ │ │ │ ├── SKP_Silk_gain_quant.c │ │ │ │ ├── SKP_Silk_init_encoder_FIX.c │ │ │ │ ├── SKP_Silk_inner_prod_aligned.c │ │ │ │ ├── SKP_Silk_interpolate.c │ │ │ │ ├── SKP_Silk_k2a.c │ │ │ │ ├── SKP_Silk_k2a_Q16.c │ │ │ │ ├── SKP_Silk_lin2log.c │ │ │ │ ├── SKP_Silk_log2lin.c │ │ │ │ ├── SKP_Silk_macros.h │ │ │ │ ├── SKP_Silk_main.h │ │ │ │ ├── SKP_Silk_main_FIX.h │ │ │ │ ├── SKP_Silk_noise_shape_analysis_FIX.c │ │ │ │ ├── SKP_Silk_pitch_analysis_core.c │ │ │ │ ├── SKP_Silk_pitch_est_defines.h │ │ │ │ ├── SKP_Silk_pitch_est_tables.c │ │ │ │ ├── SKP_Silk_prefilter_FIX.c │ │ │ │ ├── SKP_Silk_process_NLSFs_FIX.c │ │ │ │ ├── SKP_Silk_process_gains_FIX.c │ │ │ │ ├── SKP_Silk_quant_LTP_gains_FIX.c │ │ │ │ ├── SKP_Silk_range_coder.c │ │ │ │ ├── SKP_Silk_regularize_correlations_FIX.c │ │ │ │ ├── SKP_Silk_resampler.c │ │ │ │ ├── SKP_Silk_resampler_down2.c │ │ │ │ ├── SKP_Silk_resampler_down2_3.c │ │ │ │ ├── SKP_Silk_resampler_down3.c │ │ │ │ ├── SKP_Silk_resampler_private.h │ │ │ │ ├── SKP_Silk_resampler_private_AR2.c │ │ │ │ ├── SKP_Silk_resampler_private_ARMA4.c │ │ │ │ ├── SKP_Silk_resampler_private_IIR_FIR.c │ │ │ │ ├── SKP_Silk_resampler_private_copy.c │ │ │ │ ├── SKP_Silk_resampler_private_down4.c │ │ │ │ ├── SKP_Silk_resampler_private_down_FIR.c │ │ │ │ ├── SKP_Silk_resampler_private_up2_HQ.c │ │ │ │ ├── SKP_Silk_resampler_private_up4.c │ │ │ │ ├── SKP_Silk_resampler_rom.c │ │ │ │ ├── SKP_Silk_resampler_rom.h │ │ │ │ ├── SKP_Silk_resampler_structs.h │ │ │ │ ├── SKP_Silk_resampler_up2.c │ │ │ │ ├── SKP_Silk_residual_energy16_FIX.c │ │ │ │ ├── SKP_Silk_residual_energy_FIX.c │ │ │ │ ├── SKP_Silk_scale_copy_vector16.c │ │ │ │ ├── SKP_Silk_scale_vector.c │ │ │ │ ├── SKP_Silk_schur.c │ │ │ │ ├── SKP_Silk_schur64.c │ │ │ │ ├── SKP_Silk_setup_complexity.h │ │ │ │ ├── SKP_Silk_shell_coder.c │ │ │ │ ├── SKP_Silk_sigm_Q15.c │ │ │ │ ├── SKP_Silk_solve_LS_FIX.c │ │ │ │ ├── SKP_Silk_sort.c │ │ │ │ ├── SKP_Silk_structs.h │ │ │ │ ├── SKP_Silk_structs_FIX.h │ │ │ │ ├── SKP_Silk_sum_sqr_shift.c │ │ │ │ ├── SKP_Silk_tables.h │ │ │ │ ├── SKP_Silk_tables_LTP.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_10.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_10.h │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_16.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_16.h │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_10.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_10.h │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_16.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_16.h │ │ │ │ ├── SKP_Silk_tables_gain.c │ │ │ │ ├── SKP_Silk_tables_other.c │ │ │ │ ├── SKP_Silk_tables_pitch_lag.c │ │ │ │ ├── SKP_Silk_tables_pulses_per_block.c │ │ │ │ ├── SKP_Silk_tables_sign.c │ │ │ │ ├── SKP_Silk_tables_type_offset.c │ │ │ │ ├── SKP_Silk_tuning_parameters.h │ │ │ │ ├── SKP_Silk_typedef.h │ │ │ │ └── SKP_Silk_warped_autocorrelation_FIX.c │ │ │ ├── silk_2005.sln │ │ │ ├── silk_2005.vcproj │ │ │ ├── silk_2008.vcproj │ │ │ ├── silkcodec.bak │ │ │ ├── silkcodec.bak1 │ │ │ └── silkcodec.cpp │ │ ├── SILK103 │ │ │ ├── Makefile │ │ │ ├── opal │ │ │ │ └── critsect.h │ │ │ ├── silkSrc │ │ │ │ ├── SKP_Silk_A2NLSF.c │ │ │ │ ├── SKP_Silk_CNG.c │ │ │ │ ├── SKP_Silk_FIX_Win32_debug.lib │ │ │ │ ├── SKP_Silk_FIX_Win32_mt.lib │ │ │ │ ├── SKP_Silk_HP_variable_cutoff_FIX.c │ │ │ │ ├── SKP_Silk_Inlines.h │ │ │ │ ├── SKP_Silk_LBRR_reset.c │ │ │ │ ├── SKP_Silk_LPC_inv_pred_gain.c │ │ │ │ ├── SKP_Silk_LPC_stabilize.c │ │ │ │ ├── SKP_Silk_LPC_synthesis_filter.c │ │ │ │ ├── SKP_Silk_LPC_synthesis_order16.c │ │ │ │ ├── SKP_Silk_LP_variable_cutoff.c │ │ │ │ ├── SKP_Silk_LSF_cos_table.c │ │ │ │ ├── SKP_Silk_LTP_analysis_filter_FIX.c │ │ │ │ ├── SKP_Silk_LTP_scale_ctrl_FIX.c │ │ │ │ ├── SKP_Silk_MA.c │ │ │ │ ├── SKP_Silk_NLSF2A.c │ │ │ │ ├── SKP_Silk_NLSF2A_stable.c │ │ │ │ ├── SKP_Silk_NLSF_MSVQ_decode.c │ │ │ │ ├── SKP_Silk_NLSF_MSVQ_encode_FIX.c │ │ │ │ ├── SKP_Silk_NLSF_VQ_rate_distortion_FIX.c │ │ │ │ ├── SKP_Silk_NLSF_VQ_sum_error_FIX.c │ │ │ │ ├── SKP_Silk_NLSF_VQ_weights_laroia.c │ │ │ │ ├── SKP_Silk_NLSF_stabilize.c │ │ │ │ ├── SKP_Silk_NSQ.c │ │ │ │ ├── SKP_Silk_NSQ_del_dec.c │ │ │ │ ├── SKP_Silk_PLC.c │ │ │ │ ├── SKP_Silk_PLC.h │ │ │ │ ├── SKP_Silk_SDK_API.h │ │ │ │ ├── SKP_Silk_SigProc_FIX.h │ │ │ │ ├── SKP_Silk_VAD.c │ │ │ │ ├── SKP_Silk_VQ_nearest_neighbor_FIX.c │ │ │ │ ├── SKP_Silk_allpass_int.c │ │ │ │ ├── SKP_Silk_ana_filt_bank_1.c │ │ │ │ ├── SKP_Silk_apply_sine_window.c │ │ │ │ ├── SKP_Silk_array_maxabs.c │ │ │ │ ├── SKP_Silk_autocorr.c │ │ │ │ ├── SKP_Silk_biquad.c │ │ │ │ ├── SKP_Silk_biquad_alt.c │ │ │ │ ├── SKP_Silk_burg_modified.c │ │ │ │ ├── SKP_Silk_bwexpander.c │ │ │ │ ├── SKP_Silk_bwexpander_32.c │ │ │ │ ├── SKP_Silk_code_signs.c │ │ │ │ ├── SKP_Silk_common_pitch_est_defines.h │ │ │ │ ├── SKP_Silk_control.h │ │ │ │ ├── SKP_Silk_control_codec_FIX.c │ │ │ │ ├── SKP_Silk_corrMatrix_FIX.c │ │ │ │ ├── SKP_Silk_create_init_destroy.c │ │ │ │ ├── SKP_Silk_dec_API.c │ │ │ │ ├── SKP_Silk_decode_core.c │ │ │ │ ├── SKP_Silk_decode_frame.c │ │ │ │ ├── SKP_Silk_decode_indices_v4.c │ │ │ │ ├── SKP_Silk_decode_parameters.c │ │ │ │ ├── SKP_Silk_decode_parameters_v4.c │ │ │ │ ├── SKP_Silk_decode_pulses.c │ │ │ │ ├── SKP_Silk_decoder_set_fs.c │ │ │ │ ├── SKP_Silk_define.h │ │ │ │ ├── SKP_Silk_define_FIX.h │ │ │ │ ├── SKP_Silk_detect_SWB_input.c │ │ │ │ ├── SKP_Silk_enc_API.c │ │ │ │ ├── SKP_Silk_encode_frame_FIX.c │ │ │ │ ├── SKP_Silk_encode_parameters.c │ │ │ │ ├── SKP_Silk_encode_parameters_v4.c │ │ │ │ ├── SKP_Silk_encode_pulses.c │ │ │ │ ├── SKP_Silk_errors.h │ │ │ │ ├── SKP_Silk_find_LPC_FIX.c │ │ │ │ ├── SKP_Silk_find_LTP_FIX.c │ │ │ │ ├── SKP_Silk_find_pitch_lags_FIX.c │ │ │ │ ├── SKP_Silk_find_pred_coefs_FIX.c │ │ │ │ ├── SKP_Silk_gain_quant.c │ │ │ │ ├── SKP_Silk_init_encoder_FIX.c │ │ │ │ ├── SKP_Silk_inner_prod_aligned.c │ │ │ │ ├── SKP_Silk_interpolate.c │ │ │ │ ├── SKP_Silk_k2a.c │ │ │ │ ├── SKP_Silk_k2a_Q16.c │ │ │ │ ├── SKP_Silk_lin2log.c │ │ │ │ ├── SKP_Silk_log2lin.c │ │ │ │ ├── SKP_Silk_lowpass_int.c │ │ │ │ ├── SKP_Silk_lowpass_short.c │ │ │ │ ├── SKP_Silk_macros.h │ │ │ │ ├── SKP_Silk_main.h │ │ │ │ ├── SKP_Silk_main_FIX.h │ │ │ │ ├── SKP_Silk_noise_shape_analysis_FIX.c │ │ │ │ ├── SKP_Silk_perceptual_parameters_FIX.h │ │ │ │ ├── SKP_Silk_pitch_analysis_core.c │ │ │ │ ├── SKP_Silk_pitch_est_defines.h │ │ │ │ ├── SKP_Silk_pitch_est_tables.c │ │ │ │ ├── SKP_Silk_prefilter_FIX.c │ │ │ │ ├── SKP_Silk_process_NLSFs_FIX.c │ │ │ │ ├── SKP_Silk_process_gains_FIX.c │ │ │ │ ├── SKP_Silk_pulses_to_bytes.c │ │ │ │ ├── SKP_Silk_quant_LTP_gains_FIX.c │ │ │ │ ├── SKP_Silk_range_coder.c │ │ │ │ ├── SKP_Silk_regularize_correlations_FIX.c │ │ │ │ ├── SKP_Silk_resample_1_2.c │ │ │ │ ├── SKP_Silk_resample_1_2_coarse.c │ │ │ │ ├── SKP_Silk_resample_1_2_coarsest.c │ │ │ │ ├── SKP_Silk_resample_1_3.c │ │ │ │ ├── SKP_Silk_resample_2_1_coarse.c │ │ │ │ ├── SKP_Silk_resample_2_3.c │ │ │ │ ├── SKP_Silk_resample_2_3_coarse.c │ │ │ │ ├── SKP_Silk_resample_2_3_coarsest.c │ │ │ │ ├── SKP_Silk_resample_2_3_rom.c │ │ │ │ ├── SKP_Silk_resample_3_1.c │ │ │ │ ├── SKP_Silk_resample_3_2.c │ │ │ │ ├── SKP_Silk_resample_3_2_rom.c │ │ │ │ ├── SKP_Silk_resample_3_4.c │ │ │ │ ├── SKP_Silk_resample_4_3.c │ │ │ │ ├── SKP_Silk_resample_rom.h │ │ │ │ ├── SKP_Silk_residual_energy16_FIX.c │ │ │ │ ├── SKP_Silk_residual_energy_FIX.c │ │ │ │ ├── SKP_Silk_scale_copy_vector16.c │ │ │ │ ├── SKP_Silk_scale_vector.c │ │ │ │ ├── SKP_Silk_schur.c │ │ │ │ ├── SKP_Silk_schur64.c │ │ │ │ ├── SKP_Silk_shell_coder.c │ │ │ │ ├── SKP_Silk_sigm_Q15.c │ │ │ │ ├── SKP_Silk_solve_LS_FIX.c │ │ │ │ ├── SKP_Silk_sort.c │ │ │ │ ├── SKP_Silk_structs.h │ │ │ │ ├── SKP_Silk_structs_FIX.h │ │ │ │ ├── SKP_Silk_sum_sqr_shift.c │ │ │ │ ├── SKP_Silk_tables.h │ │ │ │ ├── SKP_Silk_tables_LTP.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_10.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_10.h │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_16.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB0_16.h │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_10.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_10.h │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_16.c │ │ │ │ ├── SKP_Silk_tables_NLSF_CB1_16.h │ │ │ │ ├── SKP_Silk_tables_gain.c │ │ │ │ ├── SKP_Silk_tables_other.c │ │ │ │ ├── SKP_Silk_tables_pitch_lag.c │ │ │ │ ├── SKP_Silk_tables_pulses_per_block.c │ │ │ │ ├── SKP_Silk_tables_sign.c │ │ │ │ ├── SKP_Silk_tables_type_offset.c │ │ │ │ └── SKP_Silk_typedef.h │ │ │ ├── silk_2005.sln │ │ │ ├── silk_2005.vcproj │ │ │ ├── silk_2005.vcproj.RUM.admin.user │ │ │ ├── silk_2008.vcproj │ │ │ ├── silkcodec.bak │ │ │ ├── silkcodec.bak1 │ │ │ └── silkcodec.cpp │ │ ├── Speex │ │ │ ├── .cvsignore │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── PART_OF_SPEEX │ │ │ ├── README │ │ │ ├── Speex.dsp │ │ │ ├── Speex.vcproj │ │ │ ├── Speex_2005.vcproj │ │ │ ├── libspeex │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _kiss_fft_guts.h │ │ │ │ ├── arch.h │ │ │ │ ├── bits.c │ │ │ │ ├── cb_search.c │ │ │ │ ├── cb_search.h │ │ │ │ ├── cb_search_arm4.h │ │ │ │ ├── cb_search_bfin.h │ │ │ │ ├── cb_search_sse.h │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── lbr_48k_tables.c │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── lpc_bfin.h │ │ │ │ ├── lsp.c │ │ │ │ ├── lsp.h │ │ │ │ ├── lsp_tables_nb.c │ │ │ │ ├── ltp.c │ │ │ │ ├── ltp.h │ │ │ │ ├── ltp_arm4.h │ │ │ │ ├── ltp_bfin.h │ │ │ │ ├── ltp_sse.h │ │ │ │ ├── math_approx.c │ │ │ │ ├── math_approx.h │ │ │ │ ├── mdf.c │ │ │ │ ├── medfilter.c │ │ │ │ ├── medfilter.h │ │ │ │ ├── misc.c │ │ │ │ ├── misc.h │ │ │ │ ├── misc_bfin.h │ │ │ │ ├── modes.c │ │ │ │ ├── modes.h │ │ │ │ ├── modes_noglobals.c │ │ │ │ ├── nb_celp.c │ │ │ │ ├── nb_celp.h │ │ │ │ ├── pcm_wrapper.c │ │ │ │ ├── pcm_wrapper.h │ │ │ │ ├── pseudofloat.h │ │ │ │ ├── quant_lsp.c │ │ │ │ ├── quant_lsp.h │ │ │ │ ├── sb_celp.c │ │ │ │ ├── sb_celp.h │ │ │ │ ├── smallft.c │ │ │ │ ├── smallft.h │ │ │ │ ├── speex.c │ │ │ │ ├── speex.h │ │ │ │ ├── speex_bits.h │ │ │ │ ├── speex_callbacks.c │ │ │ │ ├── speex_callbacks.h │ │ │ │ ├── speex_config_types.h │ │ │ │ ├── speex_config_types.h.in │ │ │ │ ├── speex_echo.h │ │ │ │ ├── speex_header.c │ │ │ │ ├── speex_header.h │ │ │ │ ├── speex_jitter.h │ │ │ │ ├── speex_noglobals.h │ │ │ │ ├── speex_preprocess.c │ │ │ │ ├── speex_preprocess.h │ │ │ │ ├── speex_stereo.h │ │ │ │ ├── speex_types.h │ │ │ │ ├── stack_alloc.h │ │ │ │ ├── stereo.c │ │ │ │ ├── testdenoise.c │ │ │ │ ├── testecho.c │ │ │ │ ├── testenc.c │ │ │ │ ├── testenc_uwb.c │ │ │ │ ├── testenc_wb.c │ │ │ │ ├── vbr.c │ │ │ │ ├── vbr.h │ │ │ │ ├── vorbis_psy.c │ │ │ │ ├── vorbis_psy.h │ │ │ │ ├── vq.c │ │ │ │ ├── vq.h │ │ │ │ ├── vq_arm4.h │ │ │ │ ├── vq_bfin.h │ │ │ │ └── vq_sse.h │ │ │ └── speexcodec.cxx │ │ ├── VoiceAgeG729 │ │ │ ├── .cvsignore │ │ │ ├── G729.zip │ │ │ ├── README.txt │ │ │ ├── VoiceAgeG729.dsp │ │ │ ├── VoiceAgeG729.vcproj │ │ │ ├── VoiceAgeG729_2005.sln │ │ │ ├── VoiceAgeG729_2005.vcproj │ │ │ ├── VoiceAgeG729_2005.vcproj.RUM.admin.user │ │ │ ├── g729codec.c │ │ │ └── va_g729 │ │ │ │ ├── va_g729.h │ │ │ │ ├── va_g729.lib │ │ │ │ ├── va_g729_.pdf │ │ │ │ ├── va_g729_decoder.c │ │ │ │ ├── va_g729_decoder.exe │ │ │ │ ├── va_g729_encoder.c │ │ │ │ └── va_g729_encoder.exe │ │ ├── gsm-amr │ │ │ ├── .cvsignore │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── amrcodec.c │ │ │ ├── gsmamr.dsp │ │ │ ├── gsmamr.vcproj │ │ │ ├── gsmamr_2005.vcproj │ │ │ └── src │ │ │ │ ├── amrcodec.txt │ │ │ │ ├── decoder.c │ │ │ │ ├── encoder.c │ │ │ │ ├── interf_dec.c │ │ │ │ ├── interf_dec.h │ │ │ │ ├── interf_enc.c │ │ │ │ ├── interf_enc.h │ │ │ │ ├── interf_rom.h │ │ │ │ ├── makefile.gcc │ │ │ │ ├── makefile.win32 │ │ │ │ ├── readme.txt │ │ │ │ ├── rom_dec.h │ │ │ │ ├── rom_enc.h │ │ │ │ ├── sp_dec.c │ │ │ │ ├── sp_dec.h │ │ │ │ ├── sp_enc.c │ │ │ │ ├── sp_enc.h │ │ │ │ └── typedef.h │ │ └── iLBC │ │ │ ├── .cvsignore │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── iLBC │ │ │ ├── FrameClassify.c │ │ │ ├── FrameClassify.h │ │ │ ├── LPCdecode.c │ │ │ ├── LPCdecode.h │ │ │ ├── LPCencode.c │ │ │ ├── LPCencode.h │ │ │ ├── StateConstructW.c │ │ │ ├── StateConstructW.h │ │ │ ├── StateSearchW.c │ │ │ ├── StateSearchW.h │ │ │ ├── anaFilter.c │ │ │ ├── anaFilter.h │ │ │ ├── constants.c │ │ │ ├── constants.h │ │ │ ├── createCB.c │ │ │ ├── createCB.h │ │ │ ├── doCPLC.c │ │ │ ├── doCPLC.h │ │ │ ├── draft-ietf-avt-ilbc-codec-05.txt │ │ │ ├── enhancer.c │ │ │ ├── enhancer.h │ │ │ ├── extract-cfile.awk │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── gainquant.c │ │ │ ├── gainquant.h │ │ │ ├── getCBvec.c │ │ │ ├── getCBvec.h │ │ │ ├── helpfun.c │ │ │ ├── helpfun.h │ │ │ ├── hpInput.c │ │ │ ├── hpInput.h │ │ │ ├── hpOutput.c │ │ │ ├── hpOutput.h │ │ │ ├── iCBConstruct.c │ │ │ ├── iCBConstruct.h │ │ │ ├── iCBSearch.c │ │ │ ├── iCBSearch.h │ │ │ ├── iLBC_decode.c │ │ │ ├── iLBC_decode.h │ │ │ ├── iLBC_define.h │ │ │ ├── iLBC_encode.c │ │ │ ├── iLBC_encode.h │ │ │ ├── lsf.c │ │ │ ├── lsf.h │ │ │ ├── packing.c │ │ │ ├── packing.h │ │ │ ├── syntFilter.c │ │ │ └── syntFilter.h │ │ │ ├── ilbccodec.c │ │ │ ├── ilbccodec.dsp │ │ │ ├── ilbccodec.vcproj │ │ │ └── ilbccodec_2005.vcproj │ ├── config.log │ ├── config.status │ ├── configure │ ├── configure.ac │ ├── ffmpeg │ │ ├── avcodec.h │ │ ├── common.h │ │ ├── libavcodec.dll │ │ └── libavcodec.so │ ├── plugins.sln │ ├── plugins_2005.sln │ └── video │ │ ├── H.263-2429 │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── ReadMe.txt │ │ ├── ffmpeg │ │ │ ├── avcodec.h │ │ │ └── common.h │ │ ├── h263_2429.cxx │ │ ├── h263_2429.sln │ │ ├── h263pframe.cxx │ │ ├── h263pframe.h │ │ └── rtpframe.h │ │ ├── H.263-ffmpeg │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── ReadMe.txt │ │ ├── ffmpeg │ │ │ ├── avcodec.h │ │ │ └── common.h │ │ ├── h263ffmpeg.cxx │ │ ├── h263ffmpeg.sln │ │ ├── h263ffmpeg.vcproj │ │ ├── h263ffmpeg_2005.sln │ │ ├── h263ffmpeg_2005.vcproj │ │ └── h263ffmpeg_2005.vcproj.RUM.admin.user │ │ └── common │ │ ├── critsect.h │ │ ├── dyna.cxx │ │ ├── dyna.h │ │ ├── rtpframe.h │ │ ├── trace.cxx │ │ ├── trace.h │ │ └── vs-stdint.h ├── src │ ├── Makefile │ ├── asn │ │ ├── OID2.asn │ │ ├── gccpdu.asn │ │ ├── h225.asn │ │ ├── h235.asn │ │ ├── h245.asn │ │ ├── h248.asn │ │ ├── h350_service.asn │ │ ├── h4501.asn │ │ ├── h45010.asn │ │ ├── h45011.asn │ │ ├── h4502.asn │ │ ├── h4503.asn │ │ ├── h4504.asn │ │ ├── h4505.asn │ │ ├── h4506.asn │ │ ├── h4507.asn │ │ ├── h4508.asn │ │ ├── h4509.asn │ │ ├── h46018.asn │ │ ├── h46019.asn │ │ ├── h4609.asn │ │ ├── h460pres.asn │ │ ├── h460tm.asn │ │ ├── h501.asn │ │ ├── mcspdu.asn │ │ ├── t38.asn │ │ └── x880.asn │ ├── channels.cxx │ ├── codecs.cxx │ ├── dllmain.cxx │ ├── g711.c │ ├── gccpdu.cxx │ ├── gkclient.cxx │ ├── gkserver.cxx │ ├── gnugknat.cxx │ ├── guid.cxx │ ├── h224.cxx │ ├── h225_1.cxx │ ├── h225_2.cxx │ ├── h225ras.cxx │ ├── h230 │ │ ├── OID2.asn │ │ ├── OID2.cxx │ │ └── h230.cxx │ ├── h235.cxx │ ├── h235_t.cxx │ ├── h235auth.cxx │ ├── h235auth1.cxx │ ├── h235pluginmgr.cxx │ ├── h245_1.cxx │ ├── h245_2.cxx │ ├── h245_3.cxx │ ├── h248.cxx │ ├── h281.cxx │ ├── h323.cxx │ ├── h323.cxx.bak │ ├── h323annexg.cxx │ ├── h323caps.cxx │ ├── h323caps.cxx.bak │ ├── h323ep.cxx │ ├── h323filetransfer.cxx │ ├── h323h224.cxx │ ├── h323neg.cxx │ ├── h323pdu.cxx │ ├── h323pluginmgr.cxx │ ├── h323pluginmgr.cxx.bak │ ├── h323rtp.cxx │ ├── h323t120.cxx │ ├── h323t38.cxx │ ├── h323trans.cxx │ ├── h341 │ │ ├── H225-MIB.mib │ │ ├── H245-MIB.mib │ │ ├── H323-GATEKEEPER-MIB.mib │ │ ├── H323GW-MIB.mib │ │ ├── H323MC-MIB.mib │ │ ├── H323TERMINAL-MIB.mib │ │ ├── IPV6-FLOW-LABEL-MIB.mib │ │ ├── MP-MIB.mib │ │ ├── h341.cxx │ │ └── mib2c.openh323.conf │ ├── h350 │ │ ├── commObject.schema │ │ ├── commURI.schema │ │ ├── h235Identity.schema │ │ ├── h323Identity.schema │ │ ├── h323person.schema │ │ ├── h350.cxx │ │ └── h350_service.cxx │ ├── h450 │ │ ├── h4501.cxx │ │ ├── h45010.cxx │ │ ├── h45011.cxx │ │ ├── h4502.cxx │ │ ├── h4503.cxx │ │ ├── h4504.cxx │ │ ├── h4505.cxx │ │ ├── h4506.cxx │ │ ├── h4507.cxx │ │ ├── h4508.cxx │ │ ├── h4509.cxx │ │ └── h450pdu.cxx │ ├── h460 │ │ ├── h4601.cxx │ │ ├── h46018.cxx │ │ ├── h46019.cxx │ │ ├── h4609.cxx │ │ ├── h460p.cxx │ │ ├── h460pres.cxx │ │ └── h460tm.cxx │ ├── h501.cxx │ ├── h501pdu.cxx │ ├── jitter.cxx │ ├── libver.rc │ ├── mcspdu.cxx │ ├── mediafmt.cxx │ ├── opalglobalstatics.cxx │ ├── opalvxml.cxx │ ├── opalwavfile.cxx │ ├── peclient.cxx │ ├── precompile.cxx │ ├── q922.cxx │ ├── q931.cxx │ ├── rfc2833.cxx │ ├── rtp.cxx │ ├── rtp2wav.cxx │ ├── svcctrl.cxx │ ├── t120proto.cxx │ ├── t38.cxx │ ├── t38proto.cxx │ ├── transports.cxx │ ├── x224.cxx │ └── x880.cxx ├── version.h └── videonotes.rtf ├── myphone3 ├── AudioPage.cpp ├── AudioPage.h ├── Book_AddressPage.cpp ├── Book_AddressPage.h ├── Book_InPage.cpp ├── Book_InPage.h ├── Book_MsdPage.cpp ├── Book_MsdPage.h ├── Book_OutPage.cpp ├── Book_OutPage.h ├── CVideoDevice.cpp ├── CVideoDevice.h ├── GKPage.cpp ├── GKPage.h ├── GeneralPage.cpp ├── GeneralPage.h ├── Multilang.cpp ├── Multilang.h ├── MyIndicator.cpp ├── MyIndicator.h ├── MyMainMenu.cpp ├── MyMainMenu.h ├── MyPhone.cpp ├── MyPhone.h ├── MyPhone.rc ├── MyPhone.sln ├── MyPhone.vcproj ├── MyPhoneBook.cpp ├── MyPhoneBook.h ├── MyPhoneDlg.cpp ├── MyPhoneDlg.h ├── MyPhoneEndPoint.cpp ├── MyPhoneEndPoint.h ├── MyPropertySheet.cpp ├── MyPropertySheet.h ├── NetworkPage.cpp ├── NetworkPage.h ├── ReadMe.txt ├── StdAfx.cpp ├── StdAfx.h ├── VisualPage.cpp ├── VisualPage.h ├── XPface.xml ├── guiPage.cpp ├── guiPage.h ├── res │ ├── CallAnsIcon16.ico │ ├── CallHangIcon16.ico │ ├── CallIcon16.ico │ ├── CallRefIcon16.ico │ ├── Comp16.ico │ ├── LArrIcon.ico │ ├── MicIcon32soff.ico │ ├── MicIcon32son.ico │ ├── MyOpenH.bmp │ ├── Phone16.ico │ ├── Phone16in.ico │ ├── Phone16msd.ico │ ├── Phone16out.ico │ ├── Phone16up.ico │ ├── RArrIcon.ico │ ├── SndIcon32soff.ico │ ├── SndIcon32son.ico │ ├── UsersIcon16.ico │ ├── ohico.ico │ ├── ohlogoqcif.bmp │ ├── pnphide.ico │ ├── pnpshow.ico │ └── testicon.ico └── resource.h ├── oslec ├── ReadMe.txt ├── bit_operations.h ├── echo.c ├── echo.h ├── fir.h ├── inttypes.h ├── mmx.h ├── oslec.sln ├── oslec.vcproj └── stdint.h ├── ptlib ├── ChangeLog.txt ├── History.txt ├── Makefile ├── Makefile.in ├── README_VXWORKS.txt ├── ReadMe.txt ├── ReadMe_QOS.txt ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── configure.exe ├── include │ ├── ptbuildopts.h │ ├── ptbuildopts.h.in │ ├── ptclib │ │ ├── asnber.h │ │ ├── asner.h │ │ ├── asnper.h │ │ ├── asnxer.h │ │ ├── cypher.h │ │ ├── delaychan.h │ │ ├── dtmf.h │ │ ├── enum.h │ │ ├── ftp.h │ │ ├── guid.h │ │ ├── html.h │ │ ├── http.h │ │ ├── httpform.h │ │ ├── httpsvc.h │ │ ├── inetmail.h │ │ ├── inetprot.h │ │ ├── ipacl.h │ │ ├── memfile.h │ │ ├── mime.h │ │ ├── modem.h │ │ ├── paec.h │ │ ├── paec.h.bak │ │ ├── pasn.h │ │ ├── pdns.h │ │ ├── pils.h │ │ ├── pldap.h │ │ ├── pnat.h │ │ ├── podbc.h │ │ ├── psasl.h │ │ ├── psnmp.h │ │ ├── psoap.h │ │ ├── psockbun.h │ │ ├── pspeexaec.h │ │ ├── pssl.h │ │ ├── pstun.h │ │ ├── ptts.h │ │ ├── pvfiledev.h │ │ ├── pvidfile.h │ │ ├── pwavfile.h │ │ ├── pwavfiledev.h │ │ ├── pxml.h │ │ ├── pxmlrpc.h │ │ ├── pxmlrpcs.h │ │ ├── qchannel.h │ │ ├── random.h │ │ ├── rfc1155.h │ │ ├── shttpsvc.h │ │ ├── snmp.h │ │ ├── sockagg.h │ │ ├── socks.h │ │ ├── telnet.h │ │ ├── url.h │ │ ├── vsdl.h │ │ ├── vxml.h │ │ ├── xmpp.h │ │ ├── xmpp_c2s.h │ │ ├── xmpp_muc.h │ │ └── xmpp_roster.h │ ├── ptlib.h │ └── ptlib │ │ ├── MacMainIf.h │ │ ├── Nucleus++ │ │ └── ptlib │ │ │ ├── NucleusDebstrm.h │ │ │ ├── channel.h │ │ │ ├── conchan.h │ │ │ ├── config.h │ │ │ ├── contain.h │ │ │ ├── dynalink.h │ │ │ ├── ethsock.h │ │ │ ├── file.h │ │ │ ├── filepath.h │ │ │ ├── icmpsock.h │ │ │ ├── ipdsock.h │ │ │ ├── ipsock.h │ │ │ ├── mutex.h │ │ │ ├── pdirect.h │ │ │ ├── pipechan.h │ │ │ ├── pmachdep.h │ │ │ ├── pprocess.h │ │ │ ├── ptime.h │ │ │ ├── ptlib.inl │ │ │ ├── remconn.h │ │ │ ├── semaphor.h │ │ │ ├── serchan.h │ │ │ ├── sfile.h │ │ │ ├── socket.h │ │ │ ├── sound.h │ │ │ ├── svcproc.h │ │ │ ├── syncpoint.h │ │ │ ├── tcpsock.h │ │ │ ├── textfile.h │ │ │ ├── thread.h │ │ │ ├── timeint.h │ │ │ ├── timer.h │ │ │ └── udpsock.h │ │ ├── args.h │ │ ├── array.h │ │ ├── channel.h │ │ ├── conchan.h │ │ ├── config.h │ │ ├── contain.h │ │ ├── contain.inl │ │ ├── critsec.h │ │ ├── devplugin.h │ │ ├── dict.h │ │ ├── dynalink.h │ │ ├── ethsock.h │ │ ├── file.h │ │ ├── filepath.h │ │ ├── icmpsock.h │ │ ├── indchan.h │ │ ├── int64.h │ │ ├── ipdsock.h │ │ ├── ipsock.h │ │ ├── ipxsock.h │ │ ├── lists.h │ │ ├── mail.h │ │ ├── msos │ │ ├── AUTOEXP.DAT │ │ ├── bad │ │ │ ├── CopyDTF_2003.bat │ │ │ ├── CopyDTF_2005.bat │ │ │ ├── ptlib.dtf │ │ │ ├── ptlib.ignore │ │ │ ├── ptlib_2003.dtf │ │ │ ├── ptlib_2005.dtf │ │ │ ├── ptlib_2005_wm.dtf │ │ │ ├── ptlib_2005_wm6.dtf │ │ │ ├── ptlibd.dtf │ │ │ ├── ptlibd_2003.dtf │ │ │ ├── ptlibd_2005.dtf │ │ │ ├── ptlibd_2005_wm.dtf │ │ │ ├── ptlibd_2005_wm6.dtf │ │ │ ├── ptlibn_2003.dtf │ │ │ ├── ptlibn_2005.dtf │ │ │ ├── ptlibn_2005_wm.dtf │ │ │ └── ptlibn_2005_wm6.dtf │ │ ├── ptlib.ignore │ │ ├── ptlib │ │ │ ├── PODBC.h │ │ │ ├── channel.h │ │ │ ├── conchan.h │ │ │ ├── config.h │ │ │ ├── contain.h │ │ │ ├── critsec.h │ │ │ ├── debstrm.h │ │ │ ├── dynalink.h │ │ │ ├── epacket.h │ │ │ ├── ethsock.h │ │ │ ├── file.h │ │ │ ├── filepath.h │ │ │ ├── icmpsock.h │ │ │ ├── ipdsock.h │ │ │ ├── ipsock.h │ │ │ ├── ipxsock.h │ │ │ ├── mail.h │ │ │ ├── mutex.h │ │ │ ├── pdirect.h │ │ │ ├── pipechan.h │ │ │ ├── pprocess.h │ │ │ ├── ptime.h │ │ │ ├── ptlib.inl │ │ │ ├── remconn.h │ │ │ ├── semaphor.h │ │ │ ├── serchan.h │ │ │ ├── sfile.h │ │ │ ├── socket.h │ │ │ ├── sound.h │ │ │ ├── sound_directsound.bak │ │ │ ├── sound_directsound.h │ │ │ ├── sound_directsound.new │ │ │ ├── sound_win32.h │ │ │ ├── spxsock.h │ │ │ ├── svcproc.h │ │ │ ├── syncpoint.h │ │ │ ├── tcpsock.h │ │ │ ├── textfile.h │ │ │ ├── thread.h │ │ │ ├── timeint.h │ │ │ ├── timer.h │ │ │ ├── udpsock.h │ │ │ ├── video.h │ │ │ ├── videoio.h │ │ │ ├── vidinput_directx.h │ │ │ ├── vidinput_directx.new │ │ │ └── vidinput_directx.orig │ │ └── unistd.h │ │ ├── mutex.h │ │ ├── notifier.h │ │ ├── notifier_ext.h │ │ ├── object.h │ │ ├── osutil.inl │ │ ├── pdirect.h │ │ ├── pfactory.h │ │ ├── pipechan.h │ │ ├── plugin.h │ │ ├── pluginmgr.h │ │ ├── pprocess.h │ │ ├── psharedptr.h │ │ ├── pstring.h │ │ ├── psync.h │ │ ├── ptime.h │ │ ├── qos.h │ │ ├── remconn.h │ │ ├── safecoll.h │ │ ├── semaphor.h │ │ ├── serchan.h │ │ ├── sfile.h │ │ ├── smartptr.h │ │ ├── socket.h │ │ ├── sockets.h │ │ ├── sound.h │ │ ├── spxsock.h │ │ ├── svcproc.h │ │ ├── syncpoint.h │ │ ├── syncthrd.h │ │ ├── tcpsock.h │ │ ├── textfile.h │ │ ├── thread.h │ │ ├── timeint.h │ │ ├── timer.h │ │ ├── udpsock.h │ │ ├── unix │ │ └── ptlib │ │ │ ├── beaudio.h │ │ │ ├── bevideo.h │ │ │ ├── channel.h │ │ │ ├── conchan.h │ │ │ ├── config.h │ │ │ ├── contain.h │ │ │ ├── critsec.h │ │ │ ├── dynalink.h │ │ │ ├── ethsock.h │ │ │ ├── file.h │ │ │ ├── filepath.h │ │ │ ├── icmpsock.h │ │ │ ├── ipdsock.h │ │ │ ├── ipsock.h │ │ │ ├── maccoreaudio.h │ │ │ ├── mutex.h │ │ │ ├── pdirect.h │ │ │ ├── pipechan.h │ │ │ ├── pmachdep.h │ │ │ ├── pprocess.h │ │ │ ├── ptime.h │ │ │ ├── ptlib.inl │ │ │ ├── remconn.h │ │ │ ├── resampler.h │ │ │ ├── semaphor.h │ │ │ ├── serchan.h │ │ │ ├── sfile.h │ │ │ ├── shmvideo.h │ │ │ ├── socket.h │ │ │ ├── sound.h │ │ │ ├── svcproc.h │ │ │ ├── syncpoint.h │ │ │ ├── tcpsock.h │ │ │ ├── textfile.h │ │ │ ├── thread.h │ │ │ ├── timeint.h │ │ │ ├── timer.h │ │ │ ├── udpsock.h │ │ │ ├── video.h │ │ │ └── videoio.h │ │ ├── vconvert.h │ │ ├── video.h │ │ ├── videoio.h │ │ ├── videoio1394dc.h │ │ ├── wince │ │ ├── alloca.h │ │ ├── assert.h │ │ ├── ceostream.h │ │ ├── cevfw.h │ │ ├── config.h │ │ ├── crtdbg.h │ │ ├── ctype.h │ │ ├── direct.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── imagehlp.h │ │ ├── io.h │ │ ├── iomanip.h │ │ ├── ios.h │ │ ├── iostream.h │ │ ├── istream.h │ │ ├── lisp.h │ │ ├── mmsystemx.h │ │ ├── nspapi.h │ │ ├── nucpp.h │ │ ├── ostream.h │ │ ├── process.h │ │ ├── regexp.h │ │ ├── share.h │ │ ├── signal.h │ │ ├── snmp.h │ │ ├── stdlibx.h │ │ ├── streamb.h │ │ ├── strings.h │ │ ├── strstrea.h │ │ ├── strstream.h │ │ ├── svcguid.h │ │ ├── syntax.h │ │ ├── sys │ │ │ ├── file.h │ │ │ ├── param.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ └── types.h │ │ ├── time.h │ │ ├── wsipx.h │ │ └── wsnwlink.h │ │ └── wm │ │ ├── Snmp.h │ │ ├── cevfw.h │ │ ├── crtdbg.h │ │ ├── direct.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── io.h │ │ ├── mmsystemx.h │ │ ├── nspapi.h │ │ ├── process.h │ │ ├── share.h │ │ ├── signal.h │ │ ├── stdlibx.h │ │ ├── sys │ │ ├── stat.h │ │ └── types.h │ │ ├── time.h │ │ ├── wsipx.h │ │ └── wsnwlink.h ├── install-sh ├── make │ ├── common.mak │ ├── lib.mak │ ├── plugins.mak │ ├── ptbuildopts.mak │ ├── ptbuildopts.mak.in │ ├── ptlib-config │ ├── ptlib-config.in │ ├── ptlib.mak │ └── unix.mak ├── mpl-1.0.htm ├── msvc6_upgrade.bat ├── plugins │ ├── Makefile │ ├── Makefile.in │ ├── ReadMe.txt │ ├── config.log │ ├── config.status │ ├── configure │ ├── configure.in │ ├── ptlib │ │ └── device │ │ │ └── videoinput │ │ │ └── _.dep │ ├── sound_alsa │ │ ├── Makefile │ │ ├── sound_alsa.cxx │ │ └── sound_alsa.h │ ├── sound_esd │ │ ├── Makefile │ │ ├── sound_esd.cxx │ │ └── sound_esd.h │ ├── sound_oss │ │ ├── Makefile │ │ ├── sound_oss.cxx │ │ └── sound_oss.h │ ├── sound_sunaudio │ │ ├── Makefile │ │ ├── sound_sunaudio.cxx │ │ └── sound_sunaudio.h │ ├── vidinput_avc │ │ ├── Makefile │ │ ├── vidinput_avc.cxx │ │ └── vidinput_avc.h │ ├── vidinput_bsd │ │ ├── Makefile │ │ ├── vidinput_bsd.cxx │ │ └── vidinput_bsd.h │ ├── vidinput_dc │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── video4dc1394.cxx │ │ └── videoio1394dc.h │ ├── vidinput_v4l │ │ ├── Makefile │ │ ├── vidinput_v4l.cxx │ │ └── vidinput_v4l.h │ └── vidinput_v4l2 │ │ ├── Makefile │ │ ├── vidinput_names.cxx │ │ ├── vidinput_names.h │ │ ├── vidinput_v4l2.cxx │ │ └── vidinput_v4l2.h ├── ptlib.dsw ├── ptlib.dxy ├── ptlib.mak ├── ptlib.sln ├── ptlib.vcp ├── ptlib.wpj ├── ptlib.wsp ├── ptlib_2005.sln ├── ptlib_2010.sln ├── ptlib_cfg.dxy ├── ptlib_samples.sln ├── ptlib_samples_2005.sln ├── ptlibce.vcp ├── ptlibce.vcw ├── samples │ ├── Makefile │ ├── ODBC │ │ ├── odbctest.cxx │ │ ├── odbctest.dsp │ │ ├── odbctest.dsw │ │ ├── odbctest.sln │ │ ├── odbctest.vcproj │ │ └── test.mdb │ ├── ThreadSafe │ │ ├── Makefile │ │ ├── ThreadSafe.dsp │ │ ├── ThreadSafe.vcproj │ │ ├── ThreadSafe_2005.vcproj │ │ ├── main.cxx │ │ ├── main.h │ │ └── precompile.cxx │ ├── address │ │ ├── Makefile │ │ ├── address.vcproj │ │ └── local.cxx │ ├── aggtest │ │ ├── aggtest.vcproj │ │ ├── aggtest_2005.vcproj │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── precompile.h │ │ └── version.h │ ├── audio │ │ ├── Makefile │ │ ├── audio.cxx │ │ ├── audio.h │ │ └── version.h │ ├── dnstest │ │ ├── Makefile │ │ ├── dnstest.dsp │ │ ├── dnstest.dsw │ │ ├── dnstest.vcproj │ │ ├── dnstest_2005.vcproj │ │ ├── main.cxx │ │ ├── main.h │ │ └── precompile.cxx │ ├── dtmftest │ │ ├── Makefile │ │ ├── dtmftest.dsp │ │ ├── dtmftest.dsw │ │ ├── dtmftest.vcproj │ │ ├── dtmftest_2005.vcproj │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── precompile.h │ │ └── version.h │ ├── emailtest │ │ ├── Makefile │ │ ├── emailtest.dsp │ │ ├── emailtest.dsw │ │ ├── emailtest.vcproj │ │ ├── emailtest_2005.vcproj │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── precompile.h │ │ └── version.h │ ├── factory │ │ ├── Makefile │ │ ├── abstract.h │ │ ├── concrete.cxx │ │ ├── factory.dsp │ │ ├── factory.vcproj │ │ ├── factory_2005.vcproj │ │ ├── main.cxx │ │ ├── precompile.cxx │ │ └── solid.cxx │ ├── find_ip │ │ ├── Makefile │ │ ├── find_ip.cxx │ │ ├── find_ip.dsp │ │ ├── find_ip.vcproj │ │ ├── find_ip_2005.vcproj │ │ └── precompile.cxx │ ├── hello_world │ │ ├── Makefile │ │ ├── hello.cxx │ │ ├── hello.vcproj │ │ ├── helloDLL_2003.vcproj │ │ ├── helloDLL_2005.vcproj │ │ ├── helloDLL_2010.vcxproj │ │ ├── hello_2005.vcproj │ │ └── hello_2010.vcxproj │ ├── ipv6test │ │ ├── Makefile │ │ ├── ipv6test.dsp │ │ ├── ipv6test.dsw │ │ ├── ipv6test.vcproj │ │ ├── ipv6test_2005.vcproj │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── precompile.h │ │ └── version.h │ ├── ldaptest │ │ ├── Makefile │ │ ├── ldaptest.dsp │ │ ├── ldaptest.vcproj │ │ ├── ldaptest_2005.vcproj │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── precompile.h │ │ └── version.h │ ├── md5 │ │ ├── Makefile │ │ └── encrypt.cxx │ ├── netif │ │ ├── Makefile │ │ └── netif.cxx │ ├── ptimer │ │ ├── Makefile │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── precompile.h │ │ ├── ptimer.dsp │ │ ├── ptimer.dsw │ │ ├── ptimer.vcproj │ │ ├── ptimer_2005.vcproj │ │ └── version.h │ ├── pxml │ │ ├── Makefile │ │ ├── PxmlTest.dsp │ │ ├── PxmlTest.dsw │ │ ├── PxmlTest.vcproj │ │ ├── PxmlTest_2005.vcproj │ │ ├── cfg.txt │ │ ├── main.cxx │ │ ├── main.h │ │ └── precompile.cxx │ ├── queue │ │ ├── Makefile │ │ ├── Readme │ │ ├── docs.cfg │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── precompile.h │ │ ├── queue.dsp │ │ ├── queue.dsw │ │ ├── queue.vcproj │ │ ├── queue_2005.vcproj │ │ └── version.h │ ├── safetest │ │ ├── Makefile │ │ ├── docs.cfg │ │ ├── main.cxx │ │ ├── main.h │ │ ├── overview.cxx │ │ ├── precompile.cxx │ │ ├── precompile.h │ │ ├── safetest.dsp │ │ ├── safetest.dsw │ │ ├── safetest.vcproj │ │ ├── safetest_2005.vcproj │ │ └── version.h │ ├── serial │ │ ├── Makefile │ │ └── serial.cxx │ ├── sockbundle │ │ ├── sockbundle.cxx │ │ ├── sockbundle.vcproj │ │ └── sockbundle_2003.vcproj │ ├── sortedlist │ │ ├── Makefile │ │ ├── SortedListTest.cxx │ │ ├── SortedListTest.dsp │ │ ├── SortedListTest.h │ │ ├── SortedListTest.vcproj │ │ ├── SortedListTest_2005.vcproj │ │ └── precompile.cxx │ ├── strtest │ │ ├── Makefile │ │ └── main.cxx │ ├── stunclient │ │ ├── Makefile │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── stunclient.dsp │ │ ├── stunclient.vcproj │ │ ├── stunclient_2005.vcproj │ │ └── version.h │ ├── thread │ │ ├── Makefile │ │ └── thread.cxx │ ├── threadex │ │ ├── Makefile │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── precompile.h │ │ ├── threadex.dsp │ │ ├── threadex.dsw │ │ ├── threadex.vcproj │ │ ├── threadex_2005.vcproj │ │ └── version.h │ ├── timing │ │ ├── Makefile │ │ ├── precompile.cxx │ │ ├── timing.cxx │ │ ├── timing.dsp │ │ ├── timing.vcproj │ │ └── timing_2005.vcproj │ ├── vidtest │ │ ├── Makefile │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── precompile.h │ │ ├── version.h │ │ ├── vidtest.dsp │ │ ├── vidtest.dsw │ │ ├── vidtest.vcproj │ │ └── vidtest_2005.vcproj │ ├── vxmltest │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── root.vxml │ │ ├── vxmltest.dsp │ │ ├── vxmltest.vcproj │ │ └── vxmltest_2005.vcproj │ ├── wavfile │ │ ├── Makefile │ │ ├── main.cxx │ │ ├── wavfile.dsp │ │ ├── wavfile.vcproj │ │ └── wavfile_2005.vcproj │ ├── xmlrpc │ │ ├── Makefile │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── xmlrpc.dsp │ │ ├── xmlrpc.dsw │ │ ├── xmlrpc.vcproj │ │ └── xmlrpc_2005.vcproj │ ├── xmlrpcsrvr │ │ ├── Makefile │ │ ├── custom.cxx │ │ ├── custom.h │ │ ├── main.cxx │ │ ├── main.h │ │ ├── messages.mc │ │ ├── precompile.cxx │ │ ├── xmlrpcsrvr.dsp │ │ ├── xmlrpcsrvr.dsw │ │ ├── xmlrpcsrvr.ico │ │ ├── xmlrpcsrvr.vcproj │ │ └── xmlrpcsrvr_2005.vcproj │ ├── xmppconsole │ │ ├── Makefile │ │ ├── README │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ └── version.h │ └── xmpptest │ │ ├── ConnectDialog.cxx │ │ ├── ConnectDialog.h │ │ ├── MainFrame.cxx │ │ ├── MainFrame.h │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── main.cxx │ │ ├── main.h │ │ ├── precompile.cxx │ │ ├── xmpptest.dsp │ │ ├── xmpptest.vcproj │ │ └── xmpptest_2005.vcproj ├── src │ ├── ptclib │ │ ├── asnber.cxx │ │ ├── asner.cxx │ │ ├── asnper.cxx │ │ ├── asnxer.cxx │ │ ├── cypher.cxx │ │ ├── delaychan.cxx │ │ ├── dtmf.cxx │ │ ├── enum.cxx │ │ ├── ftp.cxx │ │ ├── ftpclnt.cxx │ │ ├── ftpsrvr.cxx │ │ ├── guid.cxx │ │ ├── html.cxx │ │ ├── http.cxx │ │ ├── httpclnt.cxx │ │ ├── httpform.cxx │ │ ├── httpsrvr.cxx │ │ ├── httpsvc.cxx │ │ ├── inetmail.cxx │ │ ├── inetprot.cxx │ │ ├── ipacl.cxx │ │ ├── memfile.cxx │ │ ├── modem.cxx │ │ ├── pasn.cxx │ │ ├── pdns.cxx │ │ ├── pils.cxx │ │ ├── pldap.cxx │ │ ├── pnat.cxx │ │ ├── podbc.cxx │ │ ├── psasl.cxx │ │ ├── psnmp.cxx │ │ ├── psoap.cxx │ │ ├── psockbun.cxx │ │ ├── pssl.cxx │ │ ├── pstun.cxx │ │ ├── ptts.cxx │ │ ├── pvfiledev.cxx │ │ ├── pvidfile.cxx │ │ ├── pwavfile.cxx │ │ ├── pwavfiledev.cxx │ │ ├── pxml.cxx │ │ ├── pxmlrpc.cxx │ │ ├── pxmlrpcs.cxx │ │ ├── qchannel.cxx │ │ ├── random.cxx │ │ ├── rfc1155.asn │ │ ├── rfc1155.cxx │ │ ├── shttpsvc.cxx │ │ ├── snmp.asn │ │ ├── snmp.cxx │ │ ├── snmpclnt.cxx │ │ ├── snmpserv.cxx │ │ ├── sockagg.cxx │ │ ├── socks.cxx │ │ ├── speex_echo │ │ │ ├── PAEC.dsp │ │ │ ├── PAEC.vcproj │ │ │ ├── PAEC_2005.sln │ │ │ ├── PAEC_2005.vcproj │ │ │ ├── arch.h │ │ │ ├── config.h │ │ │ ├── mdf.c │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── paec.cxx │ │ │ ├── preprocess.c │ │ │ ├── smallft.c │ │ │ ├── smallft.h │ │ │ ├── speex_echo.h │ │ │ ├── speex_preprocess.h │ │ │ └── speex_types.h │ │ ├── telnet.cxx │ │ ├── udp.h │ │ ├── vsdl.cxx │ │ ├── vxml.cxx │ │ ├── xmpp.cxx │ │ ├── xmpp_c2s.cxx │ │ ├── xmpp_muc.cxx │ │ └── xmpp_roster.cxx │ └── ptlib │ │ ├── Nucleus++ │ │ ├── Makefile │ │ ├── NucleusChannel.cxx │ │ ├── NucleusConChan.cxx │ │ ├── NucleusConfig.cxx │ │ ├── NucleusMutex.cxx │ │ ├── NucleusPDirectory.cxx │ │ ├── NucleusPFile.cxx │ │ ├── NucleusPFilePath.cxx │ │ ├── NucleusPTime.cxx │ │ ├── NucleusProcess.cxx │ │ ├── NucleusPtlib.cxx │ │ ├── NucleusSemaphore.cxx │ │ ├── NucleusSoundBite.cxx │ │ ├── NucleusSyncPoint.cxx │ │ ├── NucleusThread.cxx │ │ ├── NucleusTimer.cxx │ │ ├── assert.cxx │ │ └── socket.cxx │ │ ├── common │ │ ├── collect.cxx │ │ ├── contain.cxx │ │ ├── getdate.y │ │ ├── getdate_tab.c │ │ ├── jidctflt.cxx │ │ ├── notifier_ext.cxx │ │ ├── object.cxx │ │ ├── osutils.cxx │ │ ├── paec.cxx │ │ ├── pchannel.cxx │ │ ├── pconfig.cxx │ │ ├── pethsock.cxx │ │ ├── pglobalstatic.cxx │ │ ├── pipechan.cxx │ │ ├── pluginmgr.cxx │ │ ├── ptime.cxx │ │ ├── pvidchan.cxx │ │ ├── qos.cxx │ │ ├── regex │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── WHATSNEW │ │ │ ├── cclass.h │ │ │ ├── cname.h │ │ │ ├── debug.c │ │ │ ├── engine.c │ │ │ ├── engine.ih │ │ │ ├── main.c │ │ │ ├── mkh │ │ │ ├── regcomp.c │ │ │ ├── regcomp.ih │ │ │ ├── regerror.c │ │ │ ├── regerror.ih │ │ │ ├── regex.3 │ │ │ ├── regex.7 │ │ │ ├── regex.h │ │ │ ├── regex2.h │ │ │ ├── regexec.c │ │ │ ├── regfree.c │ │ │ ├── split.c │ │ │ ├── tests │ │ │ └── utils.h │ │ ├── safecoll.cxx │ │ ├── serial.cxx │ │ ├── sfile.cxx │ │ ├── sockets.cxx │ │ ├── sound.cxx │ │ ├── tinyjpeg-internal.h │ │ ├── tinyjpeg.cxx │ │ ├── tinyjpeg.h │ │ ├── vconvert.cxx │ │ ├── vfakeio.cxx │ │ └── videoio.cxx │ │ ├── msos │ │ ├── Console Components.dsp │ │ ├── Console.dsp │ │ ├── Console.vcproj │ │ ├── Console_2005.vcproj │ │ ├── Console_2010.vcxproj │ │ ├── Makefile │ │ ├── PTLib Static.aps │ │ ├── PTLib Static.rc │ │ ├── PTLib.dsp │ │ ├── PTLib.vcproj │ │ ├── PTLib_2005.vcproj │ │ ├── PTLib_2010.vcxproj │ │ ├── assert.cxx │ │ ├── dllmain.cxx │ │ ├── dossock.cxx │ │ ├── doswin.cxx │ │ ├── epacket.h │ │ ├── ethsock.cxx │ │ ├── icmp.cxx │ │ ├── libver.aps │ │ ├── libver.rc │ │ ├── mail.cxx │ │ ├── msdos.cxx │ │ ├── mswin.cxx │ │ ├── pipe.cxx │ │ ├── ptlib.cxx │ │ ├── remconn.cxx │ │ ├── resource.h │ │ ├── sound_directsound.cxx │ │ ├── sound_win32.cxx │ │ ├── svcproc.cxx │ │ ├── vfw.cxx │ │ ├── vidinput_directx.cxx │ │ ├── vscreen.cxx │ │ ├── win32.cxx │ │ ├── wincfg.cxx │ │ ├── winserial.cxx │ │ └── winsock.cxx │ │ ├── unix │ │ ├── Makefile │ │ ├── assert.cxx │ │ ├── beaudio.cxx │ │ ├── beaudio │ │ │ ├── AudioFileWriter.h │ │ │ ├── BlockFIFO.cxx │ │ │ ├── BlockFIFO.h │ │ │ ├── LICENCE.be_sample_code │ │ │ ├── MediaRecorder.cxx │ │ │ ├── MediaRecorder.h │ │ │ ├── MediaRecorderNode.cxx │ │ │ ├── MediaRecorderNode.h │ │ │ ├── NodeRelease.h │ │ │ └── Resampler.h │ │ ├── channel.cxx │ │ ├── config.cxx │ │ ├── dummyaudio.cxx │ │ ├── dummyvideo.cxx │ │ ├── maccoreaudio.cxx │ │ ├── maccoreaudio │ │ │ ├── circular_buffer.inl │ │ │ ├── maccoreaudio_devices.inl │ │ │ └── mute_hack.inl │ │ ├── macosaudio.cxx │ │ ├── macosaudio │ │ │ ├── MacMain.cxx │ │ │ ├── MacMain.h │ │ │ ├── SequenceGrabber.cxx │ │ │ ├── SequenceGrabber.h │ │ │ ├── SoundMangler.cxx │ │ │ ├── SoundMangler.h │ │ │ ├── ringbuffer.cxx │ │ │ └── ringbuffer.h │ │ ├── ossaix.cxx │ │ ├── osutil.cxx │ │ ├── pipechan.cxx │ │ ├── qsa.cxx │ │ ├── remconn.cxx │ │ ├── serchan.cxx │ │ ├── shmvideo.cxx │ │ ├── socket.cxx │ │ ├── sunaudio.cxx │ │ ├── svcproc.cxx │ │ ├── switch.cxx │ │ ├── tlib.cxx │ │ ├── tlibbe.cxx │ │ ├── tlibmpthrd.cxx │ │ ├── tlibthrd.cxx │ │ ├── tlibvx.cxx │ │ ├── udll.cxx │ │ ├── uerror.h │ │ ├── uicmp.cxx │ │ ├── video4beos.cxx │ │ └── vxaudio.cxx │ │ ├── wince │ │ └── ConsoleCE │ │ │ ├── ceostream.cpp │ │ │ ├── cevfw.cpp │ │ │ ├── getdate_tab.cpp │ │ │ ├── ios.cpp │ │ │ ├── iostream.cpp │ │ │ ├── istream.cpp │ │ │ ├── mmsystemx.cxx │ │ │ ├── ostream.cpp │ │ │ ├── snmpdummy.cpp │ │ │ ├── stdlibx.cpp │ │ │ ├── streamb.cpp │ │ │ └── time.cpp │ │ └── wm │ │ ├── cevfw.cpp │ │ ├── mmsystemx.cxx │ │ ├── stdlibx.cpp │ │ └── time.cpp ├── tools │ ├── MergeSym │ │ ├── MergeSym.cxx │ │ ├── MergeSym.dsp │ │ ├── MergeSym.dsw │ │ ├── MergeSym.vcproj │ │ ├── MergeSym_2005.vcproj │ │ ├── MergeSym_2010.vcxproj │ │ ├── debug │ │ │ ├── MergeSym.exe │ │ │ ├── MergeSym.ilk │ │ │ ├── MergeSym.obj │ │ │ ├── MergeSym.pdb │ │ │ ├── vc80.idb │ │ │ └── vc80.pdb │ │ ├── release │ │ │ ├── MergeSym.obj │ │ │ └── vc80.idb │ │ └── run_dumpbin.bat │ ├── StringTest │ │ ├── Makefile │ │ ├── StringTest.dsp │ │ ├── StringTest.dsw │ │ ├── StringTest.vcproj │ │ ├── main.cxx │ │ ├── main.h │ │ └── version.h │ ├── Uninstall │ │ ├── resource.h │ │ ├── uninstall.c │ │ ├── uninstall.def │ │ ├── uninstall.dsp │ │ ├── uninstall.dsw │ │ └── uninstall.rc │ ├── asnparser │ │ ├── Makefile │ │ ├── asn_grammar.y │ │ ├── asn_lex.l │ │ ├── asnparser.1 │ │ ├── asnparser.dsp │ │ ├── asnparser.dsw │ │ ├── asnparser.sln │ │ ├── asnparser.vcproj │ │ ├── main.cxx │ │ ├── main.h │ │ └── precompile.cpp │ ├── configure │ │ ├── configure.cpp │ │ ├── configure.dsp │ │ ├── configure.vcproj │ │ ├── configure_2005.vcproj │ │ ├── configure_2010.vcxproj │ │ ├── debug │ │ │ ├── configure.obj │ │ │ ├── configure.pdb │ │ │ ├── vc80.idb │ │ │ └── vc80.pdb │ │ └── release │ │ │ ├── configure.obj │ │ │ └── vc80.idb │ ├── msvc6chk │ │ ├── msvc6chk.cpp │ │ ├── msvc6chk.dsp │ │ ├── msvc6chk.dsw │ │ ├── msvc6chk.exe │ │ └── upgrades │ │ │ ├── deque │ │ │ ├── fstream │ │ │ ├── list │ │ │ ├── vector │ │ │ ├── xmemory │ │ │ ├── xstring │ │ │ └── xtree │ └── plugintest │ │ ├── Debug │ │ ├── BuildLog.htm │ │ ├── vc80.idb │ │ └── vc80.pdb │ │ ├── Makefile │ │ ├── UpgradeLog.XML │ │ ├── _UpgradeReport_Files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Minus.gif │ │ └── UpgradeReport_Plus.gif │ │ ├── main.cxx │ │ ├── main.h │ │ ├── plugintest.dsp │ │ ├── plugintest.ncb │ │ ├── plugintest.sln │ │ ├── plugintest.suo │ │ ├── plugintest.vcproj │ │ ├── plugintest.vcproj.7.10.old │ │ └── plugintest.vcproj.RUM.admin.user └── version.h └── speex-1.2rc1 ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.TI-DSP ├── README.blackfin ├── README.symbian ├── Speex.kdevelop ├── Speex.spec ├── Speex.spec.in ├── TODO ├── acinclude.m4 ├── aclocal.m4 ├── bin ├── aec_test.wav ├── libspeexdsp.dll ├── testecho.exe ├── testecho.ilk └── ttt.wav ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc ├── Makefile.am ├── Makefile.in └── manual.pdf ├── include ├── Makefile.am ├── Makefile.in └── 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 ├── install-sh ├── 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 ├── ltmain.sh ├── missing ├── speex.m4 ├── speex.pc.in ├── speexdsp.pc.in ├── src ├── Makefile.am ├── Makefile.in ├── getopt.c ├── getopt1.c ├── getopt_win.h ├── skeleton.c ├── skeleton.h ├── speexdec.1 ├── speexdec.c ├── speexenc.1 ├── speexenc.c ├── wav_io.c ├── wav_io.h ├── wave_out.c └── wave_out.h ├── symbian ├── Makefile.am ├── Makefile.in ├── bld.inf ├── config.h └── speex.mmp ├── ti ├── Makefile.am ├── Makefile.in ├── config.h ├── os_support_custom.h ├── speex_C54_test │ ├── Makefile.am │ ├── Makefile.in │ ├── speex_C54_test.cmd │ └── speex_C54_test.pjt ├── speex_C55_test │ ├── Makefile.am │ ├── Makefile.in │ ├── speex_C55_test.cmd │ └── speex_C55_test.pjt ├── speex_C64_test │ ├── Makefile.am │ ├── Makefile.in │ ├── speex_C64_test.cmd │ └── speex_C64_test.pjt ├── testenc-TI-C5x.c └── testenc-TI-C64x.c └── win32 ├── Makefile.am ├── Makefile.in ├── VS2003 ├── Makefile.am ├── Makefile.in ├── libspeex.sln ├── libspeex │ ├── Makefile.am │ ├── Makefile.in │ └── libspeex.vcproj ├── libspeexdsp │ ├── Makefile.am │ ├── Makefile.in │ └── libspeexdsp.vcproj ├── speexdec │ ├── Makefile.am │ ├── Makefile.in │ └── speexdec.vcproj ├── speexenc │ ├── Makefile.am │ ├── Makefile.in │ └── speexenc.vcproj └── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── testdenoise.vcproj │ ├── testecho.vcproj │ ├── testenc.vcproj │ ├── testenc_uwb.vcproj │ ├── testenc_wb.vcproj │ └── testresample.vcproj ├── VS2005 ├── Makefile.am ├── Makefile.in ├── libspeex.sln ├── libspeex │ ├── Makefile.am │ ├── Makefile.in │ └── libspeex.vcproj ├── libspeexdsp │ ├── Makefile.am │ ├── Makefile.in │ └── libspeexdsp.vcproj ├── speexdec │ ├── Makefile.am │ ├── Makefile.in │ └── speexdec.vcproj ├── speexenc │ ├── Makefile.am │ ├── Makefile.in │ └── speexenc.vcproj └── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── testdenoise.vcproj │ ├── testecho.vcproj │ ├── testenc.vcproj │ ├── testenc_uwb.vcproj │ ├── testenc_wb.vcproj │ └── testresample.vcproj ├── VS2008 ├── Makefile.am ├── Makefile.in ├── libspeex.sln ├── libspeex │ ├── Makefile.am │ ├── Makefile.in │ └── libspeex.vcproj ├── libspeexdsp │ ├── Makefile.am │ ├── Makefile.in │ └── libspeexdsp.vcproj ├── speexdec │ ├── Makefile.am │ ├── Makefile.in │ └── speexdec.vcproj ├── speexenc │ ├── Makefile.am │ ├── Makefile.in │ └── speexenc.vcproj └── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── testdenoise.vcproj │ ├── testecho.vcproj │ ├── testenc.vcproj │ ├── testenc_uwb.vcproj │ ├── testenc_wb.vcproj │ └── testresample.vcproj ├── config.h ├── libspeex.def ├── libspeex ├── Makefile.am ├── Makefile.in ├── libspeex.dsp ├── libspeex.dsw ├── libspeex_dynamic.dsp ├── libspeexdsp.dsp └── libspeexdsp_dynamic.dsp ├── libspeexdsp.def ├── speex.iss ├── speexdec ├── Makefile.am ├── Makefile.in ├── speexdec.dsp └── speexdec.dsw └── speexenc ├── Makefile.am ├── Makefile.in ├── speexenc.dsp └── speexenc.dsw /H.263-1998/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/Makefile -------------------------------------------------------------------------------- /H.263-1998/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/Makefile.linux -------------------------------------------------------------------------------- /H.263-1998/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/ReadMe.txt -------------------------------------------------------------------------------- /H.263-1998/dyna.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/dyna.cxx -------------------------------------------------------------------------------- /H.263-1998/ffmpeg_error_patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/ffmpeg_error_patch.txt -------------------------------------------------------------------------------- /H.263-1998/h263-1998.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/h263-1998.cxx -------------------------------------------------------------------------------- /H.263-1998/h263-1998.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/h263-1998.h -------------------------------------------------------------------------------- /H.263-1998/h263_2005.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/h263_2005.ncb -------------------------------------------------------------------------------- /H.263-1998/h263_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/h263_2005.sln -------------------------------------------------------------------------------- /H.263-1998/h263_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/h263_2005.vcproj -------------------------------------------------------------------------------- /H.263-1998/h263_2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/h263_2008.vcproj -------------------------------------------------------------------------------- /H.263-1998/h263pframe.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/h263pframe.cxx -------------------------------------------------------------------------------- /H.263-1998/h263pframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/h263pframe.h -------------------------------------------------------------------------------- /H.263-1998/mpi.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/mpi.cxx -------------------------------------------------------------------------------- /H.263-1998/opal/critsect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/opal/critsect.h -------------------------------------------------------------------------------- /H.263-1998/opal/dyna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/opal/dyna.h -------------------------------------------------------------------------------- /H.263-1998/opal/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/opal/ffmpeg.h -------------------------------------------------------------------------------- /H.263-1998/opal/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/opal/mpi.h -------------------------------------------------------------------------------- /H.263-1998/opal/opalplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/opal/opalplugin.h -------------------------------------------------------------------------------- /H.263-1998/opal/plugin-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/opal/plugin-config.h -------------------------------------------------------------------------------- /H.263-1998/opal/rtpframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/opal/rtpframe.h -------------------------------------------------------------------------------- /H.263-1998/opal/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/opal/trace.h -------------------------------------------------------------------------------- /H.263-1998/opal/vs-stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/opal/vs-stdint.h -------------------------------------------------------------------------------- /H.263-1998/rfc2190.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/rfc2190.cxx -------------------------------------------------------------------------------- /H.263-1998/rfc2190.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/rfc2190.h -------------------------------------------------------------------------------- /H.263-1998/trace.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/trace.cxx -------------------------------------------------------------------------------- /H.263-1998/tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/H.263-1998/tracer.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/README.md -------------------------------------------------------------------------------- /h323plus/MPL-1.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/MPL-1.1.html -------------------------------------------------------------------------------- /h323plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/Makefile -------------------------------------------------------------------------------- /h323plus/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/Makefile.in -------------------------------------------------------------------------------- /h323plus/OpenH323.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/OpenH323.mak -------------------------------------------------------------------------------- /h323plus/Openh323libce.vcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/Openh323libce.vcb -------------------------------------------------------------------------------- /h323plus/Openh323libce.vcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/Openh323libce.vcp -------------------------------------------------------------------------------- /h323plus/Openh323libce.vcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/Openh323libce.vcw -------------------------------------------------------------------------------- /h323plus/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/config.guess -------------------------------------------------------------------------------- /h323plus/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/config.sub -------------------------------------------------------------------------------- /h323plus/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/configure -------------------------------------------------------------------------------- /h323plus/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/configure.ac -------------------------------------------------------------------------------- /h323plus/configure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/configure.exe -------------------------------------------------------------------------------- /h323plus/h323plus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/h323plus.sln -------------------------------------------------------------------------------- /h323plus/h323plus.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/h323plus.vcproj -------------------------------------------------------------------------------- /h323plus/h323plus_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/h323plus_2005.sln -------------------------------------------------------------------------------- /h323plus/h323plus_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/h323plus_2005.vcproj -------------------------------------------------------------------------------- /h323plus/h323plus_2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/h323plus_2008.sln -------------------------------------------------------------------------------- /h323plus/h323plus_2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/h323plus_2008.vcproj -------------------------------------------------------------------------------- /h323plus/include/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/channels.h -------------------------------------------------------------------------------- /h323plus/include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/codecs.h -------------------------------------------------------------------------------- /h323plus/include/dynacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/dynacodec.h -------------------------------------------------------------------------------- /h323plus/include/gccpdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/gccpdu.h -------------------------------------------------------------------------------- /h323plus/include/gkclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/gkclient.h -------------------------------------------------------------------------------- /h323plus/include/gkserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/gkserver.h -------------------------------------------------------------------------------- /h323plus/include/gnugknat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/gnugknat.h -------------------------------------------------------------------------------- /h323plus/include/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/guid.h -------------------------------------------------------------------------------- /h323plus/include/h224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h224.h -------------------------------------------------------------------------------- /h323plus/include/h224handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h224handler.h -------------------------------------------------------------------------------- /h323plus/include/h225.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h225.h -------------------------------------------------------------------------------- /h323plus/include/h225ras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h225ras.h -------------------------------------------------------------------------------- /h323plus/include/h230/OID2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h230/OID2.h -------------------------------------------------------------------------------- /h323plus/include/h230/h230.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h230/h230.h -------------------------------------------------------------------------------- /h323plus/include/h235.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h235.h -------------------------------------------------------------------------------- /h323plus/include/h235auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h235auth.h -------------------------------------------------------------------------------- /h323plus/include/h235plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h235plugin.h -------------------------------------------------------------------------------- /h323plus/include/h235pluginmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h235pluginmgr.h -------------------------------------------------------------------------------- /h323plus/include/h245.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h245.h -------------------------------------------------------------------------------- /h323plus/include/h248.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h248.h -------------------------------------------------------------------------------- /h323plus/include/h281.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h281.h -------------------------------------------------------------------------------- /h323plus/include/h281handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h281handler.h -------------------------------------------------------------------------------- /h323plus/include/h323.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323.h -------------------------------------------------------------------------------- /h323plus/include/h323annexg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323annexg.h -------------------------------------------------------------------------------- /h323plus/include/h323caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323caps.h -------------------------------------------------------------------------------- /h323plus/include/h323con.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323con.h -------------------------------------------------------------------------------- /h323plus/include/h323ep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323ep.h -------------------------------------------------------------------------------- /h323plus/include/h323h224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323h224.h -------------------------------------------------------------------------------- /h323plus/include/h323neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323neg.h -------------------------------------------------------------------------------- /h323plus/include/h323pdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323pdu.h -------------------------------------------------------------------------------- /h323plus/include/h323pluginmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323pluginmgr.h -------------------------------------------------------------------------------- /h323plus/include/h323rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323rtp.h -------------------------------------------------------------------------------- /h323plus/include/h323t120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323t120.h -------------------------------------------------------------------------------- /h323plus/include/h323t38.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323t38.h -------------------------------------------------------------------------------- /h323plus/include/h323trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h323trans.h -------------------------------------------------------------------------------- /h323plus/include/h341/h341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h341/h341.h -------------------------------------------------------------------------------- /h323plus/include/h341/h341_oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h341/h341_oid.h -------------------------------------------------------------------------------- /h323plus/include/h350/h350.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h350/h350.h -------------------------------------------------------------------------------- /h323plus/include/h450/h4501.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h4501.h -------------------------------------------------------------------------------- /h323plus/include/h450/h45010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h45010.h -------------------------------------------------------------------------------- /h323plus/include/h450/h45011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h45011.h -------------------------------------------------------------------------------- /h323plus/include/h450/h4502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h4502.h -------------------------------------------------------------------------------- /h323plus/include/h450/h4503.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h4503.h -------------------------------------------------------------------------------- /h323plus/include/h450/h4504.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h4504.h -------------------------------------------------------------------------------- /h323plus/include/h450/h4505.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h4505.h -------------------------------------------------------------------------------- /h323plus/include/h450/h4506.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h4506.h -------------------------------------------------------------------------------- /h323plus/include/h450/h4507.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h4507.h -------------------------------------------------------------------------------- /h323plus/include/h450/h4508.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h4508.h -------------------------------------------------------------------------------- /h323plus/include/h450/h4509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h4509.h -------------------------------------------------------------------------------- /h323plus/include/h450/h450pdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h450/h450pdu.h -------------------------------------------------------------------------------- /h323plus/include/h460/h460.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h460/h460.h -------------------------------------------------------------------------------- /h323plus/include/h460/h4601.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h460/h4601.h -------------------------------------------------------------------------------- /h323plus/include/h460/h46018.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h460/h46018.h -------------------------------------------------------------------------------- /h323plus/include/h460/h46019.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h460/h46019.h -------------------------------------------------------------------------------- /h323plus/include/h460/h4609.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h460/h4609.h -------------------------------------------------------------------------------- /h323plus/include/h460/h460p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h460/h460p.h -------------------------------------------------------------------------------- /h323plus/include/h460/h460pres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h460/h460pres.h -------------------------------------------------------------------------------- /h323plus/include/h460/h460tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h460/h460tm.h -------------------------------------------------------------------------------- /h323plus/include/h501.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h501.h -------------------------------------------------------------------------------- /h323plus/include/h501pdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/h501pdu.h -------------------------------------------------------------------------------- /h323plus/include/jitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/jitter.h -------------------------------------------------------------------------------- /h323plus/include/mcspdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/mcspdu.h -------------------------------------------------------------------------------- /h323plus/include/mediafmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/mediafmt.h -------------------------------------------------------------------------------- /h323plus/include/opalvxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/opalvxml.h -------------------------------------------------------------------------------- /h323plus/include/opalwavfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/opalwavfile.h -------------------------------------------------------------------------------- /h323plus/include/peclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/peclient.h -------------------------------------------------------------------------------- /h323plus/include/q922.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/q922.h -------------------------------------------------------------------------------- /h323plus/include/q931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/q931.h -------------------------------------------------------------------------------- /h323plus/include/rfc2833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/rfc2833.h -------------------------------------------------------------------------------- /h323plus/include/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/rtp.h -------------------------------------------------------------------------------- /h323plus/include/rtp2wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/rtp2wav.h -------------------------------------------------------------------------------- /h323plus/include/svcctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/svcctrl.h -------------------------------------------------------------------------------- /h323plus/include/t120proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/t120proto.h -------------------------------------------------------------------------------- /h323plus/include/t38.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/t38.h -------------------------------------------------------------------------------- /h323plus/include/t38proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/t38proto.h -------------------------------------------------------------------------------- /h323plus/include/transports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/transports.h -------------------------------------------------------------------------------- /h323plus/include/x224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/x224.h -------------------------------------------------------------------------------- /h323plus/include/x880.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/include/x880.h -------------------------------------------------------------------------------- /h323plus/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/install-sh -------------------------------------------------------------------------------- /h323plus/mpl-1.0.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/mpl-1.0.htm -------------------------------------------------------------------------------- /h323plus/openh323u.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/openh323u.mak -------------------------------------------------------------------------------- /h323plus/openh323u.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/openh323u.mak.in -------------------------------------------------------------------------------- /h323plus/plugins/Install.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/Install.vdproj -------------------------------------------------------------------------------- /h323plus/plugins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/Makefile -------------------------------------------------------------------------------- /h323plus/plugins/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/Makefile.in -------------------------------------------------------------------------------- /h323plus/plugins/audio/G722.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/audio/G722.zip -------------------------------------------------------------------------------- /h323plus/plugins/audio/Speex/libspeex/.cvsignore: -------------------------------------------------------------------------------- 1 | speex_config_types.h 2 | -------------------------------------------------------------------------------- /h323plus/plugins/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/config.log -------------------------------------------------------------------------------- /h323plus/plugins/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/config.status -------------------------------------------------------------------------------- /h323plus/plugins/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/configure -------------------------------------------------------------------------------- /h323plus/plugins/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/configure.ac -------------------------------------------------------------------------------- /h323plus/plugins/ffmpeg/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/ffmpeg/avcodec.h -------------------------------------------------------------------------------- /h323plus/plugins/ffmpeg/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/ffmpeg/common.h -------------------------------------------------------------------------------- /h323plus/plugins/plugins.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/plugins.sln -------------------------------------------------------------------------------- /h323plus/plugins/plugins_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/plugins/plugins_2005.sln -------------------------------------------------------------------------------- /h323plus/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/Makefile -------------------------------------------------------------------------------- /h323plus/src/asn/OID2.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/OID2.asn -------------------------------------------------------------------------------- /h323plus/src/asn/gccpdu.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/gccpdu.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h225.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h225.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h235.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h235.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h245.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h245.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h248.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h248.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h350_service.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h350_service.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h4501.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h4501.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h45010.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h45010.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h45011.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h45011.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h4502.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h4502.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h4503.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h4503.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h4504.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h4504.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h4505.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h4505.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h4506.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h4506.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h4507.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h4507.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h4508.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h4508.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h4509.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h4509.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h46018.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h46018.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h46019.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h46019.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h4609.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h4609.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h460pres.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h460pres.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h460tm.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h460tm.asn -------------------------------------------------------------------------------- /h323plus/src/asn/h501.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/h501.asn -------------------------------------------------------------------------------- /h323plus/src/asn/mcspdu.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/mcspdu.asn -------------------------------------------------------------------------------- /h323plus/src/asn/t38.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/t38.asn -------------------------------------------------------------------------------- /h323plus/src/asn/x880.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/asn/x880.asn -------------------------------------------------------------------------------- /h323plus/src/channels.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/channels.cxx -------------------------------------------------------------------------------- /h323plus/src/codecs.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/codecs.cxx -------------------------------------------------------------------------------- /h323plus/src/dllmain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/dllmain.cxx -------------------------------------------------------------------------------- /h323plus/src/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/g711.c -------------------------------------------------------------------------------- /h323plus/src/gccpdu.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/gccpdu.cxx -------------------------------------------------------------------------------- /h323plus/src/gkclient.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/gkclient.cxx -------------------------------------------------------------------------------- /h323plus/src/gkserver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/gkserver.cxx -------------------------------------------------------------------------------- /h323plus/src/gnugknat.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/gnugknat.cxx -------------------------------------------------------------------------------- /h323plus/src/guid.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/guid.cxx -------------------------------------------------------------------------------- /h323plus/src/h224.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h224.cxx -------------------------------------------------------------------------------- /h323plus/src/h225_1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h225_1.cxx -------------------------------------------------------------------------------- /h323plus/src/h225_2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h225_2.cxx -------------------------------------------------------------------------------- /h323plus/src/h225ras.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h225ras.cxx -------------------------------------------------------------------------------- /h323plus/src/h230/OID2.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h230/OID2.asn -------------------------------------------------------------------------------- /h323plus/src/h230/OID2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h230/OID2.cxx -------------------------------------------------------------------------------- /h323plus/src/h230/h230.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h230/h230.cxx -------------------------------------------------------------------------------- /h323plus/src/h235.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h235.cxx -------------------------------------------------------------------------------- /h323plus/src/h235_t.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h235_t.cxx -------------------------------------------------------------------------------- /h323plus/src/h235auth.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h235auth.cxx -------------------------------------------------------------------------------- /h323plus/src/h235auth1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h235auth1.cxx -------------------------------------------------------------------------------- /h323plus/src/h235pluginmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h235pluginmgr.cxx -------------------------------------------------------------------------------- /h323plus/src/h245_1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h245_1.cxx -------------------------------------------------------------------------------- /h323plus/src/h245_2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h245_2.cxx -------------------------------------------------------------------------------- /h323plus/src/h245_3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h245_3.cxx -------------------------------------------------------------------------------- /h323plus/src/h248.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h248.cxx -------------------------------------------------------------------------------- /h323plus/src/h281.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h281.cxx -------------------------------------------------------------------------------- /h323plus/src/h323.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323.cxx -------------------------------------------------------------------------------- /h323plus/src/h323.cxx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323.cxx.bak -------------------------------------------------------------------------------- /h323plus/src/h323annexg.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323annexg.cxx -------------------------------------------------------------------------------- /h323plus/src/h323caps.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323caps.cxx -------------------------------------------------------------------------------- /h323plus/src/h323caps.cxx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323caps.cxx.bak -------------------------------------------------------------------------------- /h323plus/src/h323ep.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323ep.cxx -------------------------------------------------------------------------------- /h323plus/src/h323filetransfer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323filetransfer.cxx -------------------------------------------------------------------------------- /h323plus/src/h323h224.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323h224.cxx -------------------------------------------------------------------------------- /h323plus/src/h323neg.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323neg.cxx -------------------------------------------------------------------------------- /h323plus/src/h323pdu.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323pdu.cxx -------------------------------------------------------------------------------- /h323plus/src/h323pluginmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323pluginmgr.cxx -------------------------------------------------------------------------------- /h323plus/src/h323rtp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323rtp.cxx -------------------------------------------------------------------------------- /h323plus/src/h323t120.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323t120.cxx -------------------------------------------------------------------------------- /h323plus/src/h323t38.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323t38.cxx -------------------------------------------------------------------------------- /h323plus/src/h323trans.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h323trans.cxx -------------------------------------------------------------------------------- /h323plus/src/h341/H225-MIB.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h341/H225-MIB.mib -------------------------------------------------------------------------------- /h323plus/src/h341/H245-MIB.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h341/H245-MIB.mib -------------------------------------------------------------------------------- /h323plus/src/h341/H323GW-MIB.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h341/H323GW-MIB.mib -------------------------------------------------------------------------------- /h323plus/src/h341/H323MC-MIB.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h341/H323MC-MIB.mib -------------------------------------------------------------------------------- /h323plus/src/h341/MP-MIB.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h341/MP-MIB.mib -------------------------------------------------------------------------------- /h323plus/src/h341/h341.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h341/h341.cxx -------------------------------------------------------------------------------- /h323plus/src/h350/commURI.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h350/commURI.schema -------------------------------------------------------------------------------- /h323plus/src/h350/h350.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h350/h350.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h4501.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h4501.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h45010.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h45010.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h45011.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h45011.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h4502.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h4502.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h4503.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h4503.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h4504.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h4504.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h4505.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h4505.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h4506.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h4506.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h4507.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h4507.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h4508.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h4508.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h4509.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h4509.cxx -------------------------------------------------------------------------------- /h323plus/src/h450/h450pdu.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h450/h450pdu.cxx -------------------------------------------------------------------------------- /h323plus/src/h460/h4601.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h460/h4601.cxx -------------------------------------------------------------------------------- /h323plus/src/h460/h46018.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h460/h46018.cxx -------------------------------------------------------------------------------- /h323plus/src/h460/h46019.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h460/h46019.cxx -------------------------------------------------------------------------------- /h323plus/src/h460/h4609.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h460/h4609.cxx -------------------------------------------------------------------------------- /h323plus/src/h460/h460p.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h460/h460p.cxx -------------------------------------------------------------------------------- /h323plus/src/h460/h460pres.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h460/h460pres.cxx -------------------------------------------------------------------------------- /h323plus/src/h460/h460tm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h460/h460tm.cxx -------------------------------------------------------------------------------- /h323plus/src/h501.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h501.cxx -------------------------------------------------------------------------------- /h323plus/src/h501pdu.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/h501pdu.cxx -------------------------------------------------------------------------------- /h323plus/src/jitter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/jitter.cxx -------------------------------------------------------------------------------- /h323plus/src/libver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/libver.rc -------------------------------------------------------------------------------- /h323plus/src/mcspdu.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/mcspdu.cxx -------------------------------------------------------------------------------- /h323plus/src/mediafmt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/mediafmt.cxx -------------------------------------------------------------------------------- /h323plus/src/opalvxml.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/opalvxml.cxx -------------------------------------------------------------------------------- /h323plus/src/opalwavfile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/opalwavfile.cxx -------------------------------------------------------------------------------- /h323plus/src/peclient.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/peclient.cxx -------------------------------------------------------------------------------- /h323plus/src/precompile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/precompile.cxx -------------------------------------------------------------------------------- /h323plus/src/q922.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/q922.cxx -------------------------------------------------------------------------------- /h323plus/src/q931.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/q931.cxx -------------------------------------------------------------------------------- /h323plus/src/rfc2833.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/rfc2833.cxx -------------------------------------------------------------------------------- /h323plus/src/rtp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/rtp.cxx -------------------------------------------------------------------------------- /h323plus/src/rtp2wav.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/rtp2wav.cxx -------------------------------------------------------------------------------- /h323plus/src/svcctrl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/svcctrl.cxx -------------------------------------------------------------------------------- /h323plus/src/t120proto.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/t120proto.cxx -------------------------------------------------------------------------------- /h323plus/src/t38.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/t38.cxx -------------------------------------------------------------------------------- /h323plus/src/t38proto.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/t38proto.cxx -------------------------------------------------------------------------------- /h323plus/src/transports.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/transports.cxx -------------------------------------------------------------------------------- /h323plus/src/x224.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/x224.cxx -------------------------------------------------------------------------------- /h323plus/src/x880.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/src/x880.cxx -------------------------------------------------------------------------------- /h323plus/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/version.h -------------------------------------------------------------------------------- /h323plus/videonotes.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/h323plus/videonotes.rtf -------------------------------------------------------------------------------- /myphone3/AudioPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/AudioPage.cpp -------------------------------------------------------------------------------- /myphone3/AudioPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/AudioPage.h -------------------------------------------------------------------------------- /myphone3/Book_AddressPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/Book_AddressPage.cpp -------------------------------------------------------------------------------- /myphone3/Book_AddressPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/Book_AddressPage.h -------------------------------------------------------------------------------- /myphone3/Book_InPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/Book_InPage.cpp -------------------------------------------------------------------------------- /myphone3/Book_InPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/Book_InPage.h -------------------------------------------------------------------------------- /myphone3/Book_MsdPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/Book_MsdPage.cpp -------------------------------------------------------------------------------- /myphone3/Book_MsdPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/Book_MsdPage.h -------------------------------------------------------------------------------- /myphone3/Book_OutPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/Book_OutPage.cpp -------------------------------------------------------------------------------- /myphone3/Book_OutPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/Book_OutPage.h -------------------------------------------------------------------------------- /myphone3/CVideoDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/CVideoDevice.cpp -------------------------------------------------------------------------------- /myphone3/CVideoDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/CVideoDevice.h -------------------------------------------------------------------------------- /myphone3/GKPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/GKPage.cpp -------------------------------------------------------------------------------- /myphone3/GKPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/GKPage.h -------------------------------------------------------------------------------- /myphone3/GeneralPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/GeneralPage.cpp -------------------------------------------------------------------------------- /myphone3/GeneralPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/GeneralPage.h -------------------------------------------------------------------------------- /myphone3/Multilang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/Multilang.cpp -------------------------------------------------------------------------------- /myphone3/Multilang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/Multilang.h -------------------------------------------------------------------------------- /myphone3/MyIndicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyIndicator.cpp -------------------------------------------------------------------------------- /myphone3/MyIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyIndicator.h -------------------------------------------------------------------------------- /myphone3/MyMainMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyMainMenu.cpp -------------------------------------------------------------------------------- /myphone3/MyMainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyMainMenu.h -------------------------------------------------------------------------------- /myphone3/MyPhone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhone.cpp -------------------------------------------------------------------------------- /myphone3/MyPhone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhone.h -------------------------------------------------------------------------------- /myphone3/MyPhone.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhone.rc -------------------------------------------------------------------------------- /myphone3/MyPhone.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhone.sln -------------------------------------------------------------------------------- /myphone3/MyPhone.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhone.vcproj -------------------------------------------------------------------------------- /myphone3/MyPhoneBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhoneBook.cpp -------------------------------------------------------------------------------- /myphone3/MyPhoneBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhoneBook.h -------------------------------------------------------------------------------- /myphone3/MyPhoneDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhoneDlg.cpp -------------------------------------------------------------------------------- /myphone3/MyPhoneDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhoneDlg.h -------------------------------------------------------------------------------- /myphone3/MyPhoneEndPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhoneEndPoint.cpp -------------------------------------------------------------------------------- /myphone3/MyPhoneEndPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPhoneEndPoint.h -------------------------------------------------------------------------------- /myphone3/MyPropertySheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPropertySheet.cpp -------------------------------------------------------------------------------- /myphone3/MyPropertySheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/MyPropertySheet.h -------------------------------------------------------------------------------- /myphone3/NetworkPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/NetworkPage.cpp -------------------------------------------------------------------------------- /myphone3/NetworkPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/NetworkPage.h -------------------------------------------------------------------------------- /myphone3/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/ReadMe.txt -------------------------------------------------------------------------------- /myphone3/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/StdAfx.cpp -------------------------------------------------------------------------------- /myphone3/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/StdAfx.h -------------------------------------------------------------------------------- /myphone3/VisualPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/VisualPage.cpp -------------------------------------------------------------------------------- /myphone3/VisualPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/VisualPage.h -------------------------------------------------------------------------------- /myphone3/XPface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/XPface.xml -------------------------------------------------------------------------------- /myphone3/guiPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/guiPage.cpp -------------------------------------------------------------------------------- /myphone3/guiPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/guiPage.h -------------------------------------------------------------------------------- /myphone3/res/CallAnsIcon16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/CallAnsIcon16.ico -------------------------------------------------------------------------------- /myphone3/res/CallHangIcon16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/CallHangIcon16.ico -------------------------------------------------------------------------------- /myphone3/res/CallIcon16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/CallIcon16.ico -------------------------------------------------------------------------------- /myphone3/res/CallRefIcon16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/CallRefIcon16.ico -------------------------------------------------------------------------------- /myphone3/res/Comp16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/Comp16.ico -------------------------------------------------------------------------------- /myphone3/res/LArrIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/LArrIcon.ico -------------------------------------------------------------------------------- /myphone3/res/MicIcon32soff.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/MicIcon32soff.ico -------------------------------------------------------------------------------- /myphone3/res/MicIcon32son.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/MicIcon32son.ico -------------------------------------------------------------------------------- /myphone3/res/MyOpenH.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/MyOpenH.bmp -------------------------------------------------------------------------------- /myphone3/res/Phone16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/Phone16.ico -------------------------------------------------------------------------------- /myphone3/res/Phone16in.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/Phone16in.ico -------------------------------------------------------------------------------- /myphone3/res/Phone16msd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/Phone16msd.ico -------------------------------------------------------------------------------- /myphone3/res/Phone16out.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/Phone16out.ico -------------------------------------------------------------------------------- /myphone3/res/Phone16up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/Phone16up.ico -------------------------------------------------------------------------------- /myphone3/res/RArrIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/RArrIcon.ico -------------------------------------------------------------------------------- /myphone3/res/SndIcon32soff.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/SndIcon32soff.ico -------------------------------------------------------------------------------- /myphone3/res/SndIcon32son.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/SndIcon32son.ico -------------------------------------------------------------------------------- /myphone3/res/UsersIcon16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/UsersIcon16.ico -------------------------------------------------------------------------------- /myphone3/res/ohico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/ohico.ico -------------------------------------------------------------------------------- /myphone3/res/ohlogoqcif.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/ohlogoqcif.bmp -------------------------------------------------------------------------------- /myphone3/res/pnphide.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/pnphide.ico -------------------------------------------------------------------------------- /myphone3/res/pnpshow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/pnpshow.ico -------------------------------------------------------------------------------- /myphone3/res/testicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/res/testicon.ico -------------------------------------------------------------------------------- /myphone3/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/myphone3/resource.h -------------------------------------------------------------------------------- /oslec/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/oslec/ReadMe.txt -------------------------------------------------------------------------------- /oslec/bit_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/oslec/bit_operations.h -------------------------------------------------------------------------------- /oslec/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/oslec/echo.c -------------------------------------------------------------------------------- /oslec/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/oslec/echo.h -------------------------------------------------------------------------------- /oslec/fir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/oslec/fir.h -------------------------------------------------------------------------------- /oslec/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/oslec/inttypes.h -------------------------------------------------------------------------------- /oslec/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/oslec/mmx.h -------------------------------------------------------------------------------- /oslec/oslec.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/oslec/oslec.sln -------------------------------------------------------------------------------- /oslec/oslec.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/oslec/oslec.vcproj -------------------------------------------------------------------------------- /oslec/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/oslec/stdint.h -------------------------------------------------------------------------------- /ptlib/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ChangeLog.txt -------------------------------------------------------------------------------- /ptlib/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/History.txt -------------------------------------------------------------------------------- /ptlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/Makefile -------------------------------------------------------------------------------- /ptlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/Makefile.in -------------------------------------------------------------------------------- /ptlib/README_VXWORKS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/README_VXWORKS.txt -------------------------------------------------------------------------------- /ptlib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ReadMe.txt -------------------------------------------------------------------------------- /ptlib/ReadMe_QOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ReadMe_QOS.txt -------------------------------------------------------------------------------- /ptlib/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/config.guess -------------------------------------------------------------------------------- /ptlib/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/config.sub -------------------------------------------------------------------------------- /ptlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/configure -------------------------------------------------------------------------------- /ptlib/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/configure.ac -------------------------------------------------------------------------------- /ptlib/configure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/configure.exe -------------------------------------------------------------------------------- /ptlib/include/ptbuildopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptbuildopts.h -------------------------------------------------------------------------------- /ptlib/include/ptbuildopts.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptbuildopts.h.in -------------------------------------------------------------------------------- /ptlib/include/ptclib/asnber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/asnber.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/asner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/asner.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/asnper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/asnper.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/asnxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/asnxer.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/cypher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/cypher.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/delaychan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/delaychan.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/dtmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/dtmf.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/enum.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/ftp.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/guid.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/html.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/http.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/httpform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/httpform.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/httpsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/httpsvc.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/inetmail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/inetmail.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/inetprot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/inetprot.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/ipacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/ipacl.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/memfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/memfile.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/mime.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/modem.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/paec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/paec.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/paec.h.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/paec.h.bak -------------------------------------------------------------------------------- /ptlib/include/ptclib/pasn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pasn.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pdns.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pils.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pldap.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pnat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pnat.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/podbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/podbc.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/psasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/psasl.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/psnmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/psnmp.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/psoap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/psoap.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/psockbun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/psockbun.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pspeexaec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pspeexaec.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pssl.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pstun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pstun.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/ptts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/ptts.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pvfiledev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pvfiledev.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pvidfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pvidfile.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pwavfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pwavfile.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pxml.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pxmlrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pxmlrpc.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/pxmlrpcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/pxmlrpcs.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/qchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/qchannel.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/random.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/rfc1155.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/rfc1155.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/shttpsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/shttpsvc.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/snmp.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/sockagg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/sockagg.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/socks.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/telnet.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/url.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/vsdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/vsdl.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/vxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/vxml.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/xmpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/xmpp.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/xmpp_c2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/xmpp_c2s.h -------------------------------------------------------------------------------- /ptlib/include/ptclib/xmpp_muc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptclib/xmpp_muc.h -------------------------------------------------------------------------------- /ptlib/include/ptlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/MacMainIf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/MacMainIf.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/args.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/array.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/channel.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/conchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/conchan.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/config.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/contain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/contain.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/contain.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/contain.inl -------------------------------------------------------------------------------- /ptlib/include/ptlib/critsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/critsec.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/devplugin.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ptlib/include/ptlib/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/dict.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/dynalink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/dynalink.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/ethsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/ethsock.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/file.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/filepath.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/icmpsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/icmpsock.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/indchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/indchan.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/int64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/int64.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/ipdsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/ipdsock.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/ipsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/ipsock.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/ipxsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/ipxsock.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/lists.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/mail.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/msos/ptlib/PODBC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ptlib/include/ptlib/msos/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/msos/unistd.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/mutex.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/notifier.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/object.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/osutil.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/osutil.inl -------------------------------------------------------------------------------- /ptlib/include/ptlib/pdirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/pdirect.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/pfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/pfactory.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/pipechan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/pipechan.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/plugin.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/pluginmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/pluginmgr.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/pprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/pprocess.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/psharedptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/psharedptr.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/pstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/pstring.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/psync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/psync.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/ptime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/ptime.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/qos.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/remconn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/remconn.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/safecoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/safecoll.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/semaphor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/semaphor.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/serchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/serchan.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/sfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/sfile.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/smartptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/smartptr.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/socket.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/sockets.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/sound.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/spxsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/spxsock.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/svcproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/svcproc.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/syncpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/syncpoint.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/syncthrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/syncthrd.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/tcpsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/tcpsock.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/textfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/textfile.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/thread.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/timeint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/timeint.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/timer.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/udpsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/udpsock.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/vconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/vconvert.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/video.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/videoio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/videoio.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/cevfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/cevfw.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/ctype.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/errno.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/fcntl.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/io.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/ios.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/lisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/lisp.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/nucpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/nucpp.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/share.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/snmp.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/time.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wince/wsipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wince/wsipx.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/Snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/Snmp.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/cevfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/cevfw.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/crtdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/crtdbg.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/direct.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/errno.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/fcntl.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/io.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/nspapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/nspapi.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/process.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/share.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/signal.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/stdlibx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/stdlibx.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/sys/stat.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/time.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/wsipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/wsipx.h -------------------------------------------------------------------------------- /ptlib/include/ptlib/wm/wsnwlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/include/ptlib/wm/wsnwlink.h -------------------------------------------------------------------------------- /ptlib/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/install-sh -------------------------------------------------------------------------------- /ptlib/make/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/make/common.mak -------------------------------------------------------------------------------- /ptlib/make/lib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/make/lib.mak -------------------------------------------------------------------------------- /ptlib/make/plugins.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/make/plugins.mak -------------------------------------------------------------------------------- /ptlib/make/ptbuildopts.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/make/ptbuildopts.mak -------------------------------------------------------------------------------- /ptlib/make/ptbuildopts.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/make/ptbuildopts.mak.in -------------------------------------------------------------------------------- /ptlib/make/ptlib-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/make/ptlib-config -------------------------------------------------------------------------------- /ptlib/make/ptlib-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/make/ptlib-config.in -------------------------------------------------------------------------------- /ptlib/make/ptlib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/make/ptlib.mak -------------------------------------------------------------------------------- /ptlib/make/unix.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/make/unix.mak -------------------------------------------------------------------------------- /ptlib/mpl-1.0.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/mpl-1.0.htm -------------------------------------------------------------------------------- /ptlib/msvc6_upgrade.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/msvc6_upgrade.bat -------------------------------------------------------------------------------- /ptlib/plugins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/plugins/Makefile -------------------------------------------------------------------------------- /ptlib/plugins/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/plugins/Makefile.in -------------------------------------------------------------------------------- /ptlib/plugins/ReadMe.txt: -------------------------------------------------------------------------------- 1 | To be written 2 | -------------------------------------------------------------------------------- /ptlib/plugins/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/plugins/config.log -------------------------------------------------------------------------------- /ptlib/plugins/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/plugins/config.status -------------------------------------------------------------------------------- /ptlib/plugins/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/plugins/configure -------------------------------------------------------------------------------- /ptlib/plugins/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/plugins/configure.in -------------------------------------------------------------------------------- /ptlib/plugins/sound_alsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/plugins/sound_alsa/Makefile -------------------------------------------------------------------------------- /ptlib/plugins/sound_esd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/plugins/sound_esd/Makefile -------------------------------------------------------------------------------- /ptlib/plugins/sound_oss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/plugins/sound_oss/Makefile -------------------------------------------------------------------------------- /ptlib/ptlib.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib.dsw -------------------------------------------------------------------------------- /ptlib/ptlib.dxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib.dxy -------------------------------------------------------------------------------- /ptlib/ptlib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib.mak -------------------------------------------------------------------------------- /ptlib/ptlib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib.sln -------------------------------------------------------------------------------- /ptlib/ptlib.vcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib.vcp -------------------------------------------------------------------------------- /ptlib/ptlib.wpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib.wpj -------------------------------------------------------------------------------- /ptlib/ptlib.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib.wsp -------------------------------------------------------------------------------- /ptlib/ptlib_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib_2005.sln -------------------------------------------------------------------------------- /ptlib/ptlib_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib_2010.sln -------------------------------------------------------------------------------- /ptlib/ptlib_cfg.dxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib_cfg.dxy -------------------------------------------------------------------------------- /ptlib/ptlib_samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib_samples.sln -------------------------------------------------------------------------------- /ptlib/ptlib_samples_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlib_samples_2005.sln -------------------------------------------------------------------------------- /ptlib/ptlibce.vcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlibce.vcp -------------------------------------------------------------------------------- /ptlib/ptlibce.vcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/ptlibce.vcw -------------------------------------------------------------------------------- /ptlib/samples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/Makefile -------------------------------------------------------------------------------- /ptlib/samples/ODBC/odbctest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ODBC/odbctest.cxx -------------------------------------------------------------------------------- /ptlib/samples/ODBC/odbctest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ODBC/odbctest.dsp -------------------------------------------------------------------------------- /ptlib/samples/ODBC/odbctest.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ODBC/odbctest.dsw -------------------------------------------------------------------------------- /ptlib/samples/ODBC/odbctest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ODBC/odbctest.sln -------------------------------------------------------------------------------- /ptlib/samples/ODBC/test.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ODBC/test.mdb -------------------------------------------------------------------------------- /ptlib/samples/ThreadSafe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ThreadSafe/Makefile -------------------------------------------------------------------------------- /ptlib/samples/ThreadSafe/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ThreadSafe/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/ThreadSafe/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ThreadSafe/main.h -------------------------------------------------------------------------------- /ptlib/samples/address/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/address/Makefile -------------------------------------------------------------------------------- /ptlib/samples/address/local.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/address/local.cxx -------------------------------------------------------------------------------- /ptlib/samples/aggtest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/aggtest/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/aggtest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/aggtest/main.h -------------------------------------------------------------------------------- /ptlib/samples/aggtest/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/aggtest/version.h -------------------------------------------------------------------------------- /ptlib/samples/audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/audio/Makefile -------------------------------------------------------------------------------- /ptlib/samples/audio/audio.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/audio/audio.cxx -------------------------------------------------------------------------------- /ptlib/samples/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/audio/audio.h -------------------------------------------------------------------------------- /ptlib/samples/audio/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/audio/version.h -------------------------------------------------------------------------------- /ptlib/samples/dnstest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/dnstest/Makefile -------------------------------------------------------------------------------- /ptlib/samples/dnstest/dnstest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/dnstest/dnstest.dsp -------------------------------------------------------------------------------- /ptlib/samples/dnstest/dnstest.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/dnstest/dnstest.dsw -------------------------------------------------------------------------------- /ptlib/samples/dnstest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/dnstest/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/dnstest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/dnstest/main.h -------------------------------------------------------------------------------- /ptlib/samples/dtmftest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/dtmftest/Makefile -------------------------------------------------------------------------------- /ptlib/samples/dtmftest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/dtmftest/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/dtmftest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/dtmftest/main.h -------------------------------------------------------------------------------- /ptlib/samples/dtmftest/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/dtmftest/version.h -------------------------------------------------------------------------------- /ptlib/samples/emailtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/emailtest/Makefile -------------------------------------------------------------------------------- /ptlib/samples/emailtest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/emailtest/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/emailtest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/emailtest/main.h -------------------------------------------------------------------------------- /ptlib/samples/emailtest/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/emailtest/version.h -------------------------------------------------------------------------------- /ptlib/samples/factory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/factory/Makefile -------------------------------------------------------------------------------- /ptlib/samples/factory/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/factory/abstract.h -------------------------------------------------------------------------------- /ptlib/samples/factory/factory.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/factory/factory.dsp -------------------------------------------------------------------------------- /ptlib/samples/factory/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/factory/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/factory/solid.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/factory/solid.cxx -------------------------------------------------------------------------------- /ptlib/samples/find_ip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/find_ip/Makefile -------------------------------------------------------------------------------- /ptlib/samples/find_ip/find_ip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/find_ip/find_ip.cxx -------------------------------------------------------------------------------- /ptlib/samples/find_ip/find_ip.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/find_ip/find_ip.dsp -------------------------------------------------------------------------------- /ptlib/samples/ipv6test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ipv6test/Makefile -------------------------------------------------------------------------------- /ptlib/samples/ipv6test/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ipv6test/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/ipv6test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ipv6test/main.h -------------------------------------------------------------------------------- /ptlib/samples/ipv6test/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ipv6test/version.h -------------------------------------------------------------------------------- /ptlib/samples/ldaptest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ldaptest/Makefile -------------------------------------------------------------------------------- /ptlib/samples/ldaptest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ldaptest/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/ldaptest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ldaptest/main.h -------------------------------------------------------------------------------- /ptlib/samples/ldaptest/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ldaptest/version.h -------------------------------------------------------------------------------- /ptlib/samples/md5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/md5/Makefile -------------------------------------------------------------------------------- /ptlib/samples/md5/encrypt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/md5/encrypt.cxx -------------------------------------------------------------------------------- /ptlib/samples/netif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/netif/Makefile -------------------------------------------------------------------------------- /ptlib/samples/netif/netif.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/netif/netif.cxx -------------------------------------------------------------------------------- /ptlib/samples/ptimer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ptimer/Makefile -------------------------------------------------------------------------------- /ptlib/samples/ptimer/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ptimer/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/ptimer/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ptimer/main.h -------------------------------------------------------------------------------- /ptlib/samples/ptimer/precompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ptimer/precompile.h -------------------------------------------------------------------------------- /ptlib/samples/ptimer/ptimer.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ptimer/ptimer.dsp -------------------------------------------------------------------------------- /ptlib/samples/ptimer/ptimer.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ptimer/ptimer.dsw -------------------------------------------------------------------------------- /ptlib/samples/ptimer/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/ptimer/version.h -------------------------------------------------------------------------------- /ptlib/samples/pxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/pxml/Makefile -------------------------------------------------------------------------------- /ptlib/samples/pxml/PxmlTest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/pxml/PxmlTest.dsp -------------------------------------------------------------------------------- /ptlib/samples/pxml/PxmlTest.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/pxml/PxmlTest.dsw -------------------------------------------------------------------------------- /ptlib/samples/pxml/cfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/pxml/cfg.txt -------------------------------------------------------------------------------- /ptlib/samples/pxml/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/pxml/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/pxml/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/pxml/main.h -------------------------------------------------------------------------------- /ptlib/samples/pxml/precompile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/pxml/precompile.cxx -------------------------------------------------------------------------------- /ptlib/samples/queue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/queue/Makefile -------------------------------------------------------------------------------- /ptlib/samples/queue/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/queue/Readme -------------------------------------------------------------------------------- /ptlib/samples/queue/docs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/queue/docs.cfg -------------------------------------------------------------------------------- /ptlib/samples/queue/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/queue/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/queue/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/queue/main.h -------------------------------------------------------------------------------- /ptlib/samples/queue/precompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/queue/precompile.h -------------------------------------------------------------------------------- /ptlib/samples/queue/queue.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/queue/queue.dsp -------------------------------------------------------------------------------- /ptlib/samples/queue/queue.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/queue/queue.dsw -------------------------------------------------------------------------------- /ptlib/samples/queue/queue.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/queue/queue.vcproj -------------------------------------------------------------------------------- /ptlib/samples/queue/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/queue/version.h -------------------------------------------------------------------------------- /ptlib/samples/safetest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/safetest/Makefile -------------------------------------------------------------------------------- /ptlib/samples/safetest/docs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/safetest/docs.cfg -------------------------------------------------------------------------------- /ptlib/samples/safetest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/safetest/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/safetest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/safetest/main.h -------------------------------------------------------------------------------- /ptlib/samples/safetest/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/safetest/version.h -------------------------------------------------------------------------------- /ptlib/samples/serial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/serial/Makefile -------------------------------------------------------------------------------- /ptlib/samples/serial/serial.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/serial/serial.cxx -------------------------------------------------------------------------------- /ptlib/samples/sortedlist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/sortedlist/Makefile -------------------------------------------------------------------------------- /ptlib/samples/strtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/strtest/Makefile -------------------------------------------------------------------------------- /ptlib/samples/strtest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/strtest/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/stunclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/stunclient/Makefile -------------------------------------------------------------------------------- /ptlib/samples/stunclient/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/stunclient/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/stunclient/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/stunclient/main.h -------------------------------------------------------------------------------- /ptlib/samples/thread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/thread/Makefile -------------------------------------------------------------------------------- /ptlib/samples/thread/thread.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/thread/thread.cxx -------------------------------------------------------------------------------- /ptlib/samples/threadex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/threadex/Makefile -------------------------------------------------------------------------------- /ptlib/samples/threadex/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/threadex/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/threadex/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/threadex/main.h -------------------------------------------------------------------------------- /ptlib/samples/threadex/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/threadex/version.h -------------------------------------------------------------------------------- /ptlib/samples/timing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/timing/Makefile -------------------------------------------------------------------------------- /ptlib/samples/timing/timing.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/timing/timing.cxx -------------------------------------------------------------------------------- /ptlib/samples/timing/timing.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/timing/timing.dsp -------------------------------------------------------------------------------- /ptlib/samples/vidtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/vidtest/Makefile -------------------------------------------------------------------------------- /ptlib/samples/vidtest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/vidtest/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/vidtest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/vidtest/main.h -------------------------------------------------------------------------------- /ptlib/samples/vidtest/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/vidtest/version.h -------------------------------------------------------------------------------- /ptlib/samples/vidtest/vidtest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/vidtest/vidtest.dsp -------------------------------------------------------------------------------- /ptlib/samples/vidtest/vidtest.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/vidtest/vidtest.dsw -------------------------------------------------------------------------------- /ptlib/samples/vxmltest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/vxmltest/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/vxmltest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/vxmltest/main.h -------------------------------------------------------------------------------- /ptlib/samples/vxmltest/root.vxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/vxmltest/root.vxml -------------------------------------------------------------------------------- /ptlib/samples/wavfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/wavfile/Makefile -------------------------------------------------------------------------------- /ptlib/samples/wavfile/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/wavfile/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/wavfile/wavfile.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/wavfile/wavfile.dsp -------------------------------------------------------------------------------- /ptlib/samples/xmlrpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmlrpc/Makefile -------------------------------------------------------------------------------- /ptlib/samples/xmlrpc/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmlrpc/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/xmlrpc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmlrpc/main.h -------------------------------------------------------------------------------- /ptlib/samples/xmlrpc/xmlrpc.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmlrpc/xmlrpc.dsp -------------------------------------------------------------------------------- /ptlib/samples/xmlrpc/xmlrpc.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmlrpc/xmlrpc.dsw -------------------------------------------------------------------------------- /ptlib/samples/xmlrpcsrvr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmlrpcsrvr/Makefile -------------------------------------------------------------------------------- /ptlib/samples/xmlrpcsrvr/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmlrpcsrvr/custom.h -------------------------------------------------------------------------------- /ptlib/samples/xmlrpcsrvr/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmlrpcsrvr/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/xmlrpcsrvr/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmlrpcsrvr/main.h -------------------------------------------------------------------------------- /ptlib/samples/xmppconsole/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmppconsole/README -------------------------------------------------------------------------------- /ptlib/samples/xmppconsole/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmppconsole/main.h -------------------------------------------------------------------------------- /ptlib/samples/xmpptest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmpptest/Makefile -------------------------------------------------------------------------------- /ptlib/samples/xmpptest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmpptest/ReadMe.txt -------------------------------------------------------------------------------- /ptlib/samples/xmpptest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmpptest/main.cxx -------------------------------------------------------------------------------- /ptlib/samples/xmpptest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/samples/xmpptest/main.h -------------------------------------------------------------------------------- /ptlib/src/ptclib/asnber.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/asnber.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/asner.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/asner.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/asnper.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/asnper.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/asnxer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/asnxer.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/cypher.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/cypher.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/delaychan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/delaychan.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/dtmf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/dtmf.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/enum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/enum.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/ftp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/ftp.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/ftpclnt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/ftpclnt.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/ftpsrvr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/ftpsrvr.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/guid.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/guid.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/html.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/html.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/http.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/http.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/httpclnt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/httpclnt.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/httpform.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/httpform.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/httpsrvr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/httpsrvr.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/httpsvc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/httpsvc.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/inetmail.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/inetmail.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/inetprot.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/inetprot.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/ipacl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/ipacl.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/memfile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/memfile.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/modem.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/modem.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pasn.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pasn.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pdns.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pdns.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pils.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pldap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pldap.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pnat.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pnat.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/podbc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/podbc.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/psasl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/psasl.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/psnmp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/psnmp.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/psoap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/psoap.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/psockbun.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/psockbun.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pssl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pssl.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pstun.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pstun.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/ptts.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/ptts.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pvfiledev.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pvfiledev.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pvidfile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pvidfile.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pwavfile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pwavfile.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pwavfiledev.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pwavfiledev.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pxml.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pxml.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pxmlrpc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pxmlrpc.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/pxmlrpcs.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/pxmlrpcs.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/qchannel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/qchannel.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/random.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/random.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/rfc1155.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/rfc1155.asn -------------------------------------------------------------------------------- /ptlib/src/ptclib/rfc1155.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/rfc1155.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/shttpsvc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/shttpsvc.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/snmp.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/snmp.asn -------------------------------------------------------------------------------- /ptlib/src/ptclib/snmp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/snmp.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/snmpclnt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/snmpclnt.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/snmpserv.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/snmpserv.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/sockagg.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/sockagg.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/socks.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/socks.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/speex_echo/mdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/speex_echo/mdf.c -------------------------------------------------------------------------------- /ptlib/src/ptclib/telnet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/telnet.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/udp.h -------------------------------------------------------------------------------- /ptlib/src/ptclib/vsdl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/vsdl.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/vxml.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/vxml.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/xmpp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/xmpp.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/xmpp_c2s.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/xmpp_c2s.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/xmpp_muc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/xmpp_muc.cxx -------------------------------------------------------------------------------- /ptlib/src/ptclib/xmpp_roster.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptclib/xmpp_roster.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/common/getdate.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/common/getdate.y -------------------------------------------------------------------------------- /ptlib/src/ptlib/common/object.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/common/object.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/common/paec.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/common/paec.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/common/ptime.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/common/ptime.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/common/qos.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/common/qos.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/common/regex/mkh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/common/regex/mkh -------------------------------------------------------------------------------- /ptlib/src/ptlib/common/serial.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/common/serial.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/common/sfile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/common/sfile.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/common/sound.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/common/sound.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/common/tinyjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/common/tinyjpeg.h -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/Console.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/Console.dsp -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/Makefile -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/PTLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/PTLib.dsp -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/PTLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/PTLib.vcproj -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/assert.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/assert.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/dllmain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/dllmain.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/dossock.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/dossock.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/doswin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/doswin.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/epacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/epacket.h -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/ethsock.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/ethsock.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/icmp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/icmp.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/libver.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/libver.aps -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/libver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/libver.rc -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/mail.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/mail.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/msdos.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/msdos.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/mswin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/mswin.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/pipe.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/pipe.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/ptlib.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/ptlib.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/remconn.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/remconn.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/resource.h -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/svcproc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/svcproc.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/vfw.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/vfw.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/vscreen.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/vscreen.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/win32.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/win32.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/wincfg.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/wincfg.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/msos/winsock.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/msos/winsock.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/Makefile -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/assert.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/assert.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/beaudio.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/beaudio.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/channel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/channel.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/config.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/config.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/ossaix.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/ossaix.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/osutil.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/osutil.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/pipechan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/pipechan.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/qsa.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/qsa.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/remconn.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/remconn.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/serchan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/serchan.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/shmvideo.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/shmvideo.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/socket.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/socket.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/sunaudio.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/sunaudio.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/svcproc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/svcproc.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/switch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/switch.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/tlib.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/tlib.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/tlibbe.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/tlibbe.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/tlibthrd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/tlibthrd.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/tlibvx.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/tlibvx.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/udll.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/udll.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/uerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/uerror.h -------------------------------------------------------------------------------- /ptlib/src/ptlib/unix/uicmp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/unix/uicmp.cxx -------------------------------------------------------------------------------- /ptlib/src/ptlib/wm/cevfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/wm/cevfw.cpp -------------------------------------------------------------------------------- /ptlib/src/ptlib/wm/stdlibx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/wm/stdlibx.cpp -------------------------------------------------------------------------------- /ptlib/src/ptlib/wm/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/src/ptlib/wm/time.cpp -------------------------------------------------------------------------------- /ptlib/tools/StringTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/tools/StringTest/Makefile -------------------------------------------------------------------------------- /ptlib/tools/StringTest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/tools/StringTest/main.cxx -------------------------------------------------------------------------------- /ptlib/tools/StringTest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/tools/StringTest/main.h -------------------------------------------------------------------------------- /ptlib/tools/asnparser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/tools/asnparser/Makefile -------------------------------------------------------------------------------- /ptlib/tools/asnparser/asn_lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/tools/asnparser/asn_lex.l -------------------------------------------------------------------------------- /ptlib/tools/asnparser/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/tools/asnparser/main.cxx -------------------------------------------------------------------------------- /ptlib/tools/asnparser/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/tools/asnparser/main.h -------------------------------------------------------------------------------- /ptlib/tools/asnparser/precompile.cpp: -------------------------------------------------------------------------------- 1 | // precompile.cpp 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /ptlib/tools/plugintest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/tools/plugintest/Makefile -------------------------------------------------------------------------------- /ptlib/tools/plugintest/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/tools/plugintest/main.cxx -------------------------------------------------------------------------------- /ptlib/tools/plugintest/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/tools/plugintest/main.h -------------------------------------------------------------------------------- /ptlib/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/ptlib/version.h -------------------------------------------------------------------------------- /speex-1.2rc1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/AUTHORS -------------------------------------------------------------------------------- /speex-1.2rc1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/COPYING -------------------------------------------------------------------------------- /speex-1.2rc1/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/ChangeLog -------------------------------------------------------------------------------- /speex-1.2rc1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/INSTALL -------------------------------------------------------------------------------- /speex-1.2rc1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/Makefile.am -------------------------------------------------------------------------------- /speex-1.2rc1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/Makefile.in -------------------------------------------------------------------------------- /speex-1.2rc1/NEWS: -------------------------------------------------------------------------------- 1 | 2002/02/13: Creation of the "Speex" project 2 | -------------------------------------------------------------------------------- /speex-1.2rc1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/README -------------------------------------------------------------------------------- /speex-1.2rc1/README.TI-DSP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/README.TI-DSP -------------------------------------------------------------------------------- /speex-1.2rc1/README.blackfin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/README.blackfin -------------------------------------------------------------------------------- /speex-1.2rc1/README.symbian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/README.symbian -------------------------------------------------------------------------------- /speex-1.2rc1/Speex.kdevelop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/Speex.kdevelop -------------------------------------------------------------------------------- /speex-1.2rc1/Speex.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/Speex.spec -------------------------------------------------------------------------------- /speex-1.2rc1/Speex.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/Speex.spec.in -------------------------------------------------------------------------------- /speex-1.2rc1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/TODO -------------------------------------------------------------------------------- /speex-1.2rc1/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/acinclude.m4 -------------------------------------------------------------------------------- /speex-1.2rc1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/aclocal.m4 -------------------------------------------------------------------------------- /speex-1.2rc1/bin/aec_test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/bin/aec_test.wav -------------------------------------------------------------------------------- /speex-1.2rc1/bin/testecho.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/bin/testecho.exe -------------------------------------------------------------------------------- /speex-1.2rc1/bin/testecho.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/bin/testecho.ilk -------------------------------------------------------------------------------- /speex-1.2rc1/bin/ttt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/bin/ttt.wav -------------------------------------------------------------------------------- /speex-1.2rc1/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/config.guess -------------------------------------------------------------------------------- /speex-1.2rc1/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/config.h.in -------------------------------------------------------------------------------- /speex-1.2rc1/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/config.sub -------------------------------------------------------------------------------- /speex-1.2rc1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/configure -------------------------------------------------------------------------------- /speex-1.2rc1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/configure.ac -------------------------------------------------------------------------------- /speex-1.2rc1/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/depcomp -------------------------------------------------------------------------------- /speex-1.2rc1/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/doc/Makefile.am -------------------------------------------------------------------------------- /speex-1.2rc1/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/doc/Makefile.in -------------------------------------------------------------------------------- /speex-1.2rc1/doc/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/doc/manual.pdf -------------------------------------------------------------------------------- /speex-1.2rc1/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = speex 3 | -------------------------------------------------------------------------------- /speex-1.2rc1/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/install-sh -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/arch.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/bits.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/buffer.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/fftwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/fftwrap.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/fftwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/fftwrap.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/filters.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/filters.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/jitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/jitter.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/lpc.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/lpc.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/lsp.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/lsp.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/ltp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/ltp.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/ltp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/ltp.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/ltp_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/ltp_sse.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/mdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/mdf.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/modes.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/modes.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/nb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/nb_celp.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/nb_celp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/nb_celp.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/sb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/sb_celp.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/sb_celp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/sb_celp.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/scal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/scal.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/smallft.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/smallft.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/speex.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/stereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/stereo.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/testenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/testenc.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/vbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/vbr.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/vbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/vbr.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/vq.c -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/vq.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/vq_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/vq_arm4.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/vq_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/vq_bfin.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/vq_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/vq_sse.h -------------------------------------------------------------------------------- /speex-1.2rc1/libspeex/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/libspeex/window.c -------------------------------------------------------------------------------- /speex-1.2rc1/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/ltmain.sh -------------------------------------------------------------------------------- /speex-1.2rc1/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/missing -------------------------------------------------------------------------------- /speex-1.2rc1/speex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/speex.m4 -------------------------------------------------------------------------------- /speex-1.2rc1/speex.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/speex.pc.in -------------------------------------------------------------------------------- /speex-1.2rc1/speexdsp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/speexdsp.pc.in -------------------------------------------------------------------------------- /speex-1.2rc1/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/Makefile.am -------------------------------------------------------------------------------- /speex-1.2rc1/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/Makefile.in -------------------------------------------------------------------------------- /speex-1.2rc1/src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/getopt.c -------------------------------------------------------------------------------- /speex-1.2rc1/src/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/getopt1.c -------------------------------------------------------------------------------- /speex-1.2rc1/src/getopt_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/getopt_win.h -------------------------------------------------------------------------------- /speex-1.2rc1/src/skeleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/skeleton.c -------------------------------------------------------------------------------- /speex-1.2rc1/src/skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/skeleton.h -------------------------------------------------------------------------------- /speex-1.2rc1/src/speexdec.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/speexdec.1 -------------------------------------------------------------------------------- /speex-1.2rc1/src/speexdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/speexdec.c -------------------------------------------------------------------------------- /speex-1.2rc1/src/speexenc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/speexenc.1 -------------------------------------------------------------------------------- /speex-1.2rc1/src/speexenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/speexenc.c -------------------------------------------------------------------------------- /speex-1.2rc1/src/wav_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/wav_io.c -------------------------------------------------------------------------------- /speex-1.2rc1/src/wav_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/wav_io.h -------------------------------------------------------------------------------- /speex-1.2rc1/src/wave_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/wave_out.c -------------------------------------------------------------------------------- /speex-1.2rc1/src/wave_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/src/wave_out.h -------------------------------------------------------------------------------- /speex-1.2rc1/symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/symbian/bld.inf -------------------------------------------------------------------------------- /speex-1.2rc1/symbian/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/symbian/config.h -------------------------------------------------------------------------------- /speex-1.2rc1/symbian/speex.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/symbian/speex.mmp -------------------------------------------------------------------------------- /speex-1.2rc1/ti/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/ti/Makefile.am -------------------------------------------------------------------------------- /speex-1.2rc1/ti/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/ti/Makefile.in -------------------------------------------------------------------------------- /speex-1.2rc1/ti/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/ti/config.h -------------------------------------------------------------------------------- /speex-1.2rc1/win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/win32/Makefile.am -------------------------------------------------------------------------------- /speex-1.2rc1/win32/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/win32/Makefile.in -------------------------------------------------------------------------------- /speex-1.2rc1/win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/win32/config.h -------------------------------------------------------------------------------- /speex-1.2rc1/win32/libspeex.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/win32/libspeex.def -------------------------------------------------------------------------------- /speex-1.2rc1/win32/speex.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muggot/myphone3/HEAD/speex-1.2rc1/win32/speex.iss --------------------------------------------------------------------------------