summaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAge
* aulevel: calculate audio levels in dBovAlfred E. Heggestad2017-04-27
|
* release baresip 0.5.2Alfred E. Heggestad2017-04-07
|
* aufilt: make the API re-entrantAlfred E. Heggestad2017-03-22
|
* Ausrc auplay reentrant (#227)Alfred E. Heggestad2017-03-22
| | | | | | | | | | | | * ausrc: re-entrant api * fix ausrc api for linux * fix ccheck * auplay: make it re-entrant * auplay: update more modules
* aucodec: move list of aucodec to struct baresip (#221)Alfred E. Heggestad2017-03-04
|
* version 0.5.1Alfred E. Heggestad2017-03-03
|
* Message reentrant (#214)Alfred E. Heggestad2017-02-23
| | | | | | * message: make it re-entrant * clean up message test-code
* cmd: make struct commands opaqueAlfred E. Heggestad2017-01-28
|
* account: expose STUN credentialsAlfred E. Heggestad2017-01-21
|
* account: add tests and accessorsAlfred E. Heggestad2017-01-21
|
* menc: make it re-entrantAlfred E. Heggestad2016-12-28
|
* mnat: make it re-entrantAlfred E. Heggestad2016-12-26
|
* cmd: check for duplicated entriesAlfred E. Heggestad2016-11-27
| | | | | | | | | | | - registering duplicate short commands is no longer possible - disable a couple of short commands, use long command instead (short commands should only be used for very frequently used things) - menu: properly register/unregister digit handlers for active calls thanks to Juha Heinanen for reporting an issue with the 'a' key
* bump version to 0.5.0Alfred E. Heggestad2016-09-20
|
* remove ua_prm(), use ua_account() insteadAlfred E. Heggestad2016-09-04
|
* play: make it re-entrant, add struct playerAlfred E. Heggestad2016-09-04
|
* vidcodec: add 'intra' parameter to decoder apiAlfred E. Heggestad2016-08-17
| | | | | | | | - the intra flag must be set to true, if the decoded video frame is a full intra frame (Key frame) - the video decoder can use this flag to cancel sending of FIR packets
* cmd: make it fully re-entrantAlfred E. Heggestad2016-08-07
|
* change value of KEYCODE_REL to 0x04, EOT (end of transmission)Alfred E. Heggestad2016-08-07
|
* cmd: add support for long commandsAlfred E. Heggestad2016-08-07
| | | | | | | | | | | | | | | | | | - Long commands are commands that is 2 or more characters, and MUST be completed by pressing enter. - A given command can have a long-command, a short-command or both. - All long commands are using '/' (slash) prefix - a simple TAB-completion is supported, while punching in your long command you can press TAB to see a list of commands that matches the input string. Feedback is welcome, specially on the long-command strings itself. If you want to suggest changes, please make a small and non-intrusive patch and send it as a Pull Request (PR).
* define KEYCODE_NONE and change value of KEYCODE_REL to -1Alfred E. Heggestad2016-08-06
|
* define KEYCODE_REL for key releaseAlfred E. Heggestad2016-07-31
|
* add '@' command to switch calls using line numbersAlfred E. Heggestad2016-07-26
| | | | | | | | | | | 1. for a given UA, each call has a unique line number starting from 1 2. the list of calls is sorted in an arbitrary order, but the last list element indicates "current call" 3. the '@' command takes a numeric argument which is the line-number of the wanted call
* conf: add handler argument to line-handlerAlfred E. Heggestad2016-07-24
|
* contact: make contacts re-entrantAlfred E. Heggestad2016-07-24
|
* added config 'call_max_calls' to limit maximum number of calls per uaAlfred E. Heggestad2016-07-23
|
* call: add sequential line-numbers for multiple calls (ref #141)Alfred E. Heggestad2016-07-23
|
* cmd: add application data to cmd_argAlfred E. Heggestad2016-07-22
|
* baresip version 0.4.20Alfred E. Heggestad2016-07-22
|
* add support for rtp_timeout and redialAlfred E. Heggestad2016-07-19
| | | | | | | | | | | | | | | | 1. Added support for RTP timeout. The feature is disabled by default and can be enabled with config "rtp_timeout N" where N is the number of seconds of RTP inactivity. If this is detected, the call is closed with a "special" SIP reason code of 701. 2. Added support for automatic re-connect in the menu module. This can be enabled by setting the 2 config items: redial_attempts 3 redial_delay 5 This work was contributed by Sveriges Radio. Thanks goes to Ola Palm and Jim Eld.
* log: rename parameter to avoid conflict with 'log'Alfred E. Heggestad2016-06-08
|
* config: added 'audio_path' config variableJuha Heinanen2016-06-07
|
* config: store dns nameservers in a stringAlfred E. Heggestad2016-06-06
|
* net: make networking code re-entrantAlfred E. Heggestad2016-06-06
| | | | | | | | | | | - The network instance is now in struct network and does not use any local/static data - A new top-level struct in baresip.c owns the single instance of struct network it is a long-term goal to remove all local/static data from libbaresip and make it fully re-entrant.
* config: add "call_local_timeout" config optionAlfred E. Heggestad2016-06-05
| | | | | | | the config option is used for incoming calls, if the call is not answered after X seconds. The default value is 120 seconds. If the value is set to 0 the timeout timer is not enabled.
* ua: added ua exit handlerAlfred E. Heggestad2016-06-05
|
* baresip version 0.4.19Alfred E. Heggestad2016-05-20
|
* aucodec: split srate into srate and crate (Clock Rate)Alfred E. Heggestad2016-05-01
|
* mos: use stdint typesAlfred E. Heggestad2016-03-22
|
* mos: add pseudo Mean Opinion Score routineAlfred E. Heggestad2016-03-21
| | | | thanks to Lorenzo Mangani for the original patch
* baresip release v0.4.18Alfred E. Heggestad2016-03-12
|
* make call_is_onhold() publicAlfred E. Heggestad2016-02-27
|
* release baresip 0.4.17Alfred E. Heggestad2016-01-17
|
* selftest: silent output, add optional verbose -vAlfred E. Heggestad2016-01-09
|
* move playing of ringtones to the menu-moduleAlfred E. Heggestad2016-01-09
|
* move password_prompt function to ui.cAlfred E. Heggestad2016-01-03
|
* conf: keep the struct conf allocatedAlfred E. Heggestad2016-01-03
|
* baresip version 0.4.16Alfred E. Heggestad2015-12-01
|
* ua: char -> const charAlfred E. Heggestad2015-11-30
|
* add command-line option -u to add extra UA paramsAlfred E. Heggestad2015-11-30
| | | | | | | | | | - also move module pre-loading to after all arguments are parsed - the extra UA parameters will be appended to the end of the UA accounts string. Example $ baresip -umedianat=turn