summaryrefslogtreecommitdiff
path: root/test/main.c
Commit message (Collapse)AuthorAge
* test: add testcase for media encryptionAlfred E. Heggestad2018-03-29
|
* selftest: add testcase for eventsAlfred E. Heggestad2018-01-17
|
* add support for specifying sample format (#317)Alfred E. Heggestad2017-11-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | API: ausrc and auplay - add config items for ausrc/auplay format: ausrc_format s16|float auplay_format s16|float - audio.c: convert audio samples to/from signed 16-bit Modules: alsa add test for sample format FLOAT rst: add support for FLOAT sample format audiounit: add support for FLOAT sample format coreaudio: check for signed 16-bit audio format oss: check for signed 16-bit sample format winwave: check for S16LE pulse: add support for FLOAT sample format sndio: check for S16 format gst1: check sample format aufile: check sample format aubridge: check sample format gst: check sample format opensles: check for S16 sample format jack: check sample format alsa: remove usage of local config test: change samples to void pointer test: change sample type to void pointer
* test: check for USE_VIDEOAlfred E. Heggestad2017-07-22
|
* video: add video_calc_rtp_timestamp()Alfred E. Heggestad2017-07-22
|
* ua: add ua_progress() and testcaseAlfred E. Heggestad2017-06-03
|
* add RTP Header extension for Client-to-Mixer Audio Level Indication (#264)Alfred E. Heggestad2017-06-02
| | | | | | | | | | | | | | | | * add RTP Header extension for Client-to-Mixer Audio Level Indication https://tools.ietf.org/html/rfc6464 requires libre from this commit or later: https://github.com/creytiv/re/commit/1544a1e375c76a80084b411d21b0431f95e9cdfb * fix warnings * fix warnings * minor cleanup
* aulevel: calculate audio levels in dBovAlfred E. Heggestad2017-04-27
|
* test: added test for audio-playerAlfred E. Heggestad2017-04-08
|
* test: fix for getopt on solarisAlfred E. Heggestad2017-04-02
|
* Message reentrant (#214)Alfred E. Heggestad2017-02-23
| | | | | | * message: make it re-entrant * clean up message test-code
* account: add tests and accessorsAlfred E. Heggestad2017-01-21
|
* test: fix build when USE_VIDEO is offAlfred E. Heggestad2016-12-07
|
* test: added testcase for call with videoAlfred E. Heggestad2016-12-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).
* test: add test for sending DTMF-digitsAlfred E. Heggestad2016-07-31
|
* 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
|
* 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.
* test: added testcase for SIP OPTIONSAlfred E. Heggestad2016-06-19
|
* 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.
* fix warning about unused argAlfred E. Heggestad2016-06-05
|
* ua: added ua exit handlerAlfred E. Heggestad2016-06-05
|
* test: add test-case for DNS SRV loadbalancing and authentication (refs #39)Alfred E. Heggestad2016-04-09
|
* test: added test-case for authenticated registerAlfred E. Heggestad2016-04-03
|
* add test for SIP with DNSAlfred E. Heggestad2016-04-02
|
* mos: add pseudo Mean Opinion Score routineAlfred E. Heggestad2016-03-21
| | | | thanks to Lorenzo Mangani for the original patch
* test: add testcases for call hangup from both sidesAlfred E. Heggestad2016-02-14
|
* test: add option to specify which testcase(s) to runAlfred E. Heggestad2016-02-14
|
* test: add option -l to list all testcasesAlfred E. Heggestad2016-02-14
|
* selftest: silent output, add optional verbose -vAlfred E. Heggestad2016-01-09
|
* call: check address-family of incoming SDP offerAlfred E. Heggestad2015-10-29
| | | | this fixes #79
* test: added 2 call testsAlfred E. Heggestad2015-10-29
|
* test: enable TCP and TLS for ua registration testAlfred E. Heggestad2015-10-10
|
* test: run all testcases from an array of testsAlfred E. Heggestad2015-10-10
|
* test: use new sipsrv from retestAlfred E. Heggestad2015-10-04
|
* test: added a test for C++ api compatibilityAlfred E. Heggestad2015-09-30
|
* selftest: new binaryAlfred E. Heggestad2015-08-09
- move selftest code from module/selftest to test/. - create a new binary called 'selftest' - the selftest is testing the Baresip Core only