summaryrefslogtreecommitdiff
path: root/src/config.c
Commit message (Collapse)AuthorAge
* config: default devices for win32Alfred E. Heggestad2018-04-06
|
* config: refresh templateAlfred E. Heggestad2018-04-06
|
* video: change video_fps from int to double floatAlfred E. Heggestad2018-02-25
|
* config: add videnc_format to templateAlfred E. Heggestad2018-02-11
|
* config: ifdef USE_VIDEO check for conf_get_vidfmtAlfred E. Heggestad2018-02-11
|
* config: add configurable video pixel formatAlfred E. Heggestad2018-02-10
| | | | | | | | config: videnc_format yuv420p # yuv420p, yuv444p, ... The default pixel format is still YUV420P
* ctrl_tcp: add module entry to config file template (#357)José Luis Millán2018-02-06
|
* set exact installation pathes at build time (#354)Guillaume Rousse2018-02-03
| | | | | Thank you, this is a very nice contribution. Alfred
* 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
* config: update doxygen commentsAlfred E. Heggestad2017-12-16
|
* config: add conf_get_aufmt() to resolve audio sample formatAlfred E. Heggestad2017-12-14
|
* mqtt: new module for MQTT (#332)Alfred E. Heggestad2017-12-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | mqtt: relay ua_event with publish relay incoming message to long commands (with '/' prefix) mqtt: add file for publish mqtt: add command response mqtt: add subscribe.c mqtt: use fd_listen for READ/WRITE Make + Config entry for MQTT module (#329) * include mqtt in modules and config * Check for mosquitto-dev * fix mqtt module checks * Moving MQTT config to module_app block mqtt: add JSON payload for events mqtt: add JSON decoding of command mqtt: add config for broker host/port
* config: add support for setting audio transmit modeAlfred E. Heggestad2017-11-26
| | | | | | | | | | audio_txmode poll|thread 1. "poll" -- uses the audio driver thread to encode and send RTP packets (default) 2. "thread" -- uses a dedicated thread to encode and send RTP packets
* config: refresh templateAlfred E. Heggestad2017-11-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
* 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
* modules/zrtp: add signaling hash support (#311)glenvt182017-10-15
| | | | Use SDP attribute a=zrtp-hash to protect the Hello message (RFC 6189, section 8.1).
* config: comment out dtmfio module in default configAlfred E. Heggestad2017-10-12
|
* cairo: draw baresip logo instead of ballAlfred E. Heggestad2017-10-03
|
* Make sdl2 Fullscreen Mode configurable (#279)Jonathan Sieber2017-07-10
| | | | | | * vidisp: add fullscreen flag * Add video_fullscreen option
* 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
* config: if defined, use PREFIX in absolue paths (#177)Dmitrij D. Czarkoff2016-11-27
|
* config: list several modules that were missing (#175)Dmitrij D. Czarkoff2016-11-27
| | | | | | * config: list several modules that were missing * config: hide daala, comment out echo and hide dtmfio for non-linux systems
* config: add vidinfo.so to templateAlfred E. Heggestad2016-08-13
|
* config: add pulse.so to templateAlfred E. Heggestad2016-08-13
|
* config: add debug_cmd.so to templateAlfred E. Heggestad2016-08-13
|
* added config 'call_max_calls' to limit maximum number of calls per uaAlfred 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.
* update TODOAlfred E. Heggestad2016-06-08
|
* config: added 'audio_path' config variableJuha Heinanen2016-06-07
|
* config: store dns nameservers in a stringAlfred E. Heggestad2016-06-06
|
* config: initialize new network itemsAlfred 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: fix template for Android audio-deviceAlfred E. Heggestad2016-06-05
|
* 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.
* vp8: rename vpx.so module to vp8.soAlfred E. Heggestad2016-06-04
|
* config: add mpa module to config templateAlfred E. Heggestad2016-05-17
|
* config: remove unrelated natbd_xxx optionsAlfred E. Heggestad2016-05-09
|
* config: added audiounit module to generated config (ref #91)Alfred E. Heggestad2016-01-17
|
* Symbian32 platform is not support anymoreAlfred E. Heggestad2016-01-03
|
* config: add aubridge module to sample configAlfred E. Heggestad2015-12-19
|
* config: mention kqueue on platforms supporting itDmitrij D. Czarkoff2015-07-02
| | | | While at it, also make spacing of this configuration item more consistent.
* speex, docs, src: added speex_mode_nb and speex_mode_wb config varsJuha Heinanen2015-06-04
| | | | - Slightly modified patch provided by Dmitrij D. Czarkoff
* docs, src: reverted speex_quality/speex_complexity changesJuha Heinanen2015-06-04
| | | | - speex_quality/speex_complexity value is not mapped to sdp mode value
* src, docs: added opus codec params to default config and exampleJuha Heinanen2015-06-04
|
* docs, src: use draft-ietf-avt-rtp-speex-01 specified speex encoding modeJuha Heinanen2015-06-04
|
* Default configuration entry for HTTP moduleLorenzo Mangani2014-12-26
|
* use correct definition of kilobit (1000 bits)Alfred E. Heggestad2014-12-07
| | | | http://en.wikipedia.org/wiki/Kilobit
* improve FFmpeg/libav module detectionAlfred E. Heggestad2014-11-22
| | | | | | | - remove FFmpeg keyword, as both FFmpeg and libav is supported - avcodec.so need libavcodec - avformat.so needs libavformat and others - also made the "quicktime.so" module deprecated
* uuid: generate UUID internally in moduleAlfred E. Heggestad2014-11-15
|