diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2006-07-20 20:34:59 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2006-07-20 20:34:59 +0000 |
commit | 7a11d3b7e0042c07184a5d463ec9f4bd68ae5a1a (patch) | |
tree | ddeabb624029907e08620edde07b6c221707a834 /comms/spandsp | |
parent | b89b0482ed9fc3be5da2210632e876b2c2ba3441 (diff) |
Notes
Diffstat (limited to 'comms/spandsp')
-rw-r--r-- | comms/spandsp/files/patch-src-spandsp-dc_restore.h | 11 | ||||
-rw-r--r-- | comms/spandsp/files/patch-src::awgn.c | 13 | ||||
-rw-r--r-- | comms/spandsp/files/patch-src::tone_generate.c | 13 | ||||
-rw-r--r-- | comms/spandsp/files/patch-src::v17tx.c | 13 |
4 files changed, 45 insertions, 5 deletions
diff --git a/comms/spandsp/files/patch-src-spandsp-dc_restore.h b/comms/spandsp/files/patch-src-spandsp-dc_restore.h index 2b4ea48bf832..dec6fcf8e048 100644 --- a/comms/spandsp/files/patch-src-spandsp-dc_restore.h +++ b/comms/spandsp/files/patch-src-spandsp-dc_restore.h @@ -3,14 +3,15 @@ $FreeBSD$ --- src/spandsp/dc_restore.h.orig +++ src/spandsp/dc_restore.h -@@ -109,5 +109,10 @@ - } - #endif +@@ -53,6 +53,11 @@ + clean_sample = sample - (dc_bias >> 15); + */ +#ifndef INT16_MAX +#define INT16_MAX 0x7fff +#define INT16_MIN (-0x7fff-1) +#endif + - #endif - /*- End of file ------------------------------------------------------------*/ + /*! + Zero DC restoration descriptor. This defines the working state for a single + instance of DC content filter. diff --git a/comms/spandsp/files/patch-src::awgn.c b/comms/spandsp/files/patch-src::awgn.c new file mode 100644 index 000000000000..b4a45a08bb4e --- /dev/null +++ b/comms/spandsp/files/patch-src::awgn.c @@ -0,0 +1,13 @@ + +$FreeBSD$ + +--- src/awgn.c ++++ src/awgn.c +@@ -51,6 +51,7 @@ + #include <stdio.h> + #include <inttypes.h> + #include <math.h> ++#include <tgmath.h> + + #include "spandsp/dc_restore.h" + #include "spandsp/awgn.h" diff --git a/comms/spandsp/files/patch-src::tone_generate.c b/comms/spandsp/files/patch-src::tone_generate.c new file mode 100644 index 000000000000..e0a5f895152b --- /dev/null +++ b/comms/spandsp/files/patch-src::tone_generate.c @@ -0,0 +1,13 @@ + +$FreeBSD$ + +--- src/tone_generate.c ++++ src/tone_generate.c +@@ -39,6 +39,7 @@ + #include <stdio.h> + #include <time.h> + #include <fcntl.h> ++#include <tgmath.h> + + #include "spandsp/telephony.h" + #include "spandsp/dc_restore.h" diff --git a/comms/spandsp/files/patch-src::v17tx.c b/comms/spandsp/files/patch-src::v17tx.c new file mode 100644 index 000000000000..00d8803ec315 --- /dev/null +++ b/comms/spandsp/files/patch-src::v17tx.c @@ -0,0 +1,13 @@ + +$FreeBSD$ + +--- src/v17tx.c ++++ src/v17tx.c +@@ -39,6 +39,7 @@ + #include <stdlib.h> + #include <string.h> + #include <math.h> ++#include <tgmath.h> + + #include "spandsp/telephony.h" + #include "spandsp/logging.h" |