Moved spandsp to a more recent version. A huge number of little changes occur here, as recently spandsp
lost all the $Id$ entries the source files had for the dark old days of CVS
This commit is contained in:
parent
9b46a0aabe
commit
f029f7ef7c
|
@ -15,8 +15,6 @@
|
||||||
## You should have received a copy of the GNU Lesser General Public
|
## You should have received a copy of the GNU Lesser General Public
|
||||||
## License along with this program; if not, write to the Free Software
|
## License along with this program; if not, write to the Free Software
|
||||||
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
##
|
|
||||||
## $Id: Makefile.am,v 1.49 2009/05/30 05:55:22 steveu Exp $
|
|
||||||
|
|
||||||
AM_CFLAGS = $(COMP_VENDOR_CFLAGS)
|
AM_CFLAGS = $(COMP_VENDOR_CFLAGS)
|
||||||
AM_LDFLAGS = $(COMP_VENDOR_LDFLAGS)
|
AM_LDFLAGS = $(COMP_VENDOR_LDFLAGS)
|
||||||
|
@ -37,9 +35,9 @@ EXTRA_DIST = autogen.sh \
|
||||||
debian/rules \
|
debian/rules \
|
||||||
debian/watch \
|
debian/watch \
|
||||||
README.testdata \
|
README.testdata \
|
||||||
spandsp.pc \
|
|
||||||
spandsp.spec \
|
spandsp.spec \
|
||||||
spandsp/fax-tests.dtd \
|
spandsp/fax-tests.dtd \
|
||||||
|
spandsp/fax-tests.xml \
|
||||||
spandsp/global-tones.xml \
|
spandsp/global-tones.xml \
|
||||||
spandsp/tones.dtd \
|
spandsp/tones.dtd \
|
||||||
spandsp/tsb85.xml \
|
spandsp/tsb85.xml \
|
||||||
|
|
|
@ -16,9 +16,6 @@
|
||||||
# You should have received a copy of the GNU Lesser General Public
|
# You should have received a copy of the GNU Lesser General Public
|
||||||
# License along with this program; if not, write to the Free Software
|
# License along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
#
|
|
||||||
# $Id: autogen.sh,v 1.6 2008/03/30 18:33:24 steveu Exp $
|
|
||||||
#
|
|
||||||
|
|
||||||
UNAME=`uname`
|
UNAME=`uname`
|
||||||
|
|
||||||
|
|
|
@ -15,17 +15,11 @@
|
||||||
# You should have received a copy of the GNU Lesser General Public
|
# You should have received a copy of the GNU Lesser General Public
|
||||||
# License along with this program; if not, write to the Free Software
|
# License along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
#
|
|
||||||
# $Id: configure.ac,v 1.73 2009/10/03 04:37:25 steveu Exp $
|
|
||||||
|
|
||||||
# @start 1
|
# @start 1
|
||||||
|
|
||||||
AC_INIT
|
AC_INIT
|
||||||
|
|
||||||
CFLAGS="$CFLAGS $CONFIGURE_CFLAGS"
|
|
||||||
CXXFLAGS="$CXXFLAGS $CONFIGURE_CXXFLAGS"
|
|
||||||
LDFLAGS="$LDFLAGS $CONFIGURE_LDFLAGS"
|
|
||||||
|
|
||||||
m4_include(config/ax_compiler_vendor.m4)
|
m4_include(config/ax_compiler_vendor.m4)
|
||||||
m4_include(config/ax_check_real_file.m4)
|
m4_include(config/ax_check_real_file.m4)
|
||||||
m4_include(config/ax_fixed_point_machine.m4)
|
m4_include(config/ax_fixed_point_machine.m4)
|
||||||
|
@ -209,7 +203,9 @@ AC_CHECK_HEADERS([sys/select.h])
|
||||||
AC_CHECK_HEADERS([sys/ioctl.h])
|
AC_CHECK_HEADERS([sys/ioctl.h])
|
||||||
AC_CHECK_HEADERS([sys/fcntl.h])
|
AC_CHECK_HEADERS([sys/fcntl.h])
|
||||||
AC_CHECK_HEADERS([sndfile.h])
|
AC_CHECK_HEADERS([sndfile.h])
|
||||||
|
AC_CHECK_HEADERS([fenv.h])
|
||||||
AC_CHECK_HEADERS([fftw3.h], , [AC_CHECK_HEADERS([fftw.h])])
|
AC_CHECK_HEADERS([fftw3.h], , [AC_CHECK_HEADERS([fftw.h])])
|
||||||
|
AC_CHECK_HEADERS([pcap.h])
|
||||||
AC_CHECK_HEADERS([pthread.h])
|
AC_CHECK_HEADERS([pthread.h])
|
||||||
if test "${build}" == "${host}"
|
if test "${build}" == "${host}"
|
||||||
then
|
then
|
||||||
|
@ -270,6 +266,11 @@ then
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
#AC_DEFINE([SPANDSP_SUPPORT_T85], [1], [Support T.85 JBIG compression])
|
||||||
|
SPANDSP_SUPPORT_T85="#undef SPANDSP_SUPPORT_T85"
|
||||||
|
#AC_DEFINE([SPANDSP_SUPPORT_V34], [1], [Support the V.34 FAX modem])
|
||||||
|
SPANDSP_SUPPORT_V34="#undef SPANDSP_SUPPORT_V34"
|
||||||
|
|
||||||
AC_CHECK_LIB([m], [cos])
|
AC_CHECK_LIB([m], [cos])
|
||||||
# Some platforms still seem to lack the basic single precision trig and power related function.
|
# Some platforms still seem to lack the basic single precision trig and power related function.
|
||||||
AC_SEARCH_LIBS([sinf], [m], AC_DEFINE([HAVE_SINF], [1], [Define to 1 if you have the sinf() function.]))
|
AC_SEARCH_LIBS([sinf], [m], AC_DEFINE([HAVE_SINF], [1], [Define to 1 if you have the sinf() function.]))
|
||||||
|
@ -293,6 +294,7 @@ if test -n "$enable_tests" ; then
|
||||||
AC_LANG([C])
|
AC_LANG([C])
|
||||||
AC_CHECK_LIB([sndfile], [sf_open], SIMLIBS="$SIMLIBS -lsndfile", AC_MSG_ERROR("Can't make tests without libsndfile (does your system require a libsndfile-devel package?)"))
|
AC_CHECK_LIB([sndfile], [sf_open], SIMLIBS="$SIMLIBS -lsndfile", AC_MSG_ERROR("Can't make tests without libsndfile (does your system require a libsndfile-devel package?)"))
|
||||||
AC_CHECK_LIB([fftw3], [fftw_plan_dft_1d], SIMLIBS="$SIMLIBS -lfftw3", [AC_CHECK_LIB([fftw], [fftw_create_plan], SIMLIBS="$SIMLIBS -lfftw", AC_MSG_ERROR("Can't make tests without FFTW 2 or 3 (does your system require an fftw?-devel package?)"))])
|
AC_CHECK_LIB([fftw3], [fftw_plan_dft_1d], SIMLIBS="$SIMLIBS -lfftw3", [AC_CHECK_LIB([fftw], [fftw_create_plan], SIMLIBS="$SIMLIBS -lfftw", AC_MSG_ERROR("Can't make tests without FFTW 2 or 3 (does your system require an fftw?-devel package?)"))])
|
||||||
|
AC_CHECK_LIB([pcap], [pcap_open_offline], TESTLIBS="$TESTLIBS -lpcap", AC_MSG_ERROR("Can't make tests without libpcap (does your system require a libpcap-devel package?)"))
|
||||||
AC_CHECK_LIB([pthread], [pthread_attr_init], TESTLIBS="$TESTLIBS -lpthread")
|
AC_CHECK_LIB([pthread], [pthread_attr_init], TESTLIBS="$TESTLIBS -lpthread")
|
||||||
AC_CHECK_LIB([dl], [dlopen], TESTLIBS="$TESTLIBS -ldl")
|
AC_CHECK_LIB([dl], [dlopen], TESTLIBS="$TESTLIBS -ldl")
|
||||||
AC_CHECK_LIB([Xft], [XftFontOpen], TESTLIBS="$TESTLIBS -lXft",, $TESTLIBS)
|
AC_CHECK_LIB([Xft], [XftFontOpen], TESTLIBS="$TESTLIBS -lXft",, $TESTLIBS)
|
||||||
|
@ -366,6 +368,37 @@ sun)
|
||||||
COMP_VENDOR_LDFLAGS=
|
COMP_VENDOR_LDFLAGS=
|
||||||
REMOVE_FROM_VAR(CFLAGS, -Xc)
|
REMOVE_FROM_VAR(CFLAGS, -Xc)
|
||||||
;;
|
;;
|
||||||
|
intel)
|
||||||
|
COMP_VENDOR_CFLAGS="-std=c99 -D_POSIX_C_SOURCE=2 -D_GNU_SOURCE=1 -Wall -Wunused-variable -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes $COMP_VENDOR_CFLAGS"
|
||||||
|
if test "$enable_sse5" = "yes" ; then
|
||||||
|
COMP_VENDOR_CFLAGS="-msse5 $COMP_VENDOR_CFLAGS"
|
||||||
|
fi
|
||||||
|
if test "$enable_sse4a" = "yes" ; then
|
||||||
|
COMP_VENDOR_CFLAGS="-msse4a $COMP_VENDOR_CFLAGS"
|
||||||
|
fi
|
||||||
|
if test "$enable_sse4_2" = "yes" ; then
|
||||||
|
COMP_VENDOR_CFLAGS="-msse42 $COMP_VENDOR_CFLAGS"
|
||||||
|
fi
|
||||||
|
if test "$enable_sse4_1" = "yes" ; then
|
||||||
|
COMP_VENDOR_CFLAGS="-msse41 $COMP_VENDOR_CFLAGS"
|
||||||
|
fi
|
||||||
|
if test "$enable_ssse3" = "yes" ; then
|
||||||
|
COMP_VENDOR_CFLAGS="-mssse3 $COMP_VENDOR_CFLAGS"
|
||||||
|
fi
|
||||||
|
if test "$enable_sse3" = "yes" ; then
|
||||||
|
COMP_VENDOR_CFLAGS="-msse3 $COMP_VENDOR_CFLAGS"
|
||||||
|
fi
|
||||||
|
if test "$enable_sse2" = "yes" ; then
|
||||||
|
COMP_VENDOR_CFLAGS="-msse2 $COMP_VENDOR_CFLAGS"
|
||||||
|
fi
|
||||||
|
if test "$enable_sse" = "yes" ; then
|
||||||
|
COMP_VENDOR_CFLAGS="-msse $COMP_VENDOR_CFLAGS"
|
||||||
|
fi
|
||||||
|
if test "$enable_mmx" = "yes" ; then
|
||||||
|
COMP_VENDOR_CFLAGS="-mmmx $COMP_VENDOR_CFLAGS"
|
||||||
|
fi
|
||||||
|
COMP_VENDOR_LDFLAGS=
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
COMP_VENDOR_CFLAGS="-std=c99 -Wall -Wunused-variable -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes $COMP_VENDOR_CFLAGS"
|
COMP_VENDOR_CFLAGS="-std=c99 -Wall -Wunused-variable -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes $COMP_VENDOR_CFLAGS"
|
||||||
COMP_VENDOR_LDFLAGS=
|
COMP_VENDOR_LDFLAGS=
|
||||||
|
@ -438,15 +471,13 @@ fi
|
||||||
|
|
||||||
if test "$enable_builtin_tiff" = "yes" ; then
|
if test "$enable_builtin_tiff" = "yes" ; then
|
||||||
abs_tiffdir="`cd $srcdir/../tiff-3.8.2/ && pwd`"
|
abs_tiffdir="`cd $srcdir/../tiff-3.8.2/ && pwd`"
|
||||||
spandsp_builddir="`pwd`"
|
|
||||||
abs_tiffbuilddir="`cd $spandsp_builddir/../tiff-3.8.2/ && pwd`"
|
|
||||||
save_CFLAGS=$CFLAGS
|
save_CFLAGS=$CFLAGS
|
||||||
CFLAGS="$CFLAGS -I$abs_tiffdir/libtiff"
|
CFLAGS="$CFLAGS -I$abs_tiffdir/libtiff"
|
||||||
AC_CHECK_HEADERS([tiffio.h])
|
AC_CHECK_HEADERS([tiffio.h])
|
||||||
CFLAGS="$save_CFLAGS"
|
CFLAGS="$save_CFLAGS"
|
||||||
COMP_VENDOR_CFLAGS="-I$abs_tiffdir/libtiff $COMP_VENDOR_CFLAGS"
|
COMP_VENDOR_CFLAGS="-I$abs_tiffdir/libtiff $COMP_VENDOR_CFLAGS"
|
||||||
COMP_VENDOR_LDFLAGS="-L$abs_tiffdir/libtiff $COMP_VENDOR_LDFLAGS"
|
COMP_VENDOR_LDFLAGS="-L$abs_tiffdir/libtiff $COMP_VENDOR_LDFLAGS"
|
||||||
LIBS="$LIBS $abs_tiffbuilddir/libtiff/libtiff.la"
|
LIBS="$LIBS $abs_tiffdir/libtiff/libtiff.la"
|
||||||
AC_DEFINE([HAVE_LIBTIFF], [1], [Define to 1 if you have the `tiff' library (-ltiff).])
|
AC_DEFINE([HAVE_LIBTIFF], [1], [Define to 1 if you have the `tiff' library (-ltiff).])
|
||||||
else
|
else
|
||||||
AC_CHECK_HEADERS([tiffio.h])
|
AC_CHECK_HEADERS([tiffio.h])
|
||||||
|
@ -464,6 +495,8 @@ AC_SUBST(TESTLIBS)
|
||||||
AC_SUBST(SPANDSP_USE_FIXED_POINT)
|
AC_SUBST(SPANDSP_USE_FIXED_POINT)
|
||||||
AC_SUBST(SPANDSP_MISALIGNED_ACCESS_FAILS)
|
AC_SUBST(SPANDSP_MISALIGNED_ACCESS_FAILS)
|
||||||
AC_SUBST(SPANDSP_USE_EXPORT_CAPABILITY)
|
AC_SUBST(SPANDSP_USE_EXPORT_CAPABILITY)
|
||||||
|
AC_SUBST(SPANDSP_SUPPORT_T85)
|
||||||
|
AC_SUBST(SPANDSP_SUPPORT_V34)
|
||||||
AC_SUBST(INSERT_INTTYPES_HEADER)
|
AC_SUBST(INSERT_INTTYPES_HEADER)
|
||||||
AC_SUBST(INSERT_STDINT_HEADER)
|
AC_SUBST(INSERT_STDINT_HEADER)
|
||||||
AC_SUBST(INSERT_TGMATH_HEADER)
|
AC_SUBST(INSERT_TGMATH_HEADER)
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
## You should have received a copy of the GNU Lesser General Public
|
## You should have received a copy of the GNU Lesser General Public
|
||||||
## License along with this program; if not, write to the Free Software
|
## License along with this program; if not, write to the Free Software
|
||||||
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
##
|
|
||||||
## $Id: Makefile.am,v 1.12 2008/09/20 15:44:40 steveu Exp $
|
|
||||||
|
|
||||||
MAINTAINERCLEANFILES = Makefile.in
|
MAINTAINERCLEANFILES = Makefile.in
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<?xml version="1.0" encoding="iso8859-1"?>
|
<?xml version="1.0" encoding="iso8859-1"?>
|
||||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
|
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
|
||||||
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
|
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
|
||||||
<!-- $Id: t38_manual.xml,v 1.5 2007/12/08 16:25:17 steveu Exp $ -->
|
|
||||||
<book>
|
<book>
|
||||||
<bookinfo>
|
<bookinfo>
|
||||||
<date>2007-11-14</date>
|
<date>2007-11-14</date>
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
## You should have received a copy of the GNU General Public License
|
## You should have received a copy of the GNU General Public License
|
||||||
## along with this program; if not, write to the Free Software
|
## along with this program; if not, write to the Free Software
|
||||||
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
##
|
|
||||||
## $Id: Makefile.am,v 1.10 2009/06/02 16:03:55 steveu Exp $
|
|
||||||
|
|
||||||
AM_CFLAGS = $(COMP_VENDOR_CFLAGS)
|
AM_CFLAGS = $(COMP_VENDOR_CFLAGS)
|
||||||
AM_LDFLAGS = $(COMP_VENDOR_LDFLAGS)
|
AM_LDFLAGS = $(COMP_VENDOR_LDFLAGS)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: g1050.c,v 1.17 2009/06/02 14:55:36 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: line_model.c,v 1.14 2009/09/23 16:02:59 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
@ -505,12 +503,15 @@ SPAN_DECLARE(int) one_way_line_model_release(one_way_line_model_state_t *s)
|
||||||
|
|
||||||
SPAN_DECLARE(both_ways_line_model_state_t *) both_ways_line_model_init(int model1,
|
SPAN_DECLARE(both_ways_line_model_state_t *) both_ways_line_model_init(int model1,
|
||||||
float noise1,
|
float noise1,
|
||||||
|
float echo_level_cpe1,
|
||||||
|
float echo_level_co1,
|
||||||
int model2,
|
int model2,
|
||||||
float noise2,
|
float noise2,
|
||||||
|
float echo_level_cpe2,
|
||||||
|
float echo_level_co2,
|
||||||
int codec,
|
int codec,
|
||||||
int rbs_pattern)
|
int rbs_pattern)
|
||||||
{
|
{
|
||||||
float echo_level;
|
|
||||||
both_ways_line_model_state_t *s;
|
both_ways_line_model_state_t *s;
|
||||||
|
|
||||||
if ((s = (both_ways_line_model_state_t *) malloc(sizeof(*s))) == NULL)
|
if ((s = (both_ways_line_model_state_t *) malloc(sizeof(*s))) == NULL)
|
||||||
|
@ -549,11 +550,10 @@ SPAN_DECLARE(both_ways_line_model_state_t *) both_ways_line_model_init(int model
|
||||||
s->line2.mains_interference = 0;
|
s->line2.mains_interference = 0;
|
||||||
|
|
||||||
/* Echos */
|
/* Echos */
|
||||||
echo_level = -15; /* in dB */
|
s->line1.near_co_hybrid_echo = pow(10, echo_level_co1/20.0f);
|
||||||
s->line1.near_co_hybrid_echo = pow(10, echo_level/20.0f);
|
s->line2.near_co_hybrid_echo = pow(10, echo_level_co2/20.0f);
|
||||||
s->line2.near_co_hybrid_echo = pow(10, echo_level/20.0f);
|
s->line1.near_cpe_hybrid_echo = pow(10, echo_level_cpe1/20.0f);
|
||||||
s->line1.near_cpe_hybrid_echo = pow(10, echo_level/20.0f);
|
s->line2.near_cpe_hybrid_echo = pow(10, echo_level_cpe2/20.0f);
|
||||||
s->line2.near_cpe_hybrid_echo = pow(10, echo_level/20.0f);
|
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: make_line_models.c,v 1.10 2009/09/23 16:02:59 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \page make_line_models_page Telephony line model construction
|
/*! \page make_line_models_page Telephony line model construction
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: rfc2198_sim.c,v 1.10 2009/06/01 16:27:12 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: spandsp-sim.h,v 1.5 2008/04/26 13:39:16 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: g1050.h,v 1.12 2009/06/01 16:27:12 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: line_model.h,v 1.7.4.1 2009/12/19 10:16:44 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -147,8 +145,12 @@ SPAN_DECLARE(void) both_ways_line_model_set_mains_pickup(both_ways_line_model_st
|
||||||
|
|
||||||
SPAN_DECLARE(both_ways_line_model_state_t *) both_ways_line_model_init(int model1,
|
SPAN_DECLARE(both_ways_line_model_state_t *) both_ways_line_model_init(int model1,
|
||||||
float noise1,
|
float noise1,
|
||||||
|
float echo_level_cpe1,
|
||||||
|
float echo_level_co1,
|
||||||
int model2,
|
int model2,
|
||||||
float noise2,
|
float noise2,
|
||||||
|
float echo_level_cpe2,
|
||||||
|
float echo_level_co2,
|
||||||
int codec,
|
int codec,
|
||||||
int rbs_pattern);
|
int rbs_pattern);
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: line_models.h,v 1.3 2008/04/17 18:03:23 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: rfc2198_sim.h,v 1.6 2009/05/31 14:47:10 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: test_utils.h,v 1.9 2009/05/31 14:47:10 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: test_utils.c,v 1.14 2009/06/01 16:27:12 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -365,6 +365,7 @@
|
||||||
<step freq="525" level="-12" length="0.1"/>
|
<step freq="525" level="-12" length="0.1"/>
|
||||||
<step length="0.1"/>
|
<step length="0.1"/>
|
||||||
</offering-tone>
|
</offering-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Austria" uncode="at">
|
<tone-set country="Austria" uncode="at">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -444,6 +445,7 @@
|
||||||
<step freq="380+420" level="-12" length="0.4"/>
|
<step freq="380+420" level="-12" length="0.4"/>
|
||||||
<step length="0.4"/>
|
<step length="0.4"/>
|
||||||
</negative-indication-tone>
|
</negative-indication-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Bahamas" uncode="bs">
|
<tone-set country="Bahamas" uncode="bs">
|
||||||
<ringback-tone>
|
<ringback-tone>
|
||||||
|
@ -596,6 +598,7 @@
|
||||||
<step freq="1380" level="-12" length="0.333"/>
|
<step freq="1380" level="-12" length="0.333"/>
|
||||||
<step freq="1860" level="-12" length="0.333"/>
|
<step freq="1860" level="-12" length="0.333"/>
|
||||||
</special-information-tone>
|
</special-information-tone>
|
||||||
|
<!-- Billing signal: 16kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Benin" uncode="bj">
|
<tone-set country="Benin" uncode="bj">
|
||||||
<ringback-tone>
|
<ringback-tone>
|
||||||
|
@ -1080,6 +1083,7 @@
|
||||||
<step freq="440" level="-12" length="0.05"/>
|
<step freq="440" level="-12" length="0.05"/>
|
||||||
<step length="0.05"/>
|
<step length="0.05"/>
|
||||||
</route-tone>
|
</route-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Canada" uncode="ca">
|
<tone-set country="Canada" uncode="ca">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -1201,6 +1205,7 @@
|
||||||
<step freq="12000" level="-12" length="0.15"/>
|
<step freq="12000" level="-12" length="0.15"/>
|
||||||
<step length="0.15"/>
|
<step length="0.15"/>
|
||||||
</pay-tone>
|
</pay-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Channel Islands: Jersey" uncode="??">
|
<tone-set country="Channel Islands: Jersey" uncode="??">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -1647,6 +1652,7 @@
|
||||||
<step freq="425" level="-12" length="0.333"/>
|
<step freq="425" level="-12" length="0.333"/>
|
||||||
<step length="1.5"/>
|
<step length="1.5"/>
|
||||||
</offering-tone>
|
</offering-tone>
|
||||||
|
<!-- Billing signal: 16kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Denmark" uncode="dk">
|
<tone-set country="Denmark" uncode="dk">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -1700,6 +1706,7 @@
|
||||||
<step freq="1400+950" level="-12" length="0.2"/>
|
<step freq="1400+950" level="-12" length="0.2"/>
|
||||||
<step length="2.0"/>
|
<step length="2.0"/>
|
||||||
</payphone-recognition-tone>
|
</payphone-recognition-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Diego Garcia" uncode="??">
|
<tone-set country="Diego Garcia" uncode="??">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -1967,6 +1974,7 @@
|
||||||
<step freq="1800" level="-12" length="0.33"/>
|
<step freq="1800" level="-12" length="0.33"/>
|
||||||
<step length="0.3"/>
|
<step length="0.3"/>
|
||||||
</waiting-tone>
|
</waiting-tone>
|
||||||
|
<!-- Billing signal: 16kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Ethiopia" uncode="et">
|
<tone-set country="Ethiopia" uncode="et">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -2181,6 +2189,7 @@
|
||||||
<step freq="425" level="-12" length="0.15"/>
|
<step freq="425" level="-12" length="0.15"/>
|
||||||
<step length="8.0"/>
|
<step length="8.0"/>
|
||||||
</waiting-tone>
|
</waiting-tone>
|
||||||
|
<!-- Billing signal: 16kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="France" uncode="fr">
|
<tone-set country="France" uncode="fr">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -2210,6 +2219,7 @@
|
||||||
<step freq="440" level="-12" length="0.05"/>
|
<step freq="440" level="-12" length="0.05"/>
|
||||||
<step length="0.05"/>
|
<step length="0.05"/>
|
||||||
</route-tone>
|
</route-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="French Polynesia" uncode="pf">
|
<tone-set country="French Polynesia" uncode="pf">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -2419,6 +2429,7 @@
|
||||||
<step length="2.0"/>
|
<step length="2.0"/>
|
||||||
</step>
|
</step>
|
||||||
</payphone-recognition-tone>
|
</payphone-recognition-tone>
|
||||||
|
<!-- Billing signal: 16kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Ghana" uncode="gh">
|
<tone-set country="Ghana" uncode="gh">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -2571,6 +2582,7 @@
|
||||||
<step freq="450" level="-12"/>
|
<step freq="450" level="-12"/>
|
||||||
</step>
|
</step>
|
||||||
</number-unobtainable-tone>
|
</number-unobtainable-tone>
|
||||||
|
<!-- Billing signal: 16kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Greenland" uncode="gl">
|
<tone-set country="Greenland" uncode="gl">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -3136,6 +3148,7 @@
|
||||||
<step freq="750+1450" level="-12" length="0.2"/>
|
<step freq="750+1450" level="-12" length="0.2"/>
|
||||||
<step length="2.0"/>
|
<step length="2.0"/>
|
||||||
</payphone-recognition-tone>
|
</payphone-recognition-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Israel" uncode="il">
|
<tone-set country="Israel" uncode="il">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -3227,6 +3240,7 @@
|
||||||
<step freq="400" level="-12" length="0.05"/>
|
<step freq="400" level="-12" length="0.05"/>
|
||||||
<step length="2.0"/>
|
<step length="2.0"/>
|
||||||
</holding-tone>
|
</holding-tone>
|
||||||
|
<!-- Billing signal: 16kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Italy" uncode="it">
|
<tone-set country="Italy" uncode="it">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -3247,6 +3261,7 @@
|
||||||
<step length="0.2"/>
|
<step length="0.2"/>
|
||||||
</step>
|
</step>
|
||||||
</busy-tone>
|
</busy-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Ivory Coast" uncode="ci">
|
<tone-set country="Ivory Coast" uncode="ci">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -3268,6 +3283,7 @@
|
||||||
<step freq="425" level="-12" length="0.05"/>
|
<step freq="425" level="-12" length="0.05"/>
|
||||||
<step length="0.05"/>
|
<step length="0.05"/>
|
||||||
</route-tone>
|
</route-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Jamaica" uncode="jm">
|
<tone-set country="Jamaica" uncode="jm">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -4181,6 +4197,7 @@
|
||||||
<step freq="400" level="-12" length="0.15"/>
|
<step freq="400" level="-12" length="0.15"/>
|
||||||
<step length="0.15"/>
|
<step length="0.15"/>
|
||||||
</pay-tone>
|
</pay-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Martinique (French Dep.)" uncode="mq">
|
<tone-set country="Martinique (French Dep.)" uncode="mq">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -4622,6 +4639,7 @@
|
||||||
<step freq="425 || 450" level="-12" length="0.0625"/>
|
<step freq="425 || 450" level="-12" length="0.0625"/>
|
||||||
<step length="0.0625"/>
|
<step length="0.0625"/>
|
||||||
</negative-indication-tone>
|
</negative-indication-tone>
|
||||||
|
<!-- Billing signal: 50Hz/~50Vrms, longitudinal/~160ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="New Caledonia" uncode="nc">
|
<tone-set country="New Caledonia" uncode="nc">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -4858,6 +4876,7 @@
|
||||||
<step length="2.0"/>
|
<step length="2.0"/>
|
||||||
</step>
|
</step>
|
||||||
</payphone-recognition-tone>
|
</payphone-recognition-tone>
|
||||||
|
<!-- Billing signal: 16kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Oman" uncode="om">
|
<tone-set country="Oman" uncode="om">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -5248,6 +5267,7 @@
|
||||||
<step freq="941" level="-12" length="0.2"/>
|
<step freq="941" level="-12" length="0.2"/>
|
||||||
<step length="2.0"/>
|
<step length="2.0"/>
|
||||||
</payphone-recognition-tone>
|
</payphone-recognition-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Puerto Rico" uncode="pr">
|
<tone-set country="Puerto Rico" uncode="pr">
|
||||||
<payphone-recognition-tone>
|
<payphone-recognition-tone>
|
||||||
|
@ -5412,6 +5432,7 @@
|
||||||
<step freq="440" level="-12" length="0.05"/>
|
<step freq="440" level="-12" length="0.05"/>
|
||||||
<step length="0.05"/>
|
<step length="0.05"/>
|
||||||
</route-tone>
|
</route-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="St. Helena" uncode="sh">
|
<tone-set country="St. Helena" uncode="sh">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -5902,6 +5923,7 @@
|
||||||
<warning-tone type="conference">
|
<warning-tone type="conference">
|
||||||
<step freq="425" level="-12" length="0.66"/>
|
<step freq="425" level="-12" length="0.66"/>
|
||||||
</warning-tone>
|
</warning-tone>
|
||||||
|
<!-- Billing signal: 16kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Slovenia" uncode="si">
|
<tone-set country="Slovenia" uncode="si">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -6144,6 +6166,7 @@
|
||||||
<step freq="1600" level="-12" length="0.05"/>
|
<step freq="1600" level="-12" length="0.05"/>
|
||||||
<step length="1.5"/>
|
<step length="1.5"/>
|
||||||
</payphone-recognition-tone>
|
</payphone-recognition-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Sri Lanka" uncode="lk">
|
<tone-set country="Sri Lanka" uncode="lk">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -6357,6 +6380,7 @@
|
||||||
<step length="3.6"/>
|
<step length="3.6"/>
|
||||||
</step>
|
</step>
|
||||||
</pay-tone>
|
</pay-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Switzerland" uncode="ch">
|
<tone-set country="Switzerland" uncode="ch">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -6417,6 +6441,7 @@
|
||||||
<step freq="750+1450" level="-12" length="0.2"/>
|
<step freq="750+1450" level="-12" length="0.2"/>
|
||||||
<step length="2.0"/>
|
<step length="2.0"/>
|
||||||
</payphone-recognition-tone>
|
</payphone-recognition-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Syria" uncode="sy">
|
<tone-set country="Syria" uncode="sy">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -6634,6 +6659,7 @@
|
||||||
<step length="0.167"/>
|
<step length="0.167"/>
|
||||||
</step>
|
</step>
|
||||||
</congestion-tone>
|
</congestion-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Turkey" uncode="tr">
|
<tone-set country="Turkey" uncode="tr">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -6701,6 +6727,7 @@
|
||||||
<step freq="450" level="-12" length="0.04"/>
|
<step freq="450" level="-12" length="0.04"/>
|
||||||
<step length="0.04"/>
|
<step length="0.04"/>
|
||||||
</confirmation-tone>
|
</confirmation-tone>
|
||||||
|
<!-- Billing signal: 12kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Turkmenistan" uncode="tm">
|
<tone-set country="Turkmenistan" uncode="tm">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -6907,6 +6934,7 @@
|
||||||
<step length="0.125"/>
|
<step length="0.125"/>
|
||||||
</step>
|
</step>
|
||||||
</pay-tone>
|
</pay-tone>
|
||||||
|
<!-- Billing signal: 50Hz/~50Vrms, longitudinal/~160ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="United States" uncode="us">
|
<tone-set country="United States" uncode="us">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
@ -7246,6 +7274,7 @@
|
||||||
<step freq="1800" level="-12" length="0.333"/>
|
<step freq="1800" level="-12" length="0.333"/>
|
||||||
<step length="1.0"/>
|
<step length="1.0"/>
|
||||||
</special-information-tone>
|
</special-information-tone>
|
||||||
|
<!-- Billing signal: 16kHz/~2Vrms, differential/~125ms -->
|
||||||
</tone-set>
|
</tone-set>
|
||||||
<tone-set country="Zambia" uncode="zm">
|
<tone-set country="Zambia" uncode="zm">
|
||||||
<dial-tone>
|
<dial-tone>
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE fax-tests SYSTEM "./fax-tests.dtd">
|
<!DOCTYPE fax-tests SYSTEM "./fax-tests.dtd">
|
||||||
<fax-tests>
|
<fax-tests>
|
||||||
<!-- $Id: tsb85.xml,v 1.22 2009/05/24 07:18:36 steveu Exp $ -->
|
|
||||||
<config>
|
<config>
|
||||||
<path type="IMAGE" value="../test-data/etsi/fax"/>
|
<path type="IMAGE" value="../test-data/etsi/fax"/>
|
||||||
</config>
|
</config>
|
||||||
|
@ -1270,7 +1269,7 @@
|
||||||
<step dir="T" type="POSTAMBLE"/>
|
<step dir="T" type="POSTAMBLE"/>
|
||||||
<step type="WAIT" value="75"/>
|
<step type="WAIT" value="75"/>
|
||||||
<step dir="T" type="PREAMBLE" modem="V.21"/>
|
<step dir="T" type="PREAMBLE" modem="V.21"/>
|
||||||
<step dir="T" type="HDLC" tag="PPS-MPS" value="FF C8 7D 72 00 00 08"/>
|
<step dir="T" type="HDLC" tag="PPS-MPS" value="FF C8 7D 72 00 80 08"/>
|
||||||
<step dir="T" type="POSTAMBLE"/>
|
<step dir="T" type="POSTAMBLE"/>
|
||||||
|
|
||||||
<possible-step>
|
<possible-step>
|
||||||
|
@ -1292,7 +1291,7 @@
|
||||||
<step dir="T" type="POSTAMBLE"/>
|
<step dir="T" type="POSTAMBLE"/>
|
||||||
<step type="WAIT" value="75"/>
|
<step type="WAIT" value="75"/>
|
||||||
<step dir="T" type="PREAMBLE" modem="V.21"/>
|
<step dir="T" type="PREAMBLE" modem="V.21"/>
|
||||||
<step dir="T" type="HDLC" tag="PPS-MPS" value="FF C8 7D 72 00 00 08"/>
|
<step dir="T" type="HDLC" tag="PPS-MPS" value="FF C8 7D 72 80 00 08"/>
|
||||||
<step dir="T" type="POSTAMBLE"/>
|
<step dir="T" type="POSTAMBLE"/>
|
||||||
|
|
||||||
<possible-step>
|
<possible-step>
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
## You should have received a copy of the GNU Lesser General Public
|
## You should have received a copy of the GNU Lesser General Public
|
||||||
## License along with this program; if not, write to the Free Software
|
## License along with this program; if not, write to the Free Software
|
||||||
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
##
|
|
||||||
## $Id: Makefile.am,v 1.138.4.3 2009/12/19 10:30:10 steveu Exp $
|
|
||||||
|
|
||||||
AM_CFLAGS = $(COMP_VENDOR_CFLAGS)
|
AM_CFLAGS = $(COMP_VENDOR_CFLAGS)
|
||||||
AM_LDFLAGS = $(COMP_VENDOR_LDFLAGS)
|
AM_LDFLAGS = $(COMP_VENDOR_LDFLAGS)
|
||||||
|
@ -118,6 +116,7 @@ libspandsp_la_SOURCES = adsi.c \
|
||||||
gsm0610_short_term.c \
|
gsm0610_short_term.c \
|
||||||
hdlc.c \
|
hdlc.c \
|
||||||
ima_adpcm.c \
|
ima_adpcm.c \
|
||||||
|
image_translate.c \
|
||||||
logging.c \
|
logging.c \
|
||||||
lpc10_analyse.c \
|
lpc10_analyse.c \
|
||||||
lpc10_decode.c \
|
lpc10_decode.c \
|
||||||
|
@ -151,6 +150,7 @@ libspandsp_la_SOURCES = adsi.c \
|
||||||
t38_terminal.c \
|
t38_terminal.c \
|
||||||
testcpuid.c \
|
testcpuid.c \
|
||||||
time_scale.c \
|
time_scale.c \
|
||||||
|
timezone.c \
|
||||||
tone_detect.c \
|
tone_detect.c \
|
||||||
tone_generate.c \
|
tone_generate.c \
|
||||||
v17rx.c \
|
v17rx.c \
|
||||||
|
@ -201,6 +201,7 @@ nobase_include_HEADERS = spandsp/adsi.h \
|
||||||
spandsp/gsm0610.h \
|
spandsp/gsm0610.h \
|
||||||
spandsp/hdlc.h \
|
spandsp/hdlc.h \
|
||||||
spandsp/ima_adpcm.h \
|
spandsp/ima_adpcm.h \
|
||||||
|
spandsp/image_translate.h \
|
||||||
spandsp/logging.h \
|
spandsp/logging.h \
|
||||||
spandsp/lpc10.h \
|
spandsp/lpc10.h \
|
||||||
spandsp/modem_echo.h \
|
spandsp/modem_echo.h \
|
||||||
|
@ -218,8 +219,6 @@ nobase_include_HEADERS = spandsp/adsi.h \
|
||||||
spandsp/super_tone_rx.h \
|
spandsp/super_tone_rx.h \
|
||||||
spandsp/super_tone_tx.h \
|
spandsp/super_tone_tx.h \
|
||||||
spandsp/swept_tone.h \
|
spandsp/swept_tone.h \
|
||||||
spandsp/t4_rx.h \
|
|
||||||
spandsp/t4_tx.h \
|
|
||||||
spandsp/t30.h \
|
spandsp/t30.h \
|
||||||
spandsp/t30_api.h \
|
spandsp/t30_api.h \
|
||||||
spandsp/t30_fcf.h \
|
spandsp/t30_fcf.h \
|
||||||
|
@ -230,8 +229,13 @@ nobase_include_HEADERS = spandsp/adsi.h \
|
||||||
spandsp/t38_gateway.h \
|
spandsp/t38_gateway.h \
|
||||||
spandsp/t38_non_ecm_buffer.h \
|
spandsp/t38_non_ecm_buffer.h \
|
||||||
spandsp/t38_terminal.h \
|
spandsp/t38_terminal.h \
|
||||||
|
spandsp/t4_rx.h \
|
||||||
|
spandsp/t4_tx.h \
|
||||||
|
spandsp/t4_t6_decode.h \
|
||||||
|
spandsp/t4_t6_encode.h \
|
||||||
spandsp/telephony.h \
|
spandsp/telephony.h \
|
||||||
spandsp/time_scale.h \
|
spandsp/time_scale.h \
|
||||||
|
spandsp/timezone.h \
|
||||||
spandsp/timing.h \
|
spandsp/timing.h \
|
||||||
spandsp/tone_detect.h \
|
spandsp/tone_detect.h \
|
||||||
spandsp/tone_generate.h \
|
spandsp/tone_generate.h \
|
||||||
|
@ -267,6 +271,7 @@ nobase_include_HEADERS = spandsp/adsi.h \
|
||||||
spandsp/private/gsm0610.h \
|
spandsp/private/gsm0610.h \
|
||||||
spandsp/private/hdlc.h \
|
spandsp/private/hdlc.h \
|
||||||
spandsp/private/ima_adpcm.h \
|
spandsp/private/ima_adpcm.h \
|
||||||
|
spandsp/private/image_translate.h \
|
||||||
spandsp/private/logging.h \
|
spandsp/private/logging.h \
|
||||||
spandsp/private/lpc10.h \
|
spandsp/private/lpc10.h \
|
||||||
spandsp/private/modem_connect_tones.h \
|
spandsp/private/modem_connect_tones.h \
|
||||||
|
@ -289,7 +294,10 @@ nobase_include_HEADERS = spandsp/adsi.h \
|
||||||
spandsp/private/t38_terminal.h \
|
spandsp/private/t38_terminal.h \
|
||||||
spandsp/private/t4_rx.h \
|
spandsp/private/t4_rx.h \
|
||||||
spandsp/private/t4_tx.h \
|
spandsp/private/t4_tx.h \
|
||||||
|
spandsp/private/t4_t6_decode.h \
|
||||||
|
spandsp/private/t4_t6_encode.h \
|
||||||
spandsp/private/time_scale.h \
|
spandsp/private/time_scale.h \
|
||||||
|
spandsp/private/timezone.h \
|
||||||
spandsp/private/tone_detect.h \
|
spandsp/private/tone_detect.h \
|
||||||
spandsp/private/tone_generate.h \
|
spandsp/private/tone_generate.h \
|
||||||
spandsp/private/v17rx.h \
|
spandsp/private/v17rx.h \
|
||||||
|
@ -334,13 +342,16 @@ at_interpreter.lo: at_interpreter_dictionary.h
|
||||||
at_interpreter_dictionary.h: make_at_dictionary$(EXEEXT)
|
at_interpreter_dictionary.h: make_at_dictionary$(EXEEXT)
|
||||||
./make_at_dictionary$(EXEEXT) >at_interpreter_dictionary.h
|
./make_at_dictionary$(EXEEXT) >at_interpreter_dictionary.h
|
||||||
|
|
||||||
t4.$(OBJEXT): spandsp/version.h
|
t4_rx.$(OBJEXT): spandsp/version.h
|
||||||
|
|
||||||
t4.lo: spandsp/version.h
|
t4_rx.lo: spandsp/version.h
|
||||||
|
|
||||||
v17rx.$(OBJEXT): v17_v32bis_rx_fixed_rrc.h v17_v32bis_rx_floating_rrc.h
|
V17_V32BIS_RX_INCL = v17_v32bis_rx_fixed_rrc.h \
|
||||||
|
v17_v32bis_rx_floating_rrc.h
|
||||||
|
|
||||||
v17rx.lo: v17_v32bis_rx_fixed_rrc.h v17_v32bis_rx_floating_rrc.h
|
v17rx.$(OBJEXT): ${V17_V32BIS_RX_INCL}
|
||||||
|
|
||||||
|
v17rx.lo: ${V17_V32BIS_RX_INCL}
|
||||||
|
|
||||||
v17_v32bis_rx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
v17_v32bis_rx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.17 -i -r >v17_v32bis_rx_fixed_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.17 -i -r >v17_v32bis_rx_fixed_rrc.h
|
||||||
|
@ -348,9 +359,12 @@ v17_v32bis_rx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
v17_v32bis_rx_floating_rrc.h: make_modem_filter$(EXEEXT)
|
v17_v32bis_rx_floating_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.17 -r >v17_v32bis_rx_floating_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.17 -r >v17_v32bis_rx_floating_rrc.h
|
||||||
|
|
||||||
v17tx.$(OBJEXT): v17_v32bis_tx_fixed_rrc.h v17_v32bis_tx_floating_rrc.h
|
V17_V32BIS_TX_INCL = v17_v32bis_tx_fixed_rrc.h \
|
||||||
|
v17_v32bis_tx_floating_rrc.h
|
||||||
|
|
||||||
v17tx.lo: v17_v32bis_tx_fixed_rrc.h v17_v32bis_tx_floating_rrc.h
|
v17tx.$(OBJEXT): ${V17_V32BIS_TX_INCL}
|
||||||
|
|
||||||
|
v17tx.lo: ${V17_V32BIS_TX_INCL}
|
||||||
|
|
||||||
v17_v32bis_tx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
v17_v32bis_tx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.17 -i -t >v17_v32bis_tx_fixed_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.17 -i -t >v17_v32bis_tx_fixed_rrc.h
|
||||||
|
@ -358,15 +372,14 @@ v17_v32bis_tx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
v17_v32bis_tx_floating_rrc.h: make_modem_filter$(EXEEXT)
|
v17_v32bis_tx_floating_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.17 -t >v17_v32bis_tx_floating_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.17 -t >v17_v32bis_tx_floating_rrc.h
|
||||||
|
|
||||||
v22bis_rx.$(OBJEXT): v22bis_rx_1200_fixed_rrc.h \
|
V22BIS_RX_INCL = v22bis_rx_1200_fixed_rrc.h \
|
||||||
v22bis_rx_2400_fixed_rrc.h \
|
v22bis_rx_2400_fixed_rrc.h \
|
||||||
v22bis_rx_1200_floating_rrc.h \
|
v22bis_rx_1200_floating_rrc.h \
|
||||||
v22bis_rx_2400_floating_rrc.h
|
v22bis_rx_2400_floating_rrc.h
|
||||||
|
|
||||||
v22bis_rx.lo: v22bis_rx_1200_fixed_rrc.h \
|
v22bis_rx.$(OBJEXT): ${V22BIS_RX_INCL}
|
||||||
v22bis_rx_2400_fixed_rrc.h \
|
|
||||||
v22bis_rx_1200_floating_rrc.h \
|
v22bis_rx.lo: ${V22BIS_RX_INCL}
|
||||||
v22bis_rx_2400_floating_rrc.h
|
|
||||||
|
|
||||||
v22bis_rx_1200_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
v22bis_rx_1200_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.22bis1200 -i -r >v22bis_rx_1200_fixed_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.22bis1200 -i -r >v22bis_rx_1200_fixed_rrc.h
|
||||||
|
@ -380,9 +393,12 @@ v22bis_rx_1200_floating_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
v22bis_rx_2400_floating_rrc.h: make_modem_filter$(EXEEXT)
|
v22bis_rx_2400_floating_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.22bis2400 -r >v22bis_rx_2400_floating_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.22bis2400 -r >v22bis_rx_2400_floating_rrc.h
|
||||||
|
|
||||||
v22bis_tx.$(OBJEXT): v22bis_tx_fixed_rrc.h v22bis_tx_floating_rrc.h
|
V22BIS_TX_INCL = v22bis_tx_fixed_rrc.h \
|
||||||
|
v22bis_tx_floating_rrc.h
|
||||||
|
|
||||||
v22bis_tx.lo: v22bis_tx_fixed_rrc.h v22bis_tx_floating_rrc.h
|
v22bis_tx.$(OBJEXT): ${V22BIS_TX_INCL}
|
||||||
|
|
||||||
|
v22bis_tx.lo: ${V22BIS_TX_INCL}
|
||||||
|
|
||||||
v22bis_tx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
v22bis_tx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.22bis -i -t >v22bis_tx_fixed_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.22bis -i -t >v22bis_tx_fixed_rrc.h
|
||||||
|
@ -390,15 +406,14 @@ v22bis_tx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
v22bis_tx_floating_rrc.h: make_modem_filter$(EXEEXT)
|
v22bis_tx_floating_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.22bis -t >v22bis_tx_floating_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.22bis -t >v22bis_tx_floating_rrc.h
|
||||||
|
|
||||||
v27ter_rx_.$(OBJEXT): v27ter_rx_2400_fixed_rrc.h \
|
V27_RX_INCL = v27ter_rx_2400_fixed_rrc.h \
|
||||||
v27ter_rx_4800_fixed_rrc.h \
|
v27ter_rx_4800_fixed_rrc.h \
|
||||||
v27ter_rx_2400_floating_rrc.h \
|
v27ter_rx_2400_floating_rrc.h \
|
||||||
v27ter_rx_4800_floating_rrc.h
|
v27ter_rx_4800_floating_rrc.h
|
||||||
|
|
||||||
v27ter_rx.lo: v27ter_rx_2400_fixed_rrc.h \
|
v27ter_rx.$(OBJEXT): ${V27_RX_INCL}
|
||||||
v27ter_rx_4800_fixed_rrc.h \
|
|
||||||
v27ter_rx_2400_floating_rrc.h \
|
v27ter_rx.lo: ${V27_RX_INCL}
|
||||||
v27ter_rx_4800_floating_rrc.h
|
|
||||||
|
|
||||||
v27ter_rx_2400_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
v27ter_rx_2400_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.27ter2400 -i -r >v27ter_rx_2400_fixed_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.27ter2400 -i -r >v27ter_rx_2400_fixed_rrc.h
|
||||||
|
@ -412,15 +427,14 @@ v27ter_rx_2400_floating_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
v27ter_rx_4800_floating_rrc.h: make_modem_filter$(EXEEXT)
|
v27ter_rx_4800_floating_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.27ter4800 -r >v27ter_rx_4800_floating_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.27ter4800 -r >v27ter_rx_4800_floating_rrc.h
|
||||||
|
|
||||||
v27ter_tx_.$(OBJEXT): v27ter_tx_2400_fixed_rrc.h \
|
V27TER_TX_INCL = v27ter_tx_2400_fixed_rrc.h \
|
||||||
v27ter_tx_4800_fixed_rrc.h \
|
v27ter_tx_4800_fixed_rrc.h \
|
||||||
v27ter_tx_2400_floating_rrc.h \
|
v27ter_tx_2400_floating_rrc.h \
|
||||||
v27ter_tx_4800_floating_rrc.h
|
v27ter_tx_4800_floating_rrc.h
|
||||||
|
|
||||||
v27ter_tx.lo: v27ter_tx_2400_fixed_rrc.h \
|
v27ter_tx_.$(OBJEXT): ${V27TER_TX_INCL}
|
||||||
v27ter_tx_4800_fixed_rrc.h \
|
|
||||||
v27ter_tx_2400_floating_rrc.h \
|
v27ter_tx.lo: ${V27TER_TX_INCL}
|
||||||
v27ter_tx_4800_floating_rrc.h
|
|
||||||
|
|
||||||
v27ter_tx_2400_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
v27ter_tx_2400_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.27ter2400 -i -t >v27ter_tx_2400_fixed_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.27ter2400 -i -t >v27ter_tx_2400_fixed_rrc.h
|
||||||
|
@ -434,9 +448,12 @@ v27ter_tx_2400_floating_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
v27ter_tx_4800_floating_rrc.h: make_modem_filter$(EXEEXT)
|
v27ter_tx_4800_floating_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.27ter4800 -t >v27ter_tx_4800_floating_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.27ter4800 -t >v27ter_tx_4800_floating_rrc.h
|
||||||
|
|
||||||
v29rx.$(OBJEXT): v29rx_fixed_rrc.h v29rx_floating_rrc.h
|
V29_RX_INCL = v29rx_fixed_rrc.h \
|
||||||
|
v29rx_floating_rrc.h
|
||||||
|
|
||||||
v29rx.lo: v29rx_fixed_rrc.h v29rx_floating_rrc.h
|
v29rx.$(OBJEXT): ${V29_RX_INCL}
|
||||||
|
|
||||||
|
v29rx.lo: ${V29_RX_INCL}
|
||||||
|
|
||||||
v29rx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
v29rx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.29 -i -r >v29rx_fixed_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.29 -i -r >v29rx_fixed_rrc.h
|
||||||
|
@ -444,9 +461,12 @@ v29rx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
v29rx_floating_rrc.h: make_modem_filter$(EXEEXT)
|
v29rx_floating_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.29 -r >v29rx_floating_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.29 -r >v29rx_floating_rrc.h
|
||||||
|
|
||||||
v29tx.$(OBJEXT): v29tx_fixed_rrc.h v29tx_floating_rrc.h
|
V29_TX_INCL = v29tx_fixed_rrc.h \
|
||||||
|
v29tx_floating_rrc.h
|
||||||
|
|
||||||
v29tx.lo: v29tx_fixed_rrc.h v29tx_floating_rrc.h
|
v29tx.$(OBJEXT): ${V29_TX_INCL}
|
||||||
|
|
||||||
|
v29tx.lo: ${V29_TX_INCL}
|
||||||
|
|
||||||
v29tx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
v29tx_fixed_rrc.h: make_modem_filter$(EXEEXT)
|
||||||
./make_modem_filter$(EXEEXT) -m V.29 -i -t >v29tx_fixed_rrc.h
|
./make_modem_filter$(EXEEXT) -m V.29 -i -t >v29tx_fixed_rrc.h
|
||||||
|
@ -519,11 +539,11 @@ $(srcdir)/msvc/spandsp.h: spandsp.h.in
|
||||||
-e "s/\@INSERT_INTTYPES_HEADER\@/#include <msvc\/inttypes.h>/" \
|
-e "s/\@INSERT_INTTYPES_HEADER\@/#include <msvc\/inttypes.h>/" \
|
||||||
-e "s/\@INSERT_MATH_HEADER\@/#include <math.h>/" $(srcdir)/spandsp.h.in > $(srcdir)/msvc/spandsp.h
|
-e "s/\@INSERT_MATH_HEADER\@/#include <math.h>/" $(srcdir)/spandsp.h.in > $(srcdir)/msvc/spandsp.h
|
||||||
|
|
||||||
|
dist-hook: spandsp/version.h
|
||||||
|
|
||||||
spandsp/version.h:
|
spandsp/version.h:
|
||||||
mkdir -p $(@D)
|
mkdir -p $(@D)
|
||||||
NOWDATE=`date --utc +"%Y%m%d"` ; \
|
NOWDATE=`date --utc +"%Y%m%d"` ; \
|
||||||
NOWTIME=`date --utc +"%H%M%S"` ; \
|
NOWTIME=`date --utc +"%H%M%S"` ; \
|
||||||
sed 's/$$SPANDSP_RELEASE_DATE/'$$NOWDATE'/;s/$$SPANDSP_RELEASE_TIME/'$$NOWTIME'/' \
|
sed 's/$$SPANDSP_RELEASE_DATE/'$$NOWDATE'/;s/$$SPANDSP_RELEASE_TIME/'$$NOWTIME'/' \
|
||||||
<$(srcdir)/spandsp/version.h.in >$@
|
<$(srcdir)/spandsp/version.h.in >$@
|
||||||
|
|
||||||
dist-hook: spandsp/version.h
|
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: adsi.c,v 1.77 2009/11/02 13:25:20 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: async.c,v 1.19 2009/04/23 14:12:34 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: at_interpreter.c,v 1.42.4.1 2009/12/23 14:18:32 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -244,6 +242,13 @@ SPAN_DECLARE(void) at_call_event(at_state_t *s, int event)
|
||||||
/* TODO: */
|
/* TODO: */
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
if (s->command_dial)
|
||||||
|
{
|
||||||
|
at_put_response_code(s, AT_RESPONSE_CODE_OK);
|
||||||
|
at_set_at_rx_mode(s, AT_MODE_OFFHOOK_COMMAND);
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
/* FAX modem connection */
|
/* FAX modem connection */
|
||||||
at_set_at_rx_mode(s, AT_MODE_DELIVERY);
|
at_set_at_rx_mode(s, AT_MODE_DELIVERY);
|
||||||
|
@ -253,6 +258,7 @@ SPAN_DECLARE(void) at_call_event(at_state_t *s, int event)
|
||||||
at_modem_control(s, AT_MODEM_CONTROL_RESTART, (void *) FAX_MODEM_CNG_TONE);
|
at_modem_control(s, AT_MODEM_CONTROL_RESTART, (void *) FAX_MODEM_CNG_TONE);
|
||||||
s->dte_is_waiting = TRUE;
|
s->dte_is_waiting = TRUE;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case AT_CALL_EVENT_BUSY:
|
case AT_CALL_EVENT_BUSY:
|
||||||
at_set_at_rx_mode(s, AT_MODE_ONHOOK_COMMAND);
|
at_set_at_rx_mode(s, AT_MODE_ONHOOK_COMMAND);
|
||||||
|
@ -369,7 +375,7 @@ static int parse_num(const char **s, int max_value)
|
||||||
|
|
||||||
/* The spec. says no digits is valid, and should be treated as zero. */
|
/* The spec. says no digits is valid, and should be treated as zero. */
|
||||||
i = 0;
|
i = 0;
|
||||||
while (isdigit(**s))
|
while (isdigit((int) **s))
|
||||||
{
|
{
|
||||||
i = i*10 + ((**s) - '0');
|
i = i*10 + ((**s) - '0');
|
||||||
(*s)++;
|
(*s)++;
|
||||||
|
@ -387,7 +393,7 @@ static int parse_hex_num(const char **s, int max_value)
|
||||||
/* The spec. says a hex value is always 2 digits, and the alpha digits are
|
/* The spec. says a hex value is always 2 digits, and the alpha digits are
|
||||||
upper case. */
|
upper case. */
|
||||||
i = 0;
|
i = 0;
|
||||||
if (isdigit(**s))
|
if (isdigit((int) **s))
|
||||||
i = **s - '0';
|
i = **s - '0';
|
||||||
else if (**s >= 'A' && **s <= 'F')
|
else if (**s >= 'A' && **s <= 'F')
|
||||||
i = **s - 'A';
|
i = **s - 'A';
|
||||||
|
@ -395,7 +401,7 @@ static int parse_hex_num(const char **s, int max_value)
|
||||||
return -1;
|
return -1;
|
||||||
(*s)++;
|
(*s)++;
|
||||||
|
|
||||||
if (isdigit(**s))
|
if (isdigit((int) **s))
|
||||||
i = (i << 4) | (**s - '0');
|
i = (i << 4) | (**s - '0');
|
||||||
else if (**s >= 'A' && **s <= 'F')
|
else if (**s >= 'A' && **s <= 'F')
|
||||||
i = (i << 4) | (**s - 'A');
|
i = (i << 4) | (**s - 'A');
|
||||||
|
@ -847,6 +853,7 @@ static const char *at_cmd_D(at_state_t *s, const char *t)
|
||||||
at_reset_call_info(s);
|
at_reset_call_info(s);
|
||||||
s->do_hangup = FALSE;
|
s->do_hangup = FALSE;
|
||||||
s->silent_dial = FALSE;
|
s->silent_dial = FALSE;
|
||||||
|
s->command_dial = FALSE;
|
||||||
t += 1;
|
t += 1;
|
||||||
ok = FALSE;
|
ok = FALSE;
|
||||||
/* There are a numbers of options in a dial command string.
|
/* There are a numbers of options in a dial command string.
|
||||||
|
@ -855,7 +862,7 @@ static const char *at_cmd_D(at_state_t *s, const char *t)
|
||||||
u = num;
|
u = num;
|
||||||
for ( ; (ch = *t); t++)
|
for ( ; (ch = *t); t++)
|
||||||
{
|
{
|
||||||
if (isdigit(ch))
|
if (isdigit((int) ch))
|
||||||
{
|
{
|
||||||
/* V.250 6.3.1.1 Basic digit set */
|
/* V.250 6.3.1.1 Basic digit set */
|
||||||
*u++ = ch;
|
*u++ = ch;
|
||||||
|
@ -926,7 +933,7 @@ static const char *at_cmd_D(at_state_t *s, const char *t)
|
||||||
break;
|
break;
|
||||||
case ';':
|
case ';':
|
||||||
/* V.250 6.3.1 - Dial string terminator - make voice call and remain in command mode */
|
/* V.250 6.3.1 - Dial string terminator - make voice call and remain in command mode */
|
||||||
/* TODO: */
|
s->command_dial = TRUE;
|
||||||
break;
|
break;
|
||||||
case '>':
|
case '>':
|
||||||
/* GSM07.07 6.2 - Direct dialling from phone book supplementary service subscription
|
/* GSM07.07 6.2 - Direct dialling from phone book supplementary service subscription
|
||||||
|
@ -5319,7 +5326,7 @@ static int command_search(const char *u, int len, int *matched)
|
||||||
{
|
{
|
||||||
/* The character in u we are processing... */
|
/* The character in u we are processing... */
|
||||||
/* V.250 5.4.1 says upper and lower case are equivalent in commands */
|
/* V.250 5.4.1 says upper and lower case are equivalent in commands */
|
||||||
index = (unsigned char) toupper(u[i]);
|
index = toupper((int) u[i]);
|
||||||
/* Is there a child node for this character? */
|
/* Is there a child node for this character? */
|
||||||
/* Note: First and last could have been packed into one uint16_t,
|
/* Note: First and last could have been packed into one uint16_t,
|
||||||
but space is not that critical, so the other packing is good
|
but space is not that critical, so the other packing is good
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: awgn.c,v 1.22 2009/02/10 13:06:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: bell_r2_mf.c,v 1.39.4.1 2009/12/23 14:23:48 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: bert.c,v 1.33 2009/04/14 16:04:53 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: bit_operations.c,v 1.16 2009/02/03 16:28:39 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: bitstream.c,v 1.18.4.1 2009/12/28 12:20:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -74,15 +72,27 @@ SPAN_DECLARE(void) bitstream_put(bitstream_state_t *s, uint8_t **c, uint32_t val
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
|
SPAN_DECLARE(void) bitstream_emit(bitstream_state_t *s, uint8_t **c)
|
||||||
|
{
|
||||||
|
uint32_t bitstream;
|
||||||
|
|
||||||
|
if (s->residue > 0)
|
||||||
|
{
|
||||||
|
bitstream = s->bitstream & ((1 << s->residue) - 1);
|
||||||
|
if (s->lsb_first)
|
||||||
|
*(*c) = (uint8_t) bitstream;
|
||||||
|
else
|
||||||
|
*(*c) = (uint8_t) (bitstream << (8 - s->residue));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(void) bitstream_flush(bitstream_state_t *s, uint8_t **c)
|
SPAN_DECLARE(void) bitstream_flush(bitstream_state_t *s, uint8_t **c)
|
||||||
{
|
{
|
||||||
if (s->residue > 0)
|
if (s->residue > 0)
|
||||||
{
|
{
|
||||||
s->bitstream &= ((1 << s->residue) - 1);
|
bitstream_emit(s, c);
|
||||||
if (s->lsb_first)
|
(*c)++;
|
||||||
*(*c)++ = (uint8_t) s->bitstream;
|
|
||||||
else
|
|
||||||
*(*c)++ = (uint8_t) (s->bitstream << (8 - s->residue));
|
|
||||||
s->residue = 0;
|
s->residue = 0;
|
||||||
}
|
}
|
||||||
s->bitstream = 0;
|
s->bitstream = 0;
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: complex_filters.c,v 1.16 2009/02/03 16:28:39 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: complex_vector_float.c,v 1.16 2009/07/12 09:23:09 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: complex_vector_int.c,v 1.9 2009/07/12 09:23:09 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: crc.c,v 1.6 2009/02/03 16:28:39 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -41,70 +39,38 @@
|
||||||
|
|
||||||
static const uint32_t crc_itu32_table[] =
|
static const uint32_t crc_itu32_table[] =
|
||||||
{
|
{
|
||||||
0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA,
|
0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3,
|
||||||
0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3,
|
0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988, 0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91,
|
||||||
0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988,
|
0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE, 0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7,
|
||||||
0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91,
|
0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC, 0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5,
|
||||||
0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE,
|
0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172, 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B,
|
||||||
0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7,
|
0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940, 0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59,
|
||||||
0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC,
|
0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116, 0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F,
|
||||||
0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5,
|
0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924, 0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D,
|
||||||
0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172,
|
0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A, 0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433,
|
||||||
0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B,
|
0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818, 0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01,
|
||||||
0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940,
|
0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E, 0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457,
|
||||||
0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59,
|
0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C, 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65,
|
||||||
0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116,
|
0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2, 0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB,
|
||||||
0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F,
|
0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0, 0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9,
|
||||||
0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924,
|
0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086, 0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F,
|
||||||
0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D,
|
0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4, 0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD,
|
||||||
0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A,
|
0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A, 0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683,
|
||||||
0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433,
|
0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8, 0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1,
|
||||||
0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818,
|
0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE, 0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7,
|
||||||
0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01,
|
0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC, 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5,
|
||||||
0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E,
|
0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252, 0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B,
|
||||||
0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457,
|
0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60, 0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79,
|
||||||
0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C,
|
0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236, 0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F,
|
||||||
0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65,
|
0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04, 0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D,
|
||||||
0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2,
|
0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A, 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713,
|
||||||
0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB,
|
0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38, 0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21,
|
||||||
0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0,
|
0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E, 0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777,
|
||||||
0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9,
|
0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C, 0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45,
|
||||||
0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086,
|
0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2, 0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB,
|
||||||
0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F,
|
0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0, 0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9,
|
||||||
0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4,
|
0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6, 0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF,
|
||||||
0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD,
|
0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94, 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D
|
||||||
0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A,
|
|
||||||
0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683,
|
|
||||||
0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8,
|
|
||||||
0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1,
|
|
||||||
0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE,
|
|
||||||
0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7,
|
|
||||||
0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC,
|
|
||||||
0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5,
|
|
||||||
0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252,
|
|
||||||
0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B,
|
|
||||||
0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60,
|
|
||||||
0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79,
|
|
||||||
0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236,
|
|
||||||
0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F,
|
|
||||||
0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04,
|
|
||||||
0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D,
|
|
||||||
0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A,
|
|
||||||
0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713,
|
|
||||||
0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38,
|
|
||||||
0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21,
|
|
||||||
0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E,
|
|
||||||
0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777,
|
|
||||||
0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C,
|
|
||||||
0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45,
|
|
||||||
0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2,
|
|
||||||
0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB,
|
|
||||||
0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0,
|
|
||||||
0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9,
|
|
||||||
0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6,
|
|
||||||
0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF,
|
|
||||||
0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94,
|
|
||||||
0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D
|
|
||||||
};
|
};
|
||||||
|
|
||||||
SPAN_DECLARE(uint32_t) crc_itu32_calc(const uint8_t *buf, int len, uint32_t crc)
|
SPAN_DECLARE(uint32_t) crc_itu32_calc(const uint8_t *buf, int len, uint32_t crc)
|
||||||
|
@ -194,6 +160,22 @@ SPAN_DECLARE(uint16_t) crc_itu16_calc(const uint8_t *buf, int len, uint16_t crc)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
|
SPAN_DECLARE(uint16_t) crc_itu16_bits(uint8_t buf, int len, uint16_t crc)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
for (i = 0; i < len; i++)
|
||||||
|
{
|
||||||
|
if (((buf ^ crc) & 1))
|
||||||
|
crc = (crc >> 1) ^ 0x8408;
|
||||||
|
else
|
||||||
|
crc = crc >> 1;
|
||||||
|
buf >>= 1;
|
||||||
|
}
|
||||||
|
return crc;
|
||||||
|
}
|
||||||
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(int) crc_itu16_append(uint8_t *buf, int len)
|
SPAN_DECLARE(int) crc_itu16_append(uint8_t *buf, int len)
|
||||||
{
|
{
|
||||||
uint16_t crc;
|
uint16_t crc;
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: dds_float.c,v 1.11 2009/02/03 16:28:39 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: dds_int.c,v 1.16 2009/02/21 04:27:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: dtmf.c,v 1.53 2009/04/12 09:12:10 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -26,8 +26,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: echo.c,v 1.33 2009/09/22 13:11:04 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: fax.c,v 1.96.4.1 2009/12/19 10:44:10 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -55,6 +53,7 @@
|
||||||
#include "spandsp/logging.h"
|
#include "spandsp/logging.h"
|
||||||
#include "spandsp/queue.h"
|
#include "spandsp/queue.h"
|
||||||
#include "spandsp/dc_restore.h"
|
#include "spandsp/dc_restore.h"
|
||||||
|
#include "spandsp/vector_int.h"
|
||||||
#include "spandsp/power_meter.h"
|
#include "spandsp/power_meter.h"
|
||||||
#include "spandsp/complex.h"
|
#include "spandsp/complex.h"
|
||||||
#include "spandsp/tone_detect.h"
|
#include "spandsp/tone_detect.h"
|
||||||
|
@ -62,17 +61,24 @@
|
||||||
#include "spandsp/async.h"
|
#include "spandsp/async.h"
|
||||||
#include "spandsp/hdlc.h"
|
#include "spandsp/hdlc.h"
|
||||||
#include "spandsp/silence_gen.h"
|
#include "spandsp/silence_gen.h"
|
||||||
|
#include "spandsp/super_tone_rx.h"
|
||||||
#include "spandsp/fsk.h"
|
#include "spandsp/fsk.h"
|
||||||
|
#include "spandsp/modem_connect_tones.h"
|
||||||
|
#include "spandsp/v8.h"
|
||||||
#include "spandsp/v29tx.h"
|
#include "spandsp/v29tx.h"
|
||||||
#include "spandsp/v29rx.h"
|
#include "spandsp/v29rx.h"
|
||||||
#include "spandsp/v27ter_tx.h"
|
#include "spandsp/v27ter_tx.h"
|
||||||
#include "spandsp/v27ter_rx.h"
|
#include "spandsp/v27ter_rx.h"
|
||||||
#include "spandsp/v17tx.h"
|
#include "spandsp/v17tx.h"
|
||||||
#include "spandsp/v17rx.h"
|
#include "spandsp/v17rx.h"
|
||||||
#include "spandsp/super_tone_rx.h"
|
|
||||||
#include "spandsp/modem_connect_tones.h"
|
|
||||||
#include "spandsp/t4_rx.h"
|
#include "spandsp/t4_rx.h"
|
||||||
#include "spandsp/t4_tx.h"
|
#include "spandsp/t4_tx.h"
|
||||||
|
#if defined(SPANDSP_SUPPORT_T85)
|
||||||
|
#include "spandsp/t81_t82_arith_coding.h"
|
||||||
|
#include "spandsp/t85.h"
|
||||||
|
#endif
|
||||||
|
#include "spandsp/t4_t6_decode.h"
|
||||||
|
#include "spandsp/t4_t6_encode.h"
|
||||||
|
|
||||||
#include "spandsp/t30_fcf.h"
|
#include "spandsp/t30_fcf.h"
|
||||||
#include "spandsp/t35.h"
|
#include "spandsp/t35.h"
|
||||||
|
@ -86,15 +92,22 @@
|
||||||
#include "spandsp/private/logging.h"
|
#include "spandsp/private/logging.h"
|
||||||
#include "spandsp/private/silence_gen.h"
|
#include "spandsp/private/silence_gen.h"
|
||||||
#include "spandsp/private/fsk.h"
|
#include "spandsp/private/fsk.h"
|
||||||
|
#include "spandsp/private/modem_connect_tones.h"
|
||||||
|
#include "spandsp/private/v8.h"
|
||||||
#include "spandsp/private/v17tx.h"
|
#include "spandsp/private/v17tx.h"
|
||||||
#include "spandsp/private/v17rx.h"
|
#include "spandsp/private/v17rx.h"
|
||||||
#include "spandsp/private/v27ter_tx.h"
|
#include "spandsp/private/v27ter_tx.h"
|
||||||
#include "spandsp/private/v27ter_rx.h"
|
#include "spandsp/private/v27ter_rx.h"
|
||||||
#include "spandsp/private/v29tx.h"
|
#include "spandsp/private/v29tx.h"
|
||||||
#include "spandsp/private/v29rx.h"
|
#include "spandsp/private/v29rx.h"
|
||||||
#include "spandsp/private/modem_connect_tones.h"
|
|
||||||
#include "spandsp/private/hdlc.h"
|
#include "spandsp/private/hdlc.h"
|
||||||
#include "spandsp/private/fax_modems.h"
|
#include "spandsp/private/fax_modems.h"
|
||||||
|
#if defined(SPANDSP_SUPPORT_T85)
|
||||||
|
#include "spandsp/private/t81_t82_arith_coding.h"
|
||||||
|
#include "spandsp/private/t85.h"
|
||||||
|
#endif
|
||||||
|
#include "spandsp/private/t4_t6_decode.h"
|
||||||
|
#include "spandsp/private/t4_t6_encode.h"
|
||||||
#include "spandsp/private/t4_rx.h"
|
#include "spandsp/private/t4_rx.h"
|
||||||
#include "spandsp/private/t4_tx.h"
|
#include "spandsp/private/t4_tx.h"
|
||||||
#include "spandsp/private/t30.h"
|
#include "spandsp/private/t30.h"
|
||||||
|
@ -121,6 +134,17 @@ static void tone_detected(void *user_data, int tone, int level, int delay)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
static void v8_handler(void *user_data, v8_parms_t *result)
|
||||||
|
{
|
||||||
|
fax_state_t *s;
|
||||||
|
|
||||||
|
s = (fax_state_t *) user_data;
|
||||||
|
span_log(&s->logging, SPAN_LOG_FLOW, "V.8 report received\n");
|
||||||
|
}
|
||||||
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
#endif
|
||||||
|
|
||||||
static void hdlc_underflow_handler(void *user_data)
|
static void hdlc_underflow_handler(void *user_data)
|
||||||
{
|
{
|
||||||
t30_state_t *s;
|
t30_state_t *s;
|
||||||
|
@ -284,7 +308,7 @@ static int v29_v21_rx_fillin(void *user_data, int len)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(int) fax_rx(fax_state_t *s, int16_t *amp, int len)
|
SPAN_DECLARE_NONSTD(int) fax_rx(fax_state_t *s, int16_t *amp, int len)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
@ -300,7 +324,7 @@ SPAN_DECLARE(int) fax_rx(fax_state_t *s, int16_t *amp, int len)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(int) fax_rx_fillin(fax_state_t *s, int len)
|
SPAN_DECLARE_NONSTD(int) fax_rx_fillin(fax_state_t *s, int len)
|
||||||
{
|
{
|
||||||
/* To mitigate the effect of lost packets on a packet network we should
|
/* To mitigate the effect of lost packets on a packet network we should
|
||||||
try to sustain the status quo. If there is no receive modem running, keep
|
try to sustain the status quo. If there is no receive modem running, keep
|
||||||
|
@ -348,7 +372,7 @@ static int set_next_tx_type(fax_state_t *s)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(int) fax_tx(fax_state_t *s, int16_t *amp, int max_len)
|
SPAN_DECLARE_NONSTD(int) fax_tx(fax_state_t *s, int16_t *amp, int max_len)
|
||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
#if defined(LOG_FAX_AUDIO)
|
#if defined(LOG_FAX_AUDIO)
|
||||||
|
@ -577,33 +601,32 @@ SPAN_DECLARE(logging_state_t *) fax_get_logging_state(fax_state_t *s)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(fax_state_t *) fax_init(fax_state_t *s, int calling_party)
|
SPAN_DECLARE(int) fax_restart(fax_state_t *s, int calling_party)
|
||||||
{
|
{
|
||||||
if (s == NULL)
|
#if 0
|
||||||
{
|
v8_parms_t v8_parms;
|
||||||
if ((s = (fax_state_t *) malloc(sizeof(*s))) == NULL)
|
#endif
|
||||||
return NULL;
|
|
||||||
}
|
fax_modems_restart(&s->modems);
|
||||||
memset(s, 0, sizeof(*s));
|
#if 0
|
||||||
span_log_init(&s->logging, SPAN_LOG_NONE, NULL);
|
v8_parms.modem_connect_tone = MODEM_CONNECT_TONES_ANSAM_PR;
|
||||||
span_log_set_protocol(&s->logging, "FAX");
|
v8_parms.call_function = V8_CALL_T30_RX;
|
||||||
fax_modems_init(&s->modems,
|
v8_parms.modulations = V8_MOD_V21;
|
||||||
FALSE,
|
if (s->t30.supported_modems & T30_SUPPORT_V27TER)
|
||||||
t30_hdlc_accept,
|
v8_parms.modulations |= V8_MOD_V27TER;
|
||||||
hdlc_underflow_handler,
|
if (s->t30.supported_modems & T30_SUPPORT_V29)
|
||||||
t30_non_ecm_put_bit,
|
v8_parms.modulations |= V8_MOD_V29;
|
||||||
t30_non_ecm_get_bit,
|
if (s->t30.supported_modems & T30_SUPPORT_V17)
|
||||||
tone_detected,
|
v8_parms.modulations |= V8_MOD_V17;
|
||||||
&s->t30);
|
if (s->t30.supported_modems & T30_SUPPORT_V34HDX)
|
||||||
t30_init(&s->t30,
|
v8_parms.modulations |= V8_MOD_V34HDX;
|
||||||
calling_party,
|
v8_parms.protocol = V8_PROTOCOL_NONE;
|
||||||
fax_set_rx_type,
|
v8_parms.pcm_modem_availability = 0;
|
||||||
(void *) s,
|
v8_parms.pstn_access = 0;
|
||||||
fax_set_tx_type,
|
v8_parms.nsf = -1;
|
||||||
(void *) s,
|
v8_parms.t66 = -1;
|
||||||
fax_send_hdlc,
|
v8_restart(&s->v8, calling_party, &v8_parms);
|
||||||
(void *) s);
|
#endif
|
||||||
t30_set_supported_modems(&s->t30, T30_SUPPORT_V27TER | T30_SUPPORT_V29 | T30_SUPPORT_V17);
|
|
||||||
t30_restart(&s->t30);
|
t30_restart(&s->t30);
|
||||||
#if defined(LOG_FAX_AUDIO)
|
#if defined(LOG_FAX_AUDIO)
|
||||||
{
|
{
|
||||||
|
@ -635,6 +658,61 @@ SPAN_DECLARE(fax_state_t *) fax_init(fax_state_t *s, int calling_party)
|
||||||
s->modems.audio_tx_log = open(buf, O_CREAT | O_TRUNC | O_WRONLY, 0666);
|
s->modems.audio_tx_log = open(buf, O_CREAT | O_TRUNC | O_WRONLY, 0666);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
|
SPAN_DECLARE(fax_state_t *) fax_init(fax_state_t *s, int calling_party)
|
||||||
|
{
|
||||||
|
#if 0
|
||||||
|
v8_parms_t v8_parms;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (s == NULL)
|
||||||
|
{
|
||||||
|
if ((s = (fax_state_t *) malloc(sizeof(*s))) == NULL)
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
memset(s, 0, sizeof(*s));
|
||||||
|
span_log_init(&s->logging, SPAN_LOG_NONE, NULL);
|
||||||
|
span_log_set_protocol(&s->logging, "FAX");
|
||||||
|
fax_modems_init(&s->modems,
|
||||||
|
FALSE,
|
||||||
|
t30_hdlc_accept,
|
||||||
|
hdlc_underflow_handler,
|
||||||
|
t30_non_ecm_put_bit,
|
||||||
|
t30_non_ecm_get_bit,
|
||||||
|
tone_detected,
|
||||||
|
&s->t30);
|
||||||
|
t30_init(&s->t30,
|
||||||
|
calling_party,
|
||||||
|
fax_set_rx_type,
|
||||||
|
(void *) s,
|
||||||
|
fax_set_tx_type,
|
||||||
|
(void *) s,
|
||||||
|
fax_send_hdlc,
|
||||||
|
(void *) s);
|
||||||
|
t30_set_supported_modems(&s->t30, T30_SUPPORT_V27TER | T30_SUPPORT_V29 | T30_SUPPORT_V17);
|
||||||
|
#if 0
|
||||||
|
v8_parms.modem_connect_tone = MODEM_CONNECT_TONES_ANSAM_PR;
|
||||||
|
v8_parms.call_function = V8_CALL_T30_RX;
|
||||||
|
v8_parms.modulations = V8_MOD_V21;
|
||||||
|
if (s->t30.supported_modems & T30_SUPPORT_V27TER)
|
||||||
|
v8_parms.modulations |= V8_MOD_V27TER;
|
||||||
|
if (s->t30.supported_modems & T30_SUPPORT_V29)
|
||||||
|
v8_parms.modulations |= V8_MOD_V29;
|
||||||
|
if (s->t30.supported_modems & T30_SUPPORT_V17)
|
||||||
|
v8_parms.modulations |= V8_MOD_V17;
|
||||||
|
if (s->t30.supported_modems & T30_SUPPORT_V34HDX)
|
||||||
|
v8_parms.modulations |= V8_MOD_V34HDX;
|
||||||
|
v8_parms.protocol = V8_PROTOCOL_NONE;
|
||||||
|
v8_parms.pcm_modem_availability = 0;
|
||||||
|
v8_parms.pstn_access = 0;
|
||||||
|
v8_parms.nsf = -1;
|
||||||
|
v8_parms.t66 = -1;
|
||||||
|
v8_init(&s->v8, calling_party, &v8_parms, v8_handler, s);
|
||||||
|
#endif
|
||||||
|
fax_restart(s, calling_party);
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: fax_modems.c,v 1.8 2009/11/02 13:25:20 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -88,7 +86,7 @@
|
||||||
|
|
||||||
#define HDLC_FRAMING_OK_THRESHOLD 5
|
#define HDLC_FRAMING_OK_THRESHOLD 5
|
||||||
|
|
||||||
SPAN_DECLARE(int) fax_modems_v17_v21_rx(void *user_data, const int16_t amp[], int len)
|
SPAN_DECLARE_NONSTD(int) fax_modems_v17_v21_rx(void *user_data, const int16_t amp[], int len)
|
||||||
{
|
{
|
||||||
fax_modems_state_t *s;
|
fax_modems_state_t *s;
|
||||||
|
|
||||||
|
@ -108,7 +106,7 @@ SPAN_DECLARE(int) fax_modems_v17_v21_rx(void *user_data, const int16_t amp[], in
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(int) fax_modems_v17_v21_rx_fillin(void *user_data, int len)
|
SPAN_DECLARE_NONSTD(int) fax_modems_v17_v21_rx_fillin(void *user_data, int len)
|
||||||
{
|
{
|
||||||
fax_modems_state_t *s;
|
fax_modems_state_t *s;
|
||||||
|
|
||||||
|
@ -119,7 +117,7 @@ SPAN_DECLARE(int) fax_modems_v17_v21_rx_fillin(void *user_data, int len)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(int) fax_modems_v27ter_v21_rx(void *user_data, const int16_t amp[], int len)
|
SPAN_DECLARE_NONSTD(int) fax_modems_v27ter_v21_rx(void *user_data, const int16_t amp[], int len)
|
||||||
{
|
{
|
||||||
fax_modems_state_t *s;
|
fax_modems_state_t *s;
|
||||||
|
|
||||||
|
@ -139,7 +137,7 @@ SPAN_DECLARE(int) fax_modems_v27ter_v21_rx(void *user_data, const int16_t amp[],
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(int) fax_modems_v27ter_v21_rx_fillin(void *user_data, int len)
|
SPAN_DECLARE_NONSTD(int) fax_modems_v27ter_v21_rx_fillin(void *user_data, int len)
|
||||||
{
|
{
|
||||||
fax_modems_state_t *s;
|
fax_modems_state_t *s;
|
||||||
|
|
||||||
|
@ -150,7 +148,7 @@ SPAN_DECLARE(int) fax_modems_v27ter_v21_rx_fillin(void *user_data, int len)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(int) fax_modems_v29_v21_rx(void *user_data, const int16_t amp[], int len)
|
SPAN_DECLARE_NONSTD(int) fax_modems_v29_v21_rx(void *user_data, const int16_t amp[], int len)
|
||||||
{
|
{
|
||||||
fax_modems_state_t *s;
|
fax_modems_state_t *s;
|
||||||
|
|
||||||
|
@ -170,7 +168,7 @@ SPAN_DECLARE(int) fax_modems_v29_v21_rx(void *user_data, const int16_t amp[], in
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(int) fax_modems_v29_v21_rx_fillin(void *user_data, int len)
|
SPAN_DECLARE_NONSTD(int) fax_modems_v29_v21_rx_fillin(void *user_data, int len)
|
||||||
{
|
{
|
||||||
fax_modems_state_t *s;
|
fax_modems_state_t *s;
|
||||||
|
|
||||||
|
@ -264,6 +262,12 @@ SPAN_DECLARE(void) fax_modems_set_tep_mode(fax_modems_state_t *s, int use_tep)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
|
SPAN_DECLARE(int) fax_modems_restart(fax_modems_state_t *s)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(fax_modems_state_t *) fax_modems_init(fax_modems_state_t *s,
|
SPAN_DECLARE(fax_modems_state_t *) fax_modems_init(fax_modems_state_t *s,
|
||||||
int use_tep,
|
int use_tep,
|
||||||
hdlc_frame_handler_t hdlc_accept,
|
hdlc_frame_handler_t hdlc_accept,
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: faxfont.h,v 1.6 2008/04/17 14:26:56 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_FAXFONT_H_)
|
#if !defined(_FAXFONT_H_)
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: filter_tools.c,v 1.11 2009/10/05 16:33:25 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: filter_tools.h,v 1.3 2008/04/17 14:26:56 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_FILTER_TOOLS_H_)
|
#if !defined(_FILTER_TOOLS_H_)
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: floating_fudge.h,v 1.7 2009/02/03 16:28:39 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_FLOATING_FUDGE_H_)
|
#if !defined(_FLOATING_FUDGE_H_)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: fsk.c,v 1.60 2009/11/02 13:25:20 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -566,7 +564,7 @@ SPAN_DECLARE_NONSTD(int) fsk_rx(fsk_rx_state_t *s, const int16_t *amp, int len)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(int) fsk_rx_fillin(fsk_rx_state_t *s, int len)
|
SPAN_DECLARE_NONSTD(int) fsk_rx_fillin(fsk_rx_state_t *s, int len)
|
||||||
{
|
{
|
||||||
/* The valid choice here is probably to do nothing. We don't change state
|
/* The valid choice here is probably to do nothing. We don't change state
|
||||||
(i.e carrier on<->carrier off), and we'll just output less bits than we
|
(i.e carrier on<->carrier off), and we'll just output less bits than we
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: g711.c,v 1.16 2009/02/10 13:06:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -27,8 +27,6 @@
|
||||||
* Copyright (c) CMU 1993
|
* Copyright (c) CMU 1993
|
||||||
* Computer Science, Speech Group
|
* Computer Science, Speech Group
|
||||||
* Chengxiang Lu and Alex Hauptmann
|
* Chengxiang Lu and Alex Hauptmann
|
||||||
*
|
|
||||||
* $Id: g722.c,v 1.10 2009/04/22 12:57:40 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -47,8 +47,6 @@
|
||||||
* Sun Microsystems, Inc.
|
* Sun Microsystems, Inc.
|
||||||
* 2550 Garcia Avenue
|
* 2550 Garcia Avenue
|
||||||
* Mountain View, California 94043
|
* Mountain View, California 94043
|
||||||
*
|
|
||||||
* $Id: g726.c,v 1.28.4.1 2009/12/28 12:20:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
*
|
*
|
||||||
* This code is based on the widely used GSM 06.10 code available from
|
* This code is based on the widely used GSM 06.10 code available from
|
||||||
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||||
*
|
|
||||||
* $Id: gsm0610_decode.c,v 1.25 2009/02/03 16:28:39 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
*
|
*
|
||||||
* This code is based on the widely used GSM 06.10 code available from
|
* This code is based on the widely used GSM 06.10 code available from
|
||||||
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||||
*
|
|
||||||
* $Id: gsm0610_encode.c,v 1.30 2009/02/10 13:06:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
*
|
*
|
||||||
* This code is based on the widely used GSM 06.10 code available from
|
* This code is based on the widely used GSM 06.10 code available from
|
||||||
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||||
*
|
|
||||||
* $Id: gsm0610_local.h,v 1.15 2009/03/13 15:57:29 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_GSM0610_LOCAL_H_)
|
#if !defined(_GSM0610_LOCAL_H_)
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
*
|
*
|
||||||
* This code is based on the widely used GSM 06.10 code available from
|
* This code is based on the widely used GSM 06.10 code available from
|
||||||
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||||
*
|
|
||||||
* $Id: gsm0610_long_term.c,v 1.24 2009/04/20 16:36:36 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
*
|
*
|
||||||
* This code is based on the widely used GSM 06.10 code available from
|
* This code is based on the widely used GSM 06.10 code available from
|
||||||
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||||
*
|
|
||||||
* $Id: gsm0610_lpc.c,v 1.29 2009/02/05 15:57:27 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
*
|
*
|
||||||
* This code is based on the widely used GSM 06.10 code available from
|
* This code is based on the widely used GSM 06.10 code available from
|
||||||
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||||
*
|
|
||||||
* $Id: gsm0610_preprocess.c,v 1.17 2009/02/03 16:28:39 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
*
|
*
|
||||||
* This code is based on the widely used GSM 06.10 code available from
|
* This code is based on the widely used GSM 06.10 code available from
|
||||||
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||||
*
|
|
||||||
* $Id: gsm0610_rpe.c,v 1.25.4.2 2009/12/28 11:54:58 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -172,7 +170,7 @@ static void weighting_filter(int16_t x[40],
|
||||||
: "eax", "edx", "esi", "memory"
|
: "eax", "edx", "esi", "memory"
|
||||||
);
|
);
|
||||||
#else
|
#else
|
||||||
int32_t L_result;
|
int32_t result;
|
||||||
int k;
|
int k;
|
||||||
|
|
||||||
/* The coefficients of the weighting filter are stored in a table
|
/* The coefficients of the weighting filter are stored in a table
|
||||||
|
@ -194,12 +192,12 @@ static void weighting_filter(int16_t x[40],
|
||||||
/* Compute the signal x[0..39] */
|
/* Compute the signal x[0..39] */
|
||||||
for (k = 0; k < 40; k++)
|
for (k = 0; k < 40; k++)
|
||||||
{
|
{
|
||||||
L_result = 8192 >> 1;
|
result = 8192 >> 1;
|
||||||
|
|
||||||
/* for (i = 0; i <= 10; i++)
|
/* for (i = 0; i <= 10; i++)
|
||||||
* {
|
* {
|
||||||
* L_temp = saturated_mul_16_32(wt[k + i], gsm_H[i]);
|
* temp = saturated_mul16_32(wt[k + i], gsm_H[i]);
|
||||||
* L_result = saturated_add32(L_result, L_temp);
|
* result = saturated_add32(result, temp);
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -210,22 +208,22 @@ static void weighting_filter(int16_t x[40],
|
||||||
but I don't see an elegant way to optimize this.
|
but I don't see an elegant way to optimize this.
|
||||||
Do you?
|
Do you?
|
||||||
*/
|
*/
|
||||||
L_result += STEP( 0, -134);
|
result += STEP( 0, -134);
|
||||||
L_result += STEP( 1, -374);
|
result += STEP( 1, -374);
|
||||||
/* += STEP( 2, 0 ); */
|
/* += STEP( 2, 0 ); */
|
||||||
L_result += STEP( 3, 2054);
|
result += STEP( 3, 2054);
|
||||||
L_result += STEP( 4, 5741);
|
result += STEP( 4, 5741);
|
||||||
L_result += STEP( 5, 8192);
|
result += STEP( 5, 8192);
|
||||||
L_result += STEP( 6, 5741);
|
result += STEP( 6, 5741);
|
||||||
L_result += STEP( 7, 2054);
|
result += STEP( 7, 2054);
|
||||||
/* += STEP( 8, 0 ); */
|
/* += STEP( 8, 0 ); */
|
||||||
L_result += STEP( 9, -374);
|
result += STEP( 9, -374);
|
||||||
L_result += STEP(10, -134);
|
result += STEP(10, -134);
|
||||||
|
|
||||||
/* 2 adds vs. >> 16 => 14, minus one shift to compensate for
|
/* 2 adds vs. >> 16 => 14, minus one shift to compensate for
|
||||||
those we lost when replacing L_MULT by '*'. */
|
those we lost when replacing L_MULT by '*'. */
|
||||||
L_result >>= 13;
|
result >>= 13;
|
||||||
x[k] = saturate(L_result);
|
x[k] = saturate(result);
|
||||||
}
|
}
|
||||||
/*endfor*/
|
/*endfor*/
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
*
|
*
|
||||||
* This code is based on the widely used GSM 06.10 code available from
|
* This code is based on the widely used GSM 06.10 code available from
|
||||||
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
* http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||||
*
|
|
||||||
* $Id: gsm0610_short_term.c,v 1.19 2009/02/03 16:28:39 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: hdlc.c,v 1.72 2009/06/02 16:03:56 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: ima_adpcm.c,v 1.36 2009/04/11 18:11:19 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: logging.c,v 1.32 2009/02/10 17:44:18 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
* This code is based on the U.S. Department of Defense reference
|
* This code is based on the U.S. Department of Defense reference
|
||||||
* implementation of the LPC-10 2400 bps Voice Coder. They do not
|
* implementation of the LPC-10 2400 bps Voice Coder. They do not
|
||||||
* exert copyright claims on their code, and it may be freely used.
|
* exert copyright claims on their code, and it may be freely used.
|
||||||
*
|
|
||||||
* $Id: lpc10_analyse.c,v 1.22 2009/01/28 03:41:27 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
* This code is based on the U.S. Department of Defense reference
|
* This code is based on the U.S. Department of Defense reference
|
||||||
* implementation of the LPC-10 2400 bps Voice Coder. They do not
|
* implementation of the LPC-10 2400 bps Voice Coder. They do not
|
||||||
* exert copyright claims on their code, and it may be freely used.
|
* exert copyright claims on their code, and it may be freely used.
|
||||||
*
|
|
||||||
* $Id: lpc10_decode.c,v 1.27.4.1 2009/12/24 17:00:19 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
@ -251,6 +249,7 @@ static int pitsyn(lpc10_decode_state_t *s,
|
||||||
float slope;
|
float slope;
|
||||||
float uvpit;
|
float uvpit;
|
||||||
float xxy;
|
float xxy;
|
||||||
|
float msix;
|
||||||
|
|
||||||
rci_dim1 = LPC10_ORDER;
|
rci_dim1 = LPC10_ORDER;
|
||||||
rci_offset = rci_dim1 + 1;
|
rci_offset = rci_dim1 + 1;
|
||||||
|
@ -446,7 +445,10 @@ static int pitsyn(lpc10_decode_state_t *s,
|
||||||
xxy = expf(xxy);
|
xxy = expf(xxy);
|
||||||
rci[j + *nout*rci_dim1 + 1] = (xxy - 1.0f)/(xxy + 1.0f);
|
rci[j + *nout*rci_dim1 + 1] = (xxy - 1.0f)/(xxy + 1.0f);
|
||||||
}
|
}
|
||||||
rmsi[*nout - 1] = expf(logf(s->rmso) + prop*(logf(*rms) - logf(s->rmso)));
|
msix = logf(*rms) - logf(s->rmso);
|
||||||
|
msix = prop*msix;
|
||||||
|
msix = logf(s->rmso) + msix;
|
||||||
|
rmsi[*nout - 1] = expf(msix);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (vflag != 1)
|
if (vflag != 1)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: lpc10_encdecs.h,v 1.11 2008/04/17 14:26:56 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define LPC10_ORDER 10
|
#define LPC10_ORDER 10
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
* This code is based on the U.S. Department of Defense reference
|
* This code is based on the U.S. Department of Defense reference
|
||||||
* implementation of the LPC-10 2400 bps Voice Coder. They do not
|
* implementation of the LPC-10 2400 bps Voice Coder. They do not
|
||||||
* exert copyright claims on their code, and it may be freely used.
|
* exert copyright claims on their code, and it may be freely used.
|
||||||
*
|
|
||||||
* $Id: lpc10_encode.c,v 1.28 2009/02/10 13:06:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
* This code is based on the U.S. Department of Defense reference
|
* This code is based on the U.S. Department of Defense reference
|
||||||
* implementation of the LPC-10 2400 bps Voice Coder. They do not
|
* implementation of the LPC-10 2400 bps Voice Coder. They do not
|
||||||
* exert copyright claims on their code, and it may be freely used.
|
* exert copyright claims on their code, and it may be freely used.
|
||||||
*
|
|
||||||
* $Id: lpc10_placev.c,v 1.19 2009/01/28 03:41:27 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
* This code is based on the U.S. Department of Defense reference
|
* This code is based on the U.S. Department of Defense reference
|
||||||
* implementation of the LPC-10 2400 bps Voice Coder. They do not
|
* implementation of the LPC-10 2400 bps Voice Coder. They do not
|
||||||
* exert copyright claims on their code, and it may be freely used.
|
* exert copyright claims on their code, and it may be freely used.
|
||||||
*
|
|
||||||
* $Id: lpc10_voicing.c,v 1.18 2009/02/03 16:28:39 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -11,19 +11,17 @@
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Lesser General Public License version 2.1,
|
* it under the terms of the GNU General Public License version 2, as
|
||||||
* as published by the Free Software Foundation.
|
* published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU Lesser General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU General Public License
|
||||||
* License along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: make_at_dictionary.c,v 1.6 2009/10/09 14:53:57 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: make_modem_filter.c,v 1.17.4.1 2009/12/28 12:20:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
@ -328,7 +326,8 @@ int main(int argc, char **argv)
|
||||||
double baud_rate;
|
double baud_rate;
|
||||||
double rx_excess_bandwidth;
|
double rx_excess_bandwidth;
|
||||||
double tx_excess_bandwidth;
|
double tx_excess_bandwidth;
|
||||||
const char *tag;
|
const char *rx_tag;
|
||||||
|
const char *tx_tag;
|
||||||
const char *modem;
|
const char *modem;
|
||||||
|
|
||||||
fixed_point = FALSE;
|
fixed_point = FALSE;
|
||||||
|
@ -367,58 +366,50 @@ int main(int argc, char **argv)
|
||||||
tx_excess_bandwidth = 0.25;
|
tx_excess_bandwidth = 0.25;
|
||||||
carrier = 1800.0;
|
carrier = 1800.0;
|
||||||
baud_rate = 2400.0;
|
baud_rate = 2400.0;
|
||||||
tag = "";
|
rx_tag = "";
|
||||||
|
tx_tag = "";
|
||||||
}
|
}
|
||||||
else if (strcmp(modem, "V.22bis") == 0)
|
else if (strcmp(modem, "V.22bis") == 0)
|
||||||
{
|
{
|
||||||
/* This is only intended to apply to transmit. */
|
/* This is only intended to apply to transmit. */
|
||||||
rx_coeff_sets = 12;
|
rx_coeff_sets = 12;
|
||||||
rx_coeffs_per_filter = 37;
|
rx_coeffs_per_filter = 27;
|
||||||
rx_excess_bandwidth = 0.75;
|
rx_excess_bandwidth = 0.75;
|
||||||
tx_coeff_sets = 40;
|
tx_coeff_sets = 40;
|
||||||
tx_coeffs_per_filter = 9;
|
tx_coeffs_per_filter = 9;
|
||||||
tx_excess_bandwidth = 0.75;
|
tx_excess_bandwidth = 0.75;
|
||||||
carrier = 1200.0;
|
carrier = 1200.0;
|
||||||
baud_rate = 600.0;
|
baud_rate = 600.0;
|
||||||
tag = "";
|
rx_tag = "";
|
||||||
|
tx_tag = "";
|
||||||
}
|
}
|
||||||
else if (strcmp(modem, "V.22bis1200") == 0)
|
else if (strcmp(modem, "V.22bis1200") == 0)
|
||||||
{
|
{
|
||||||
/* This is only intended to apply to receive. */
|
/* This is only intended to apply to receive. */
|
||||||
rx_coeff_sets = 12;
|
rx_coeff_sets = 12;
|
||||||
rx_coeffs_per_filter = 37;
|
rx_coeffs_per_filter = 27;
|
||||||
rx_excess_bandwidth = 0.75;
|
rx_excess_bandwidth = 0.75;
|
||||||
tx_coeff_sets = 40;
|
tx_coeff_sets = 40;
|
||||||
tx_coeffs_per_filter = 9;
|
tx_coeffs_per_filter = 9;
|
||||||
tx_excess_bandwidth = 0.75;
|
tx_excess_bandwidth = 0.75;
|
||||||
carrier = 1200.0;
|
carrier = 1200.0;
|
||||||
baud_rate = 600.0;
|
baud_rate = 600.0;
|
||||||
tag = "_1200";
|
rx_tag = "_1200";
|
||||||
|
tx_tag = "_1200";
|
||||||
}
|
}
|
||||||
else if (strcmp(modem, "V.22bis2400") == 0)
|
else if (strcmp(modem, "V.22bis2400") == 0)
|
||||||
{
|
{
|
||||||
/* This is only intended to apply to receive. */
|
/* This is only intended to apply to receive. */
|
||||||
rx_coeff_sets = 12;
|
rx_coeff_sets = 12;
|
||||||
rx_coeffs_per_filter = 37;
|
rx_coeffs_per_filter = 27;
|
||||||
rx_excess_bandwidth = 0.75;
|
rx_excess_bandwidth = 0.75;
|
||||||
tx_coeff_sets = 40;
|
tx_coeff_sets = 40;
|
||||||
tx_coeffs_per_filter = 9;
|
tx_coeffs_per_filter = 9;
|
||||||
tx_excess_bandwidth = 0.75;
|
tx_excess_bandwidth = 0.75;
|
||||||
carrier = 2400.0;
|
carrier = 2400.0;
|
||||||
baud_rate = 600.0;
|
baud_rate = 600.0;
|
||||||
tag = "_2400";
|
rx_tag = "_2400";
|
||||||
}
|
tx_tag = "_2400";
|
||||||
else if (strcmp(modem, "V.27ter4800") == 0)
|
|
||||||
{
|
|
||||||
rx_coeff_sets = 8;
|
|
||||||
rx_coeffs_per_filter = 27;
|
|
||||||
rx_excess_bandwidth = 0.5;
|
|
||||||
tx_coeff_sets = 5;
|
|
||||||
tx_coeffs_per_filter = 9;
|
|
||||||
tx_excess_bandwidth = 0.5;
|
|
||||||
carrier = 1800.0;
|
|
||||||
baud_rate = 1600.0;
|
|
||||||
tag = "_4800";
|
|
||||||
}
|
}
|
||||||
else if (strcmp(modem, "V.27ter2400") == 0)
|
else if (strcmp(modem, "V.27ter2400") == 0)
|
||||||
{
|
{
|
||||||
|
@ -430,7 +421,21 @@ int main(int argc, char **argv)
|
||||||
tx_excess_bandwidth = 0.5;
|
tx_excess_bandwidth = 0.5;
|
||||||
carrier = 1800.0;
|
carrier = 1800.0;
|
||||||
baud_rate = 1200.0;
|
baud_rate = 1200.0;
|
||||||
tag = "_2400";
|
rx_tag = "_2400";
|
||||||
|
tx_tag = "_2400";
|
||||||
|
}
|
||||||
|
else if (strcmp(modem, "V.27ter4800") == 0)
|
||||||
|
{
|
||||||
|
rx_coeff_sets = 8;
|
||||||
|
rx_coeffs_per_filter = 27;
|
||||||
|
rx_excess_bandwidth = 0.5;
|
||||||
|
tx_coeff_sets = 5;
|
||||||
|
tx_coeffs_per_filter = 9;
|
||||||
|
tx_excess_bandwidth = 0.5;
|
||||||
|
carrier = 1800.0;
|
||||||
|
baud_rate = 1600.0;
|
||||||
|
rx_tag = "_4800";
|
||||||
|
tx_tag = "_4800";
|
||||||
}
|
}
|
||||||
else if (strcmp(modem, "V.29") == 0)
|
else if (strcmp(modem, "V.29") == 0)
|
||||||
{
|
{
|
||||||
|
@ -442,7 +447,8 @@ int main(int argc, char **argv)
|
||||||
tx_excess_bandwidth = 0.25;
|
tx_excess_bandwidth = 0.25;
|
||||||
carrier = 1700.0;
|
carrier = 1700.0;
|
||||||
baud_rate = 2400.0;
|
baud_rate = 2400.0;
|
||||||
tag = "";
|
rx_tag = "";
|
||||||
|
tx_tag = "";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -457,7 +463,7 @@ int main(int argc, char **argv)
|
||||||
baud_rate,
|
baud_rate,
|
||||||
tx_excess_bandwidth,
|
tx_excess_bandwidth,
|
||||||
fixed_point,
|
fixed_point,
|
||||||
tag);
|
tx_tag);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -467,7 +473,7 @@ int main(int argc, char **argv)
|
||||||
baud_rate,
|
baud_rate,
|
||||||
rx_excess_bandwidth,
|
rx_excess_bandwidth,
|
||||||
fixed_point,
|
fixed_point,
|
||||||
tag);
|
rx_tag);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: mmx_sse_decs.h,v 1.1 2009/07/12 09:23:09 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_MMX_SSE_DECS_H_)
|
#if !defined(_MMX_SSE_DECS_H_)
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: modem_connect_tones.c,v 1.41 2009/11/06 19:21:33 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: modem_echo.c,v 1.26 2009/09/22 13:11:04 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -55,7 +53,16 @@
|
||||||
|
|
||||||
#include "spandsp/private/modem_echo.h"
|
#include "spandsp/private/modem_echo.h"
|
||||||
|
|
||||||
SPAN_DECLARE(modem_echo_can_state_t *) modem_echo_can_create(int len)
|
SPAN_DECLARE(void) modem_echo_can_free(modem_echo_can_state_t *ec)
|
||||||
|
{
|
||||||
|
fir16_free(&ec->fir_state);
|
||||||
|
free(ec->fir_taps32);
|
||||||
|
free(ec->fir_taps16);
|
||||||
|
free(ec);
|
||||||
|
}
|
||||||
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
|
SPAN_DECLARE(modem_echo_can_state_t *) modem_echo_can_init(int len)
|
||||||
{
|
{
|
||||||
modem_echo_can_state_t *ec;
|
modem_echo_can_state_t *ec;
|
||||||
|
|
||||||
|
@ -88,15 +95,6 @@ SPAN_DECLARE(modem_echo_can_state_t *) modem_echo_can_create(int len)
|
||||||
}
|
}
|
||||||
/*- End of function --------------------------------------------------------*/
|
/*- End of function --------------------------------------------------------*/
|
||||||
|
|
||||||
SPAN_DECLARE(void) modem_echo_can_free(modem_echo_can_state_t *ec)
|
|
||||||
{
|
|
||||||
fir16_free(&ec->fir_state);
|
|
||||||
free(ec->fir_taps32);
|
|
||||||
free(ec->fir_taps16);
|
|
||||||
free(ec);
|
|
||||||
}
|
|
||||||
/*- End of function --------------------------------------------------------*/
|
|
||||||
|
|
||||||
SPAN_DECLARE(void) modem_echo_can_flush(modem_echo_can_state_t *ec)
|
SPAN_DECLARE(void) modem_echo_can_flush(modem_echo_can_state_t *ec)
|
||||||
{
|
{
|
||||||
ec->tx_power = 0;
|
ec->tx_power = 0;
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* This file is released in the public domain.
|
* This file is released in the public domain.
|
||||||
*
|
|
||||||
* $Id: config.h,v 1.4 2009/02/25 15:30:21 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_MSVC_CONFIG_H_)
|
#if !defined(_MSVC_CONFIG_H_)
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: noise.c,v 1.31 2009/02/10 13:06:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -28,8 +28,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: playout.c,v 1.17 2009/02/10 13:06:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: plc.c,v 1.27.4.1 2009/12/23 14:23:49 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: power_meter.c,v 1.31 2009/05/30 17:29:23 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: queue.c,v 1.31 2009/04/11 18:11:19 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: schedule.c,v 1.22 2009/02/10 13:06:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: sig_tone.c,v 1.40 2010/05/12 15:32:41 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -634,8 +632,8 @@ SPAN_DECLARE(void) sig_tone_rx_set_mode(sig_tone_rx_state_t *s, int mode, int du
|
||||||
|
|
||||||
SPAN_DECLARE(sig_tone_rx_state_t *) sig_tone_rx_init(sig_tone_rx_state_t *s, int tone_type, tone_report_func_t sig_update, void *user_data)
|
SPAN_DECLARE(sig_tone_rx_state_t *) sig_tone_rx_init(sig_tone_rx_state_t *s, int tone_type, tone_report_func_t sig_update, void *user_data)
|
||||||
{
|
{
|
||||||
#if !defined(SPANDSP_USE_FIXED_POINT)
|
|
||||||
int i;
|
int i;
|
||||||
|
#if !defined(SPANDSP_USE_FIXED_POINT)
|
||||||
int j;
|
int j;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: silence_gen.c,v 1.23 2009/09/04 14:38:46 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: spandsp.h.in,v 1.19.4.1 2009/12/19 09:47:56 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -85,19 +83,26 @@
|
||||||
#include <spandsp/fsk.h>
|
#include <spandsp/fsk.h>
|
||||||
#include <spandsp/modem_connect_tones.h>
|
#include <spandsp/modem_connect_tones.h>
|
||||||
#include <spandsp/silence_gen.h>
|
#include <spandsp/silence_gen.h>
|
||||||
|
#include <spandsp/v8.h>
|
||||||
|
#include <spandsp/v42.h>
|
||||||
|
#include <spandsp/v42bis.h>
|
||||||
#include <spandsp/v29rx.h>
|
#include <spandsp/v29rx.h>
|
||||||
#include <spandsp/v29tx.h>
|
#include <spandsp/v29tx.h>
|
||||||
#include <spandsp/v17rx.h>
|
#include <spandsp/v17rx.h>
|
||||||
#include <spandsp/v17tx.h>
|
#include <spandsp/v17tx.h>
|
||||||
|
/*#include <spandsp/v32bis.h>*/
|
||||||
#include <spandsp/v22bis.h>
|
#include <spandsp/v22bis.h>
|
||||||
#include <spandsp/v27ter_rx.h>
|
#include <spandsp/v27ter_rx.h>
|
||||||
#include <spandsp/v27ter_tx.h>
|
#include <spandsp/v27ter_tx.h>
|
||||||
#include <spandsp/v8.h>
|
/*#include <spandsp/v34.h>*/
|
||||||
#include <spandsp/v18.h>
|
#include <spandsp/v18.h>
|
||||||
#include <spandsp/v42.h>
|
|
||||||
#include <spandsp/v42bis.h>
|
|
||||||
#include <spandsp/t4_rx.h>
|
#include <spandsp/t4_rx.h>
|
||||||
#include <spandsp/t4_tx.h>
|
#include <spandsp/t4_tx.h>
|
||||||
|
#include <spandsp/image_translate.h>
|
||||||
|
#include <spandsp/t4_t6_decode.h>
|
||||||
|
#include <spandsp/t4_t6_encode.h>
|
||||||
|
/*#include <spandsp/t81_t82_arith_coding.h>*/
|
||||||
|
/*#include <spandsp/t85.h>*/
|
||||||
#include <spandsp/t30.h>
|
#include <spandsp/t30.h>
|
||||||
#include <spandsp/t30_api.h>
|
#include <spandsp/t30_api.h>
|
||||||
#include <spandsp/t30_fcf.h>
|
#include <spandsp/t30_fcf.h>
|
||||||
|
@ -120,6 +125,7 @@
|
||||||
#include <spandsp/gsm0610.h>
|
#include <spandsp/gsm0610.h>
|
||||||
#include <spandsp/plc.h>
|
#include <spandsp/plc.h>
|
||||||
#include <spandsp/playout.h>
|
#include <spandsp/playout.h>
|
||||||
|
#include <spandsp/timezone.h>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: adsi.h,v 1.40 2009/05/22 16:39:01 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: arctan2.h,v 1.13 2008/05/29 13:04:19 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: async.h,v 1.25 2009/04/23 14:12:34 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: at_interpreter.h,v 1.23 2009/02/10 13:06:47 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: awgn.h,v 1.18 2009/02/10 13:06:47 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: bell_r2_mf.h,v 1.24 2009/02/10 13:06:47 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: bert.h,v 1.23 2009/02/10 13:06:47 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_SPANDSP_BERT_H_)
|
#if !defined(_SPANDSP_BERT_H_)
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: biquad.h,v 1.14 2008/04/17 14:26:59 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \page biquad_page Bi-quadratic filter sections
|
/*! \page biquad_page Bi-quadratic filter sections
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: bit_operations.h,v 1.27 2009/07/10 13:15:56 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: bitstream.h,v 1.14.4.1 2009/12/28 12:20:47 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -58,7 +56,15 @@ SPAN_DECLARE(void) bitstream_put(bitstream_state_t *s, uint8_t **c, uint32_t val
|
||||||
\return The value retrieved from the input buffer. */
|
\return The value retrieved from the input buffer. */
|
||||||
SPAN_DECLARE(uint32_t) bitstream_get(bitstream_state_t *s, const uint8_t **c, int bits);
|
SPAN_DECLARE(uint32_t) bitstream_get(bitstream_state_t *s, const uint8_t **c, int bits);
|
||||||
|
|
||||||
/*! \brief Flush any residual bit to the output buffer.
|
/*! \brief Emit any residual bits to the output buffer, without actually flushing them.
|
||||||
|
This is useful for getting the buffer fully up to date, ready for things
|
||||||
|
like CRC calculations, while allowing bitstream_put() to be used to continue
|
||||||
|
the message later.
|
||||||
|
\param s A pointer to the bitstream context.
|
||||||
|
\param c A pointer to the bitstream output buffer. */
|
||||||
|
SPAN_DECLARE(void) bitstream_emit(bitstream_state_t *s, uint8_t **c);
|
||||||
|
|
||||||
|
/*! \brief Flush any residual bits to the output buffer.
|
||||||
\param s A pointer to the bitstream context.
|
\param s A pointer to the bitstream context.
|
||||||
\param c A pointer to the bitstream output buffer. */
|
\param c A pointer to the bitstream output buffer. */
|
||||||
SPAN_DECLARE(void) bitstream_flush(bitstream_state_t *s, uint8_t **c);
|
SPAN_DECLARE(void) bitstream_flush(bitstream_state_t *s, uint8_t **c);
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: complex.h,v 1.20 2009/02/21 05:39:08 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: complex_filters.h,v 1.14 2009/02/03 16:28:41 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_SPANDSP_COMPLEX_FILTERS_H_)
|
#if !defined(_SPANDSP_COMPLEX_FILTERS_H_)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: complex_vector_float.h,v 1.13 2009/02/04 13:18:53 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_SPANDSP_COMPLEX_VECTOR_FLOAT_H_)
|
#if !defined(_SPANDSP_COMPLEX_VECTOR_FLOAT_H_)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: complex_vector_int.h,v 1.4 2009/01/31 08:48:11 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_SPANDSP_COMPLEX_VECTOR_INT_H_)
|
#if !defined(_SPANDSP_COMPLEX_VECTOR_INT_H_)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: crc.h,v 1.5 2009/01/31 08:48:11 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -66,7 +64,7 @@ SPAN_DECLARE(int) crc_itu32_append(uint8_t *buf, int len);
|
||||||
*/
|
*/
|
||||||
SPAN_DECLARE(int) crc_itu32_check(const uint8_t *buf, int len);
|
SPAN_DECLARE(int) crc_itu32_check(const uint8_t *buf, int len);
|
||||||
|
|
||||||
/*! \brief Calculate the ITU/CCITT CRC-16 value in buffer.
|
/*! \brief Calculate the ITU/CCITT CRC-16 value in buffer by whole bytes.
|
||||||
\param buf The buffer containing the data.
|
\param buf The buffer containing the data.
|
||||||
\param len The length of the frame.
|
\param len The length of the frame.
|
||||||
\param crc The initial CRC value. This is usually 0xFFFF, or 0 for a new block (it depends on
|
\param crc The initial CRC value. This is usually 0xFFFF, or 0 for a new block (it depends on
|
||||||
|
@ -75,6 +73,15 @@ SPAN_DECLARE(int) crc_itu32_check(const uint8_t *buf, int len);
|
||||||
*/
|
*/
|
||||||
SPAN_DECLARE(uint16_t) crc_itu16_calc(const uint8_t *buf, int len, uint16_t crc);
|
SPAN_DECLARE(uint16_t) crc_itu16_calc(const uint8_t *buf, int len, uint16_t crc);
|
||||||
|
|
||||||
|
/*! \brief Calculate the ITU/CCITT CRC-16 value of some bits from a byte.
|
||||||
|
\param buf The buffer containing the byte of data.
|
||||||
|
\param len The number of bits, starting from the LSB.
|
||||||
|
\param crc The initial CRC value. This is usually 0xFFFF, or 0 for a new block (it depends on
|
||||||
|
the application). It is previous returned CRC value for the continuation of a block.
|
||||||
|
\return The CRC value.
|
||||||
|
*/
|
||||||
|
SPAN_DECLARE(uint16_t) crc_itu16_bits(uint8_t buf, int len, uint16_t crc);
|
||||||
|
|
||||||
/*! \brief Append an ITU/CCITT CRC-16 value to a frame.
|
/*! \brief Append an ITU/CCITT CRC-16 value to a frame.
|
||||||
\param buf The buffer containing the frame. This must be at least 2 bytes longer than
|
\param buf The buffer containing the frame. This must be at least 2 bytes longer than
|
||||||
the frame it contains, to allow room for the CRC value.
|
the frame it contains, to allow room for the CRC value.
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: dc_restore.h,v 1.24 2008/09/19 14:02:05 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: dds.h,v 1.23 2009/01/31 08:48:11 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: dtmf.h,v 1.32 2009/02/10 13:06:47 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_SPANDSP_DTMF_H_)
|
#if !defined(_SPANDSP_DTMF_H_)
|
||||||
|
|
|
@ -23,8 +23,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: echo.h,v 1.20 2009/09/22 13:11:04 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: expose.h,v 1.14.4.1 2009/12/19 09:47:56 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -61,16 +59,24 @@
|
||||||
#include <spandsp/private/modem_echo.h>
|
#include <spandsp/private/modem_echo.h>
|
||||||
#include <spandsp/private/async.h>
|
#include <spandsp/private/async.h>
|
||||||
#include <spandsp/private/fsk.h>
|
#include <spandsp/private/fsk.h>
|
||||||
#include <spandsp/private/v29rx.h>
|
#include <spandsp/private/modem_connect_tones.h>
|
||||||
#include <spandsp/private/v29tx.h>
|
#include <spandsp/private/v8.h>
|
||||||
#include <spandsp/private/v17rx.h>
|
#include <spandsp/private/v17rx.h>
|
||||||
#include <spandsp/private/v17tx.h>
|
#include <spandsp/private/v17tx.h>
|
||||||
#include <spandsp/private/v22bis.h>
|
#include <spandsp/private/v22bis.h>
|
||||||
#include <spandsp/private/v27ter_rx.h>
|
#include <spandsp/private/v27ter_rx.h>
|
||||||
#include <spandsp/private/v27ter_tx.h>
|
#include <spandsp/private/v27ter_tx.h>
|
||||||
#include <spandsp/private/modem_connect_tones.h>
|
#include <spandsp/private/v29rx.h>
|
||||||
|
#include <spandsp/private/v29tx.h>
|
||||||
|
/*#include <spandsp/private/v32bis.h>*/
|
||||||
|
/*#include <spandsp/private/v34.h>*/
|
||||||
#include <spandsp/private/at_interpreter.h>
|
#include <spandsp/private/at_interpreter.h>
|
||||||
#include <spandsp/private/fax_modems.h>
|
#include <spandsp/private/fax_modems.h>
|
||||||
|
#include <spandsp/private/image_translate.h>
|
||||||
|
#include <spandsp/private/t4_t6_decode.h>
|
||||||
|
#include <spandsp/private/t4_t6_encode.h>
|
||||||
|
/*#include <spandsp/private/t81_t82_arith_coding.h>*/
|
||||||
|
/*#include <spandsp/private/t85.h>*/
|
||||||
#include <spandsp/private/t4_rx.h>
|
#include <spandsp/private/t4_rx.h>
|
||||||
#include <spandsp/private/t4_tx.h>
|
#include <spandsp/private/t4_tx.h>
|
||||||
#include <spandsp/private/t30.h>
|
#include <spandsp/private/t30.h>
|
||||||
|
@ -80,7 +86,7 @@
|
||||||
#include <spandsp/private/t38_gateway.h>
|
#include <spandsp/private/t38_gateway.h>
|
||||||
#include <spandsp/private/t38_terminal.h>
|
#include <spandsp/private/t38_terminal.h>
|
||||||
#include <spandsp/private/t31.h>
|
#include <spandsp/private/t31.h>
|
||||||
#include <spandsp/private/v8.h>
|
#include <spandsp/private/timezone.h>
|
||||||
#include <spandsp/private/v18.h>
|
#include <spandsp/private/v18.h>
|
||||||
#include <spandsp/private/v42.h>
|
#include <spandsp/private/v42.h>
|
||||||
#include <spandsp/private/v42bis.h>
|
#include <spandsp/private/v42bis.h>
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: fast_convert.h,v 1.9 2009/10/03 04:37:25 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(_SPANDSP_FAST_CONVERT_H_)
|
#if !defined(_SPANDSP_FAST_CONVERT_H_)
|
||||||
|
@ -82,12 +80,12 @@ extern "C"
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(__CYGWIN__)
|
#if defined(__CYGWIN__)
|
||||||
#if !defined(__cplusplus)
|
#if !defined(__cplusplus) && (__GNUC__ < 4)
|
||||||
/*
|
/*
|
||||||
* CYGWIN has lrint and lrintf functions, but they are slow and buggy:
|
* CYGWIN versions prior to 1.7.1 have lrint and lrintf functions, but
|
||||||
|
* they are slow and buggy:
|
||||||
* http://sourceware.org/ml/cygwin/2005-06/msg00153.html
|
* http://sourceware.org/ml/cygwin/2005-06/msg00153.html
|
||||||
* http://sourceware.org/ml/cygwin/2005-09/msg00047.html
|
* http://sourceware.org/ml/cygwin/2005-09/msg00047.html
|
||||||
* The latest version of cygwin seems to have made no effort to fix this.
|
|
||||||
* These replacement functions (pulled from the Public Domain MinGW
|
* These replacement functions (pulled from the Public Domain MinGW
|
||||||
* math.h header) replace the native versions.
|
* math.h header) replace the native versions.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this program; if not, write to the Free Software
|
* License along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
|
||||||
* $Id: fax.h,v 1.39 2009/03/13 12:59:26 steveu Exp $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
@ -52,7 +50,7 @@ extern "C"
|
||||||
\return The number of samples unprocessed. This should only be non-zero if
|
\return The number of samples unprocessed. This should only be non-zero if
|
||||||
the software has reached the end of the FAX call.
|
the software has reached the end of the FAX call.
|
||||||
*/
|
*/
|
||||||
SPAN_DECLARE(int) fax_rx(fax_state_t *s, int16_t *amp, int len);
|
SPAN_DECLARE_NONSTD(int) fax_rx(fax_state_t *s, int16_t *amp, int len);
|
||||||
|
|
||||||
/*! Apply fake T.30 receive processing when a block of audio samples is missing (e.g due
|
/*! Apply fake T.30 receive processing when a block of audio samples is missing (e.g due
|
||||||
to packet loss).
|
to packet loss).
|
||||||
|
@ -62,7 +60,7 @@ SPAN_DECLARE(int) fax_rx(fax_state_t *s, int16_t *amp, int len);
|
||||||
\return The number of samples unprocessed. This should only be non-zero if
|
\return The number of samples unprocessed. This should only be non-zero if
|
||||||
the software has reached the end of the FAX call.
|
the software has reached the end of the FAX call.
|
||||||
*/
|
*/
|
||||||
SPAN_DECLARE(int) fax_rx_fillin(fax_state_t *s, int len);
|
SPAN_DECLARE_NONSTD(int) fax_rx_fillin(fax_state_t *s, int len);
|
||||||
|
|
||||||
/*! Apply T.30 transmit processing to generate a block of audio samples.
|
/*! Apply T.30 transmit processing to generate a block of audio samples.
|
||||||
\brief Apply T.30 transmit processing to generate a block of audio samples.
|
\brief Apply T.30 transmit processing to generate a block of audio samples.
|
||||||
|
@ -72,7 +70,7 @@ SPAN_DECLARE(int) fax_rx_fillin(fax_state_t *s, int len);
|
||||||
\return The number of samples actually generated. This will be zero when
|
\return The number of samples actually generated. This will be zero when
|
||||||
there is nothing to send.
|
there is nothing to send.
|
||||||
*/
|
*/
|
||||||
SPAN_DECLARE(int) fax_tx(fax_state_t *s, int16_t *amp, int max_len);
|
SPAN_DECLARE_NONSTD(int) fax_tx(fax_state_t *s, int16_t *amp, int max_len);
|
||||||
|
|
||||||
/*! Select whether silent audio will be sent when FAX transmit is idle.
|
/*! Select whether silent audio will be sent when FAX transmit is idle.
|
||||||
\brief Select whether silent audio will be sent when FAX transmit is idle.
|
\brief Select whether silent audio will be sent when FAX transmit is idle.
|
||||||
|
@ -104,6 +102,14 @@ SPAN_DECLARE(t30_state_t *) fax_get_t30_state(fax_state_t *s);
|
||||||
*/
|
*/
|
||||||
SPAN_DECLARE(logging_state_t *) fax_get_logging_state(fax_state_t *s);
|
SPAN_DECLARE(logging_state_t *) fax_get_logging_state(fax_state_t *s);
|
||||||
|
|
||||||
|
/*! Restart a FAX context.
|
||||||
|
\brief Restart a FAX context.
|
||||||
|
\param s The FAX context.
|
||||||
|
\param calling_party TRUE if the context is for a calling party. FALSE if the
|
||||||
|
context is for an answering party.
|
||||||
|
\return 0 for OK, else -1. */
|
||||||
|
SPAN_DECLARE(int) fax_restart(fax_state_t *s, int calling_party);
|
||||||
|
|
||||||
/*! Initialise a FAX context.
|
/*! Initialise a FAX context.
|
||||||
\brief Initialise a FAX context.
|
\brief Initialise a FAX context.
|
||||||
\param s The FAX context.
|
\param s The FAX context.
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue