summaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAge
* vp9: fix for Debian Jessie (fixes #138)Alfred E. Heggestad2016-06-06
|
* menu: fix warningAlfred 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.
* vp9: needs libvpx v1.3.0 or laterAlfred E. Heggestad2016-06-06
|
* opensles: add extra debugAlfred E. Heggestad2016-06-05
|
* vp9: cleanupAlfred E. Heggestad2016-06-05
|
* vp9: add VP9 video codecAlfred E. Heggestad2016-06-04
|
* vidloop: copy frame if 1 or more filters are enabledAlfred E. Heggestad2016-06-04
|
* auloop: check for decode handlerAlfred E. Heggestad2016-06-04
|
* vp8: rename vpx.so module to vp8.soAlfred E. Heggestad2016-06-04
|
* Merge pull request #132 from choene/origin/aucodec_split_srateAlfred E. Heggestad2016-05-25
|\ | | | | Bug with reinit of codec structs
| * obeyed ccheckChristian Hoene2016-05-25
| |
| * Bug with reinit of codec structsChristian Hoene2016-05-25
| |
* | Merge pull request #131 from choene/origin/aucodec_split_srateAlfred E. Heggestad2016-05-20
|\| | | | | Bug at stereo wih 16 and 24k
| * ccheck warnings fixedChristian Hoene2016-05-19
| |
| * Bug at stereo wih 16 and 24kChristian Hoene2016-05-19
| |
* | zrtp: use -isystem to include zrtp header filesAlfred E. Heggestad2016-05-18
| |
* | daala: upgrade to daala 0.0-1564-g79787c7Alfred E. Heggestad2016-05-18
| |
* | mpa: fix warning on osxAlfred E. Heggestad2016-05-17
| |
* | v4l2_codec: add check for V4L2_PIX_FMT_H264 defineAlfred E. Heggestad2016-05-16
| |
* | avcodec: build with older ffmpeg versionsAlfred E. Heggestad2016-05-16
| | | | | | | | | | Debian 6.0 (libavcodec 52.20.1) Debian 7.9 (libavcodec 54.59.100)
* | avcodec: add AV_PIX_FMT_YUVJ420P pixel formatAlfred E. Heggestad2016-05-15
| |
* | mpa: fix 2 warnings on OSXAlfred E. Heggestad2016-05-15
| |
* | mpa: fix 1 ccheck warningAlfred E. Heggestad2016-05-14
|/
* Merged with master and added proper RTP time stamp handlingChristian Hoene2016-05-14
|\
| * minor nicifyChristian Hoene2016-05-14
| |
| * Considered ccheck hintsChristian Hoene2016-05-12
| |
| * debug output pretty printChristian Hoene2016-05-12
| |
| * Fixed bug of sending empty packetsChristian Hoene2016-05-12
| |
| * Rewrote decoding, fixed memory leaks, add cr to print outsChristian Hoene2016-05-11
| |
| * Bug during mode parsingroot2016-05-11
| |
| * Some minor issuesChristian Hoene2016-05-06
| |
* | v4l2_codec: minor debug tuningAlfred E. Heggestad2016-05-09
| |
* | h265: remove call to x265_cleanup, fix crashAlfred E. Heggestad2016-05-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unloading the h265.so module crashes on OpenBSD, inside the libx265.* code. this could be related to linking to both libavcodec and libx265, where also libavcodec links to libx265. the OpenBSD packages supply both static (.a) and shared (.so) libraries, and perhaps there is a problem here that the static version is picked during link time. running baresip+h265.so with valgrind gives more than 1000 warnings so I doubt that it is free of memory leaks. this commit is a work-around for #106 (fixes #106) https://github.com/alfredh/baresip/issues/106
* | opus: add more config optionsAlfred E. Heggestad2016-05-07
| | | | | | | | | | | | | | opus_bitrate 128000 # Average bitrate in [bps] opus_cbr {yes,no} # Constant Bitrate (inverse of VBR) opus_inbandfec {yes,no} # Enable inband Forward Error Correction (FEC) opus_dtx {yes,no} # Enable Discontinuous Transmission (DTX)
* | aucodec: split srate into srate and crate (Clock Rate)Alfred E. Heggestad2016-05-01
| |
* | mpa: fix warning about unused variableAlfred E. Heggestad2016-04-27
| |
* | mpa: fix warnings on OSXAlfred E. Heggestad2016-04-24
| |
* | fix some ccheck warningsAlfred E. Heggestad2016-04-24
|/
* Addressed code review and added start mute because of sync problemsChristian Hoene2016-04-24
|
* Tested encoder and cleanupChristian Hoene2016-04-23
|
* Added resampler to decodeChristian Hoene2016-04-22
|
* Removed false fileChristian Hoene2016-04-22
|
* First version with MPA codingChristian Hoene2016-04-22
|
* uuid: add debug message about loading UUIDAlfred E. Heggestad2016-04-18
|
* avcodec: fix building with libavcodec54:amd64Alfred E. Heggestad2016-04-18
|
* avcodec: add support for NV12 colorspaceAlfred E. Heggestad2016-04-17
|
* vidinfo: fix warning on osxAlfred E. Heggestad2016-04-11
|
* audiounit: fix warningAlfred E. Heggestad2016-04-11
|
* x11: redirect and borderless windowAlfred E. Heggestad2016-04-11
| | | | many thanks to Doug Blewett for the patch