- 23 12月, 2016 4 次提交
-
-
由 Sebastian Kemper 提交于
Fix the following compile-time warning: making all mod_avmd make[7]: Entering directory '/home/sk/tmp/lede/build_dir/target-mips_24kc_musl-1.1.15/freeswitch-1.8.0/src/mod/applications/mod_avmd' CC mod_avmd_la-mod_avmd.lo mod_avmd.c: In function 'avmd_process_sample': mod_avmd.c:49:19: error: implicit declaration of function '__isinf' [-Werror=implicit-function-declaration] #define ISINF(x) (__isinf(x)) ^ mod_avmd.c:2038:33: note: in expansion of macro 'ISINF' if (ISNAN(amplitude) || ISINF(amplitude)) { ^ cc1: all warnings being treated as errors Makefile:682: recipe for target 'mod_avmd_la-mod_avmd.lo' failed Fix this by adding the declaration for __isinf(), the same is done for __isnan() already Signed-off-by:
Sebastian Kemper <sebastian_ml@gmx.net>
-
由 Sebastian Kemper 提交于
This fixes the following compile-time warning: cc1: note: someone does not honour COPTS correctly, passed 2 times LTCOMPILE tport_type_connect.lo cc1: note: someone does not honour COPTS correctly, passed 2 times LTCOMPILE tport_type_ws.lo cc1: note: someone does not honour COPTS correctly, passed 2 times LTCOMPILE ws.lo cc1: note: someone does not honour COPTS correctly, passed 2 times ws.c: In function 'hton64': ws.c:730:14: error: implicit declaration of function '__bswap_64' [-Werror=implicit-function-declaration] else return __bswap_64(val); ^ cc1: all warnings being treated as errors Makefile:1465: recipe for target 'ws.lo' failed make[12]: *** [ws.lo] Error 1 Fix by including byteswap.h, which is available on Linux and also everywhere glibc is used (wpa_supplicant includes this header the same way). Signed-off-by:
Sebastian Kemper <sebastian_ml@gmx.net>
-
由 Sebastian Kemper 提交于
This fixes the following compile-time warning: making all mod_verto make[7]: Entering directory '/home/sk/tmp/lede/build_dir/target-mips_24kc_musl-1.1.15/freeswitch-1.8.0/src/mod/endpoints/mod_verto' CC mod_verto_la-mod_verto.lo CC mod_verto_la-ws.lo ws.c: In function 'hton64': ws.c:730:14: error: implicit declaration of function '__bswap_64' [-Werror=implicit-function-declaration] else return __bswap_64(val); ^ cc1: all warnings being treated as errors Fix by including byteswap.h, which is available on Linux and also everywhere glibc is used (wpa_supplicant includes this header the same way). Signed-off-by:
Sebastian Kemper <sebastian_ml@gmx.net>
-
由 Sebastian Kemper 提交于
This fixes the following compile-time warning: make[8]: Entering directory '/home/sk/tmp/lede/build_dir/target-mips_24kc_musl-1.1.15/freeswitch-1.8.0/src/mod/endpoints/mod_sofia' CC mod_sofia_la-mod_sofia.lo CC mod_sofia_la-sofia.lo CC mod_sofia_la-sofia_glue.lo CC mod_sofia_la-sofia_presence.lo CC mod_sofia_la-sofia_reg.lo CC mod_sofia_la-sofia_media.lo CC mod_sofia_la-sip-dig.lo In file included from sip-dig.c:137:0: /home/sk/tmp/lede/build_dir/target-mips_24kc_musl-1.1.15/freeswitch-1.8.0/libs/sofia-sip/libsofia-sip-ua/bnf/../../config.h:522:0: error: "__BYTE_ORDER" redefined [-Werror] #define __BYTE_ORDER __BIG_ENDIAN ^ In file included from /home/sk/tmp/lede/staging_dir/toolchain-mips_24kc_gcc-5.4.0_musl-1.1.15/include/sys/types.h:70:0, from ../../../../src/include/switch.h:107, from sip-dig.c:135: /home/sk/tmp/lede/staging_dir/toolchain-mips_24kc_gcc-5.4.0_musl-1.1.15/include/endian.h:11:0: note: this is the location of the previous definition #define __BYTE_ORDER __BYTE_ORDER__ ^ cc1: all warnings being treated as errors SWITCH_BYTE_ORDER is already used elsewhere in FS source and takes care of changing byte order without causing a warning Signed-off-by:
Sebastian Kemper <sebastian_ml@gmx.net>
-
- 13 12月, 2016 3 次提交
-
-
由 Brian West 提交于
Merge pull request #1108 in FS/freeswitch from ~PIOTRGREGOR/freeswitch:bugfix/FS-9843-avmd-remove-not-used-defines to master * commit 'df80234f': FS-9843 [mod_avmd] Remove unused defines
-
由 Brian West 提交于
-
由 Piotr Gregor 提交于
-
- 09 12月, 2016 3 次提交
-
-
由 Brian West 提交于
-
由 Anthony Minessale 提交于
-
由 Italo Rossi 提交于
FS-9835 [mod_callcenter] Fix segfault when passing freed pointer to cc_send_presence due to queue unload/reload
-
- 07 12月, 2016 11 次提交
-
-
由 Chris Rienzo 提交于
-
由 Mike Jerris 提交于
* commit '672b5d83': FS-9821 [mod_lua] Fix. memory/resource leak in mod_lua
-
由 Brian West 提交于
Merge pull request #1102 in FS/freeswitch from ~SEBASTIAN/freeswitch:bugfix/FS-9824-fix-tone2wav-segfault to master * commit '4ed1433c': FS-9824 [tone2wav.c] Fix segfault on tone2wav
-
由 Brian West 提交于
* commit '74ecc888': FS-9826 reset jitter buffer if SSRC changes regardless of jitter buffer paused state
-
由 Alexey Melnichuk 提交于
-
由 Brian West 提交于
-
由 Chris Rienzo 提交于
-
由 Brian West 提交于
Merge pull request #1103 in FS/freeswitch from ~DRAGOS_OANCEA/freeswitch-dragos:amrwb_encode_decode to master * commit '3ccf1704': FS-9825: Added AMR-WB transcoding capabilities (in both Bandwidth Efficient and Octet Aligned modes)
-
由 Dragos Oancea 提交于
FS-9825: Added AMR-WB transcoding capabilities (in both Bandwidth Efficient and Octet Aligned modes)
-
由 Sebastian Kemper 提交于
I checked fs_encode and saw that it terminates itself a bit differently, so I applied the same to tone2wav and the segfaults went away Signed-off-by:
Sebastian Kemper <sebastian_ml@gmx.net>
-
由 Brian West 提交于
-
- 06 12月, 2016 3 次提交
-
-
由 Anthony Minessale 提交于
-
由 Brian West 提交于
-
由 Seven Du 提交于
-
- 05 12月, 2016 5 次提交
-
-
由 Anthony Minessale II 提交于
Merge pull request #1095 in FS/freeswitch from bugfix/FS-9810-ws-write-fail-on-slow-network to master * commit 'b26fa6e1': FS-9810 fix ws write fail on slow network
-
由 Mike Jerris 提交于
* commit '01decbf4': FS-9813 [mod_kazoo] add kz_http_put
-
由 Brian West 提交于
* commit 'fdfc024a': FS-9805: Organized prompts in phrase_en.xml FS-9805: Created script to compare XML traslation files with phrase_en.xml
-
由 Brian West 提交于
-
由 Luis Azedo 提交于
-
- 04 12月, 2016 3 次提交
-
-
由 Brian West 提交于
* commit '347c93f1': FS-9788: Add close() option to FileIO implementation
-
由 Brian West 提交于
Merge pull request #1090 in FS/freeswitch from ~ANDYWOLK/freeswitch:feature/FS-9798-implement-native-postgresql-in-javascript to master * commit 'fff5b939': FS-9798 [mod_v8] Implement native PostgreSQL in JavaScript by adding a Database Handler (DBH) class
-
由 Seven Du 提交于
-
- 03 12月, 2016 2 次提交
-
-
由 Sergey Safarov 提交于
-
由 Sergey Safarov 提交于
-
- 02 12月, 2016 6 次提交
-
-
由 Brian West 提交于
FS-9765 one tweak from submitted patch to use switch_channel_var_true instead of switch_channel_get_variable no need to allocate on every hold/unhold just to check if this is enabled.
-
由 Brian West 提交于
* commit '86bcee03': remove redundant `if (rep)` statement
-
由 Brian West 提交于
* commit 'ac14496c': FS-9794: Set the result cause of an originate failed cause to variable originate_failed_cause
-
由 Brian West 提交于
* commit 'e91a428f': FS-8733 FS-9804 various phrase updates FS-9804 broken closing tag
-
由 nneul at mst.edu 提交于
-
由 nneul at mst.edu 提交于
-