summaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAge
* call: add call_id accessorAlfred E. Heggestad2018-01-17
|
* audio: sample format for audio encoder/decoderAlfred E. Heggestad2018-01-06
| | | | | | | | | | | config: auenc_format s16 # s16, float audec_format s16 # s16, float modules: only opus module supports this for now. default is s16
* audio: add function to set encoder bitrateAlfred E. Heggestad2018-01-05
| | | | | | | - auenc API updated with bitrate in bits/s - new command to set encoder bitrate: /aubitrate 128000
* baresip version 0.5.7Alfred E. Heggestad2017-12-25
|
* event: move encoding of event from mqtt to event.c (ref #331)Alfred E. Heggestad2017-12-16
|
* ua: add UA_EVENT_CALL_RTCP eventAlfred E. Heggestad2017-12-09
| | | | | | this event is called for every received RTCP report. mqtt: add JSON encoding of RTCP stats
* audio: remove support for AUDIO_MODE_TMRAlfred E. Heggestad2017-11-26
|
* audio: remove support for tx realtime threadAlfred E. Heggestad2017-11-16
| | | | | | | | | | - there is no need to run this thread in "realtime" mode, as the network will add much more jitter compared to an internal thread. (Setting a high thread priority may be a different option) the only modules that needs Real-time is the drivers close to I/O such as audio/video input/output drivers.
* 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
* add support for EBU-ACIP parametersAlfred E. Heggestad2017-10-29
| | | | | | | | | | | add support for EBU-ACIP parameters in the SDP. This can be enabled with the following config item: sdp_ebuacip yes Reference: https://tech.ebu.ch/docs/tech/tech3368.pdf Thanks to Ola Palm from Swedish Radio for the patch
* version 0.5.6Alfred E. Heggestad2017-10-14
|
* rename error() to error_msg() fixes #295Alfred E. Heggestad2017-09-15
|
* ua: remove accessor to SIP file descriptor (fd)Alfred E. Heggestad2017-09-11
| | | | | | | - The fd is platform specific, and should not be exposed in the public API. (this function was used a long time ago for iOS applications)
* baresip version 0.5.5Alfred E. Heggestad2017-09-07
|
* Video timestamp (#286)Alfred E. Heggestad2017-07-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add timestamp to video encoder/decoder * update vp8 vp9 * random offset * revert decoder timestamp * cleanup * gst_video1: add timestamp * change timestamp to RTP-timestamp * update modules * timestamp things * save rtp timestamp * packet_handler: align params same as RTP header * align parameters same way like RTP-header * avcodec: calc ts for old FFmpeg versions * cleanup * fix gst avcodec: use correct AVPacket * minor cleanup
* video: add video_calc_rtp_timestamp()Alfred E. Heggestad2017-07-22
|
* ui: make API re-entrantAlfred E. Heggestad2017-07-14
|
* ui: remove ui_input(), use ui_input_key() insteadAlfred E. Heggestad2017-07-10
|
* Make sdl2 Fullscreen Mode configurable (#279)Jonathan Sieber2017-07-10
| | | | | | * vidisp: add fullscreen flag * Add video_fullscreen option
* vidisp: add fullscreen flagAlfred E. Heggestad2017-07-09
|
* account: move password prompt to moduleAlfred E. Heggestad2017-07-09
|
* account: added accessor function to AORAlfred E. Heggestad2017-07-09
|
* contact: rename 'remove' to avoid clash with REMOVE(3)Alfred E. Heggestad2017-07-09
|
* Presence: Handle contacts added at run-time (#276)Jonathan Sieber2017-07-06
| | | | | | | | * Add contact_presence getter * Add contact_remove() function * presence: Handle contacts added at runtime
* add commands to load/unload module (#275)Alfred E. Heggestad2017-07-06
| | | | | | | | * add commands to load/unload module * fix warning * module: update doxygen
* release version 0.5.4Alfred E. Heggestad2017-06-23
|
* 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
* vidfilt: make the API re-entrantAlfred E. Heggestad2017-05-26
|
* Vidisp api reentrant (#258)Alfred E. Heggestad2017-05-26
| | | | | | * vidisp: make the API re-entrant * vidisp: update all modules to re-entrant API
* Vidsrc api reentrant (#256)Alfred E. Heggestad2017-05-23
| | | | | | * vidsrc: make the API re-entrant * vidsrc: update all modules to new API
* vidcodec: make the API re-entrantAlfred E. Heggestad2017-05-20
|
* release version 0.5.3Alfred E. Heggestad2017-05-14
|
* 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