summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* audio: set the exact framesize for plc-handlerAlfred E. Heggestad2016-05-17
|
* config: add mpa module to config templateAlfred E. Heggestad2016-05-17
|
* Merged with master and added proper RTP time stamp handlingChristian Hoene2016-05-14
|\
| * minor nicifyChristian Hoene2016-05-14
| |
| * Fixed bug of sending empty packetsChristian Hoene2016-05-12
| |
* | config: remove unrelated natbd_xxx optionsAlfred E. Heggestad2016-05-09
| |
* | aucodec: split srate into srate and crate (Clock Rate)Alfred E. Heggestad2016-05-01
| |
* | fix some ccheck warningsAlfred E. Heggestad2016-04-24
|/
* Added resampler to decodeChristian Hoene2016-04-22
|
* First version with MPA codingChristian Hoene2016-04-22
|
* fix warningAlfred E. Heggestad2016-04-03
|
* add test for SIP with DNSAlfred E. Heggestad2016-04-02
|
* 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
* ua: add UA_EVENT_CALL_CLOSED on ua_hangupAlfred E. Heggestad2016-02-28
| | | | | | thanks to Gary Metalle for testing ref. issue #111
* make call_is_onhold() publicAlfred E. Heggestad2016-02-27
|
* call: move CALL_EVENT_ESTABLISHED to the endAlfred E. Heggestad2016-02-14
| | | | | | | | | - since the callback handler might destroy the call object, it is safer to call the handler as the last thing in the function. otherwise the call object might be corrupt, i.e. pointing to deallocated memory.
* menu: configurable bell and set incoming uaAlfred E. Heggestad2016-02-06
| | | | | | | | - add config "menu_bool yes|no" to control if the incoming call should print Bell escape characters to the terminal - on incoming call, set the current user-agent to the one with the incoming call
* stream: add warningAlfred E. Heggestad2016-02-06
|
* call: fix for decoding SIP INFO with dtmf-relayAlfred E. Heggestad2016-02-02
| | | | patch from Gary Metalle, thank you :)
* ua: check err value properly in ua_options_send()Alfred E. Heggestad2016-01-17
|
* release baresip 0.4.17Alfred E. Heggestad2016-01-17
|
* config: added audiounit module to generated config (ref #91)Alfred 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
|
* Symbian32 platform is not support anymoreAlfred E. Heggestad2016-01-03
|
* config: add aubridge module to sample configAlfred E. Heggestad2015-12-19
|
* fixes alfredh/baresip#93 glibc >=2.20 _BSD_SOURCE warningSebastian Reimers2015-12-13
|
* audio: add milliseconds to log messageAlfred E. Heggestad2015-12-13
|
* 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
* account: add single-quotes to stringsAlfred E. Heggestad2015-11-29
|
* call: add src/call.c path in doxygen headerAlfred E. Heggestad2015-11-28
|
* added UA_EVENT_EXITAlfred E. Heggestad2015-11-22
|
* ua: add event UA_EVENT_SHUTDOWNAlfred E. Heggestad2015-11-22
| | | | | | | | | | | - this event is sent when the uag is shutting down - modules can subscribe to this event to check when the shutdown sequence has started - presence,mwi: add usage of SHUTDOWN event and add 500ms delay fixes #30 https://github.com/alfredh/baresip/issues/30
* audio: flush tx-buffer for all tx-modesAlfred E. Heggestad2015-11-06
| | | | | thanks to Thibault Gueslin for reporting the bug and suggestion a nice fix
* ua: additional debugAlfred E. Heggestad2015-11-01
|
* ua: add missing initializer for subhAlfred E. Heggestad2015-11-01
|
* account: print pubintAlfred E. Heggestad2015-10-31
|
* presence: use struct sipevent_sock instance from coreAlfred E. Heggestad2015-10-31
| | | | | | | | | | - remove own instance of "struct sipevent_sock" in notifier - add a new handler uag_set_sub_handler for incoming SUBSCRIBE messages after this patch there should be only 1 global instance of sipevent_sock, in ua.c -- this patch will also fix a bug where sipevent could not find the subscription/notification and replies with 481
* call: check address-family of incoming SDP offerAlfred E. Heggestad2015-10-29
| | | | this fixes #79
* ua: unregister previous event-handler firstAlfred E. Heggestad2015-10-29
|
* ua: only send UA_EVENT_UNREGISTERING event if we have register-clientsAlfred E. Heggestad2015-10-29
|
* call: add direction flagAlfred E. Heggestad2015-10-25
|
* call: fix warning if USE_VIDEO is not setAlfred E. Heggestad2015-10-25
|
* move H.264 packetization code from avcodec to coreAlfred E. Heggestad2015-10-25
|
* audio: add API to set source/player while in callAlfred E. Heggestad2015-10-11
| | | | | | | | | | | int audio_set_source(struct audio *au, const char *mod, const char *device); int audio_set_player(struct audio *au, const char *mod, const char *device); example usage: audio_set_player(call_audio(ua_call(uag_cur())), "alsa", "default"); fixes #70
* ua: add support for hold+answerAlfred E. Heggestad2015-10-11
| | | | | | | - added ua_hold_answer() which will first put on-hold the active call (if exist) and then answer the new incoming call fixes #50