- 11 9月, 2012 17 次提交
-
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Stefan Knoblich 提交于
Callbacks are invoked from ftdm_span_start/_stop(). I/O is started before SIG and shut down in reverse order. This is needed for ftmod_misdn, to move the mISDN message handling into a separate thread (solving the mISDN socket vs. FreeTDM API issues). With these callbacks, the I/O thread can be started after the span I/O configuration has been (successfully) completed and stopped before destroying the span. NOTE: Both SIG and I/O callbacks are called with the span mutex locked, so threads created or destroyed synchronously in either of the custom start/stop functions, can not use ftdm_span_*() functions that lock the span mutex (e.g. ftdm_span_get_channel_count()). Signed-off-by:
Stefan Knoblich <stkn@openisdn.net>
-
由 Stefan Knoblich 提交于
The --enable-builtin-tiff option appends libs/tiff-3.8.2/libtiff/libtiff.la to LIBS, causing the AC_CHECK_LIB([jpeg]...) check to fail, because libtiff.la does not exist at configure time. Temporarily store tiff and jpeg libs in TIFF_-/JPEG_LIBS variables and append them to LIBS after all library checks have run. Example error output: configure:20049: checking for jpeg_start_compress in -ljpeg configure:20074: cc -o conftest -O2 -pipe -fno-strict-aliasing -L/usr/local/lib conftest.c -ljpeg -lm /usr/home/ports/net/freeswitch-core-devel/work/freeswitch-1.2.1/libs/tiff-3.8.2/libtiff/libtiff.la >&5 cc: /usr/home/ports/net/freeswitch-core-devel/work/freeswitch-1.2.1/libs/tiff-3.8.2/libtiff/libtiff.la: No such file or directory Signed-off-by:
Stefan Knoblich <stkn@openisdn.net>
-
由 Seven Du 提交于
Fix rtp payload number and possibly other params, since we ALWAYS use PCMU all params should be hardcoded
-
由 Brian West 提交于
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Steve Underwood 提交于
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Jeff Lenk 提交于
-
由 Michael Jerris 提交于
-
由 David Yat Sin 提交于
-
由 dyatsin 提交于
-
- 16 8月, 2012 2 次提交
-
-
由 Stefan Knoblich 提交于
FreeSWITCH: Add WIN32 strerror_s() variant to custom switch_strerror_r() helper function and fix more strerror_r() users. Convert mod_xml_cdr, mod_json_cdr and mod_conference to the new function. Signed-off-by:
Stefan Knoblich <stkn@openisdn.net>
-
由 Stefan Knoblich 提交于
GNU variant of strerror_r() returns char *, while the XSI version returns int. To make things worse, glibc ships both and added a unused result warning in recent versions (2.16) causing the build to fail. Add our own custom wrapper that always returns a pointer to the message buffer and additionally make XSI versions of strerror_r() GNU compatible by returning "Unknown error xxx" if no error message is available. Fixes: src/switch_rtp.c: In function 'rtp_common_read': src/switch_rtp.c:3313:15: error: ignoring return value of 'strerror_r', declared with attribute warn_unused_result [-Werror=unused-result] cc1: all warnings being treated as errors Signed-off-by:
Stefan Knoblich <stkn@openisdn.net>
-
- 14 8月, 2012 21 次提交
-
-
由 Ken Rice 提交于
-
由 Jeff Lenk 提交于
-
由 Jeff Lenk 提交于
-
由 William King 提交于
-
由 Anthony Minessale 提交于
-
由 William King 提交于
Add condition matching capability to only account for one or more subset of channel directions to radius.
-
由 Steve Underwood 提交于
A lot of tiny tidy up edits
-
由 Anthony Minessale 提交于
-
由 Moises Silva 提交于
-
由 Steve Underwood 提交于
A bug in end of image handling fixed, which could mean some T.85 images would screw up.
-
由 Anthony Minessale 提交于
-
由 Stefan Knoblich 提交于
The len variable can, in certain situations (large burst of incoming non-SLIN audio), exceed the size of the on-stack frame buffer, which causes ftdm_buffer_read_loop() to overwrite the dt_buffer pointer. Use ftdm_min() to make sure len (after conversion to SLIN units) isn't larger than the frame buffer size. Also adds are couple more code comments. Signed-off-by:
Stefan Knoblich <stkn@openisdn.net>
-
由 Jeff Lenk 提交于
-
由 Jeff Lenk 提交于
-
由 Anthony Minessale 提交于
-
由 Jeff Lenk 提交于
-
由 Michael Jerris 提交于
-
由 Christopher Rienzo 提交于
-
由 Steve Underwood 提交于
combination
-
由 Steve Underwood 提交于
Improvements to image flattening in spandsp's image translate code
-
由 Jeff Lenk 提交于
-