1. 804ff0a Added --duration option in PJSUA to limit the maximum duration of calls. Also added pjsip_generic_string_hdr_init2() to initialize temporary SIP header that is allocated in the stack. by Benny Prijono · 18 years ago
  2. 4093f7c Fixed bug in client REGISTER: crashed when application calls pjsip_regc_register()/pjsip_regc_send() while previous REGISTER request has not been answered with final response. This occurs for example when pjsip_regc_register() is called in quick successions. by Benny Prijono · 18 years ago
  3. ea4296c SIP methods are now compared case-sensitively (previously it was case-insensitive) because the standard says so. There's no ill effect of the old behavior, but it's still important that we do things according to what the standard says. by Benny Prijono · 18 years ago
  4. 736d0f7 Fixed bug in event subscription: for event subscriptions established by non-SUBSCRIBE method (such as REFER), the method to refresh/unsubscribe subscription would still be SUBSCRIBE, not the initial method to establish subscription. There's no known ill effect of this bug (that I know of), but it's still important that this one has been fixed. by Benny Prijono · 18 years ago
  5. 4e5519f Fix STUN client when handling unknown attributes. Before it failed the transaction, now it simply just ignores it. by Benny Prijono · 18 years ago
  6. abd2ae9 Updated README.txt again by Benny Prijono · 18 years ago
  7. c1fe23d Set default CFLAGS in configure to -O2 -DNDEBUG by Benny Prijono · 18 years ago
  8. 369efaa Fixed mutex leaking in Linux: pj_mutex_destroy() will fail to destroy the mutex if the mutex is currently being held. Unfortunately it is quite common in the libraries to acquire the mutex first before destroying it, causing mutexes to leak. The solution is to retry unlocking/destroying the mutex several times (currently 4) while pthread_mutex_destroy() returns EBUSY by Benny Prijono · 18 years ago
  9. c341683 Updated README.txt from using.htm by Benny Prijono · 18 years ago
  10. 5c7e10b Added EOF callback and get_size() in pjmedia_mem_capture port. by Benny Prijono · 18 years ago
  11. 5f6ef96 Fixed bug in media UDP transport: when transport is created with create(), no IP address is given. This caused get_info() to return 0.0.0.0 as the transport address. by Benny Prijono · 18 years ago
  12. 88dac53 Added EOF callback in memory playback port. by Benny Prijono · 18 years ago
  13. 65b395f Fixed bug in resample port: put/get buffers are allocated with the wrong size (thanks Danya) by Benny Prijono · 18 years ago
  14. 8a36a03 Now officially use the autoconf configure script; the legacy configure script is renamed to configure-legacy by Benny Prijono · 18 years ago
  15. c390707 Renamed configure to configure-legacy by Benny Prijono · 18 years ago
  16. 1d97162 Fixed autoconf in various other systems (IA64, x86_64, BSD/FreeBSD) by Benny Prijono · 18 years ago
  17. c5b6dbf Fixed autoconf in mingw by Benny Prijono · 18 years ago
  18. b466e23 Fixed autoconf on MacOS X by Benny Prijono · 18 years ago
  19. 30f85c6 Added PJ_HAS_SOCKLEN_T test in configure script (some MacOS X have it, some dont) by Benny Prijono · 18 years ago
  20. 033d7f6 Fixed authentication with qop: nc is not printed, and set nc length to 8 bytes (sipcenter proxy server complained about this). It's now working fine with or without qop. Default caching and auto_send still set to disabled. by Benny Prijono · 18 years ago
  21. d6388ac Fix compilation error when PJSIP_AUTH_HEADER_CACHING and PJSIP_AUTH_AUTO_SEND_NEXT is disabled, and set the default for both to disabled. Also fixed the error message in pjsua when invalid arguments are specified. by Benny Prijono · 18 years ago
  22. 72b6104 Added volume control to indivual tone enqueued to the tone generator. by Benny Prijono · 18 years ago
  23. 7f5c12c Added multi-purpose tone generator in PJMEDIA (tonegen.[hc]) by Benny Prijono · 18 years ago
  24. a3cbb1c Yet another documentation/doxygen update by Benny Prijono · 18 years ago
  25. 97b8717 Just updated doxygen documentation by Benny Prijono · 18 years ago
  26. c4c61d0 Finishing autoconf work, also fixed compilation error in publish.h by Benny Prijono · 18 years ago
  27. c8141a8 Added initial "norefersub" (RFC 4488) implementation in PJSUA-LIB, and also properly register all supported SIP method, accepted content type, and supported extensions to endpoint. by Benny Prijono · 18 years ago
  28. 3a5e1ab Support for PUBLISH (RFC 3903): by Benny Prijono · 18 years ago
  29. d3296a5 Fixed yet another bug for 64bit target: error in initializing caching pool because internal pool size is too small. Increased by 256 bytes. by Benny Prijono · 18 years ago
  30. 21b9ad9 Added initial PUBLISH client support, and also default account selection in pjsua/pjsua-lib by Benny Prijono · 18 years ago
  31. fc290a6 Set default codec to PCMU in pjsip-perf by Benny Prijono · 18 years ago
  32. f862897 Improved logging consistency and added more logging info in verbosity 6 by Benny Prijono · 18 years ago
  33. d6b90f5 Added pj_thread_is_registered by Benny Prijono · 18 years ago
  34. e9db700 Fixed bugs in previous deadlock workaround by Benny Prijono · 18 years ago
  35. 0016d0c Increased width for sender column in log message, and added additional check in pj_thread_register() by Benny Prijono · 18 years ago
  36. 8eae838 Attempt to fix the race condition in dialog locking. by Benny Prijono · 18 years ago
  37. 10af18e Added pjsdp in pjmedia Makefile by Benny Prijono · 18 years ago
  38. 411b2be Removed copyright info from pj_timer_heap [hc], and explain more about ACE by Benny Prijono · 18 years ago
  39. c1e263f Fixed run-time bug with simple_ua and pjsip-perf sample. by Benny Prijono · 18 years ago
  40. fd27c66 Changed WinCE demo app to automatically answer incoming calls. by Benny Prijono · 18 years ago
  41. 2704258 Fixed bugs in client registration (sip_regc.c): when re-registration failed to send the request, application callback is not called. by Benny Prijono · 18 years ago
  42. 5b65687 Added logging in sip_regc.c to report the error when pjsip_regc_send() fails (because no error will be logged when re-registration fails). by Benny Prijono · 18 years ago
  43. 10861bc Fixed bug in --auto-conf option in pjsua by Benny Prijono · 18 years ago
  44. 80019eb Added Ctrl-C handler for pjsua Windows, and added average bps in media statistic. by Benny Prijono · 18 years ago
  45. 7ca96da Added --auto-conf options in pjsua, also enable speex/3200, and set quality 5 to use large resampling filter by Benny Prijono · 18 years ago
  46. 5da5043 Change set_ec_tail() API to set_ec() in sound port, also change suppressor to reduce mic signal by division rather than zeroing the signal. Also moved out VAD and EC settings to config.h. by Benny Prijono · 18 years ago
  47. f521eb0 Fixed assertion error if ACK is received before INVITE transaction sends final response (malicious?). Also fixed misc warnings, and stress-tested on Quad Xeon by Benny Prijono · 18 years ago
  48. edba079 Echo suppressor tuning and testing on WincE, and also added config_site_sample.h by Benny Prijono · 18 years ago
  49. 3842ec4 Change the silence suppressor to use the adaptive silence detector. by Benny Prijono · 18 years ago
  50. 15bbb38 Change unescaping function in scanner and string.c to NOT unescape when '%' is not followed by hex digits. by Benny Prijono · 18 years ago
  51. 22dfe59 Change AEC into generic echo canceller framework with either AEC or simple echo suppressor backend can be selected during runtime. by Benny Prijono · 18 years ago
  52. 7c3741f Set to use PCMU and disable AEC for WinCE target. by Benny Prijono · 18 years ago
  53. 7097299 AEC and sound backend fixes: by Benny Prijono · 18 years ago
  54. 30bb160 Fixed error in setting up tail length in sound_port by Benny Prijono · 18 years ago
  55. 52a9391 Fixed bug in pjsua_media.c because of recent AEC changes: sound device is not connected anywhere! by Benny Prijono · 18 years ago
  56. f20687a More work on the AEC (including changes in PJSUA), embed the AEC in sound_port, reduce DirectSound buffer from 32 to 16, and fixed ARM compilation for MSVC WinCE target. by Benny Prijono · 18 years ago
  57. 8f9faae Fixed complilation error in config.h for ARM target. by Benny Prijono · 18 years ago
  58. 69f7312 More experimentation with AEC: (1) added media port to create bidirectional port from two unidirectional ports, (2) split AEC functionality into AEC algorithm (aec.h) and AEC media port (aec_port.h), (3) Added the AEC functionality in the sound_port.c. by Benny Prijono · 18 years ago
  59. bb9cc5f Removed the constness of the captured frame from pjmedia_snd_rec_cb specification (experimental, to support AEC since AEC needs to modify the buffer). by Benny Prijono · 18 years ago
  60. c6186b6 Experimental change in PJMEDIA dsound.c DirectSound backend: (1) Don't raise thread priority, and (2) when capturing multiple frames from the microphone, do the same in the playback direction. by Benny Prijono · 18 years ago
  61. d79f25c Fix compilation error in MacOS because of recent changes in config.h, also disable AEC by default in pjsua-lib, and added ec-tail option in pjsua by Benny Prijono · 18 years ago
  62. c8e24a1 Added experimental AEC media port (aec_port.[hc]) based on Speex AEC in pjmedia and pjsua-lib. by Benny Prijono · 18 years ago
  63. 01f0154 Added simple WinCE application: by Benny Prijono · 18 years ago
  64. c4c8f24 Fix PJLIB on WinCE: by Benny Prijono · 18 years ago
  65. 7bef0f5 Changed siprtp on Linux to raise the thread priority by Benny Prijono · 18 years ago
  66. c585988 Really add the iLBC files into SVN now (duh!). by Benny Prijono · 18 years ago
  67. 00cae61 - Added iLBC codec (experimental) with the following features: by Benny Prijono · 18 years ago
  68. d345a65 Fixed bug in registring external thread: thread descriptor is not large enough because of recent enlargement on PJ_MAX_OBJ_NAME. by Benny Prijono · 18 years ago
  69. e85bc41 Another take at fixing 64bit problems. PJ_MAX_OBJ_NAME is increased to 32 chars (from 16), and check all those sprintf's especially the ones with "%p" format. by Benny Prijono · 18 years ago
  70. 53c3677 Removed pj/compat/sprintf.h from MSVC workspace, also changed "make size" to calculate .bss and .data as well. by Benny Prijono · 18 years ago
  71. c5dfa17 Added pjmedia_port_info_init() to fill in pjmedia_port_info structure, avoiding manual initialization and thus improves consistency (and probably reduces size by a tiny bit). This involves modification in quite few places. by Benny Prijono · 18 years ago
  72. e909eac Added capability in pjsua to add application created media port to pjsua's conference bridge, also capability to use custom sound device in pjsua. by Benny Prijono · 18 years ago
  73. 1b789ed - Added splitter/combiner port (splitcomb.c) by Benny Prijono · 18 years ago
  74. a68b9b2 Committed changes to MSVC workspace re: recent speex changes by Benny Prijono · 18 years ago
  75. 0a12f00 Added --ptime and --no-vad option in pjsua by Benny Prijono · 18 years ago
  76. dc498ca - Bring speex codec up to date with their SVN trunk by Benny Prijono · 18 years ago
  77. 87445bc Fixed rather loud clicking/tick noise when call is established. This was caused by the PLC not properly cleared before it is reused for the next call by Benny Prijono · 18 years ago
  78. 05784a5 Fixed minor bug in siprtp: in summary report, percentage of RX loss is displayed in the TX section by Benny Prijono · 18 years ago
  79. a9b372a Added initial implementation of autoconf script (aconfigure) by Benny Prijono · 18 years ago
  80. 7db431e Added 64bit Linux target (x86_64), also fixed compilation warnings when compiling for this target by Benny Prijono · 18 years ago
  81. b699fe2 Improvement/bug fix in hash table lookup to allow user to specify the hash value, and modify transaction to take advantage of this feature by Benny Prijono · 18 years ago
  82. 92ac447 Changed all public header files to compile correctly when -ansi and -pedantic is used, also when g++ is used by Benny Prijono · 18 years ago
  83. 258ece9 Few changes in siprtp: by Benny Prijono · 18 years ago
  84. 48af79c pjsua application should check that the --max-calls argument does not exceed compile time maximums by Benny Prijono · 18 years ago
  85. 86b73d5 Fixed bug in tel: URI unescaping code by Benny Prijono · 18 years ago
  86. e219b0f Added PJMEDIA_RTCP_IGNORE_FIRST_PACKETS macro to let application decides how many first RTP packets to ignore when calculating jitter by Benny Prijono · 18 years ago
  87. 179efb0 Fixed compilation error when -ansi and -pedantic flags are used (the // style comment in sip_config.h) by Benny Prijono · 18 years ago
  88. 513795f Undo modification to use timer, and back to using threads as the performance is not good by Benny Prijono · 18 years ago
  89. 399188f Increased version number to 0.5.7! by Benny Prijono · 18 years ago
  90. 9b44622 Fixed error in tel: URI test in pjsip-test by Benny Prijono · 18 years ago
  91. 5631561 Small improvements: (1) pjsua now responds to incoming OPTIONS request, which means that some modules (evsub, invite) need to register their capabilities to the endpoint, (2) added command in pjsua to send arbitrary request by Benny Prijono · 18 years ago
  92. c570f2d More intelligent PJSUA-LIB in selecting the appropriate address for Contact header by Benny Prijono · 18 years ago
  93. 2bbd710 Fixed several bugs related to TCP: by Benny Prijono · 18 years ago
  94. a8838bf Set the SDP parser to allow blank newline at the end of the message by Benny Prijono · 18 years ago
  95. 02b1023 Bug fix of previous bug fix by Benny Prijono · 18 years ago
  96. 62026bb Syntax error in tel URI parsing (oops) by Benny Prijono · 18 years ago
  97. f55c02f Fixed bugs with the parsing (re: allowable chars): (1) Parameters in URI and header should have different spec. URI should use paramchar spec while header should use token spec (thanks Jeroen van Bemmel) (2) The same rule applies when escaping the parameters during printing process (3) While we're on it, also fixed the tel-URI parser to automatically unescape the parameter values. by Benny Prijono · 18 years ago
  98. dcc0cbf Fixed crash in SIP TCP transport deinitialization, and set pjsip-perf to handle INVITE request to non-standard URL call-statefully by Benny Prijono · 18 years ago
  99. ceb1260 Attempt to get some applications linked for RTEMS target, just to get the footprint calculation working by Benny Prijono · 18 years ago
  100. 49f682a Some minor modifications here and there in pjsip-perf by Benny Prijono · 18 years ago