| Remove the silence threshold, seems to break functionality with some Asterix se… | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| commit 49ddf7fd7c65cb938159956e0123402e111effdb | |
| parent a0b6f9ee5b205a9da7e77a86d8c06ea3906fee26 | |
| Author: HD Moore <[email protected]> | |
| Date: Mon, 23 Feb 2009 01:28:24 +0000 | |
| Remove the silence threshold, seems to break functionality with some Asterix se… | |
| Diffstat: | |
| M src/iaxrecord/iaxrecord.c | 4 +++- | |
| 1 file changed, 3 insertions(+), 1 deletion(-) | |
| --- | |
| diff --git a/src/iaxrecord/iaxrecord.c b/src/iaxrecord/iaxrecord.c | |
| @@ -141,7 +141,9 @@ int main(int argc, char **argv) { | |
| iaxc_set_callerid ("", iax_cid); | |
| iaxc_set_formats(IAXC_FORMAT_ULAW | IAXC_FORMAT_ALAW, IAXC_FORMAT_ULAW… | |
| - iaxc_set_silence_threshold(silence_threshold); | |
| + | |
| + // Causes problems for some asterix servers, not sure why yet | |
| + // iaxc_set_silence_threshold(silence_threshold); | |
| iaxc_set_event_callback(iaxc_callback); | |
| iaxc_start_processing_thread(); |