aboutsummaryrefslogtreecommitdiffstats
path: root/src/nmt/nmt.h
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2017-01-29 07:25:12 +0100
committerAndreas Eversberg <jolly@eversberg.eu>2017-02-18 21:01:13 +0100
commit7e45f556cec493c3c77fcb6400d8ae211faf2220 (patch)
treecb5903509228c36e7dcd52ae0a049b380e81f401 /src/nmt/nmt.h
parentbd7ccc5fa05587606757adbacb6e1bf12f12fd2c (diff)
Correcting all levels and move all remaining integer samples to sample_t
The leves are based on the standards of each mobile network. They are adjusted to the specified frequency deviation now.
Diffstat (limited to 'src/nmt/nmt.h')
-rw-r--r--src/nmt/nmt.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nmt/nmt.h b/src/nmt/nmt.h
index 8883bb4..404eadf 100644
--- a/src/nmt/nmt.h
+++ b/src/nmt/nmt.h
@@ -113,12 +113,12 @@ typedef struct nmt {
double fsk_filter_quality[256];/* quality infos */
sample_t *super_filter_spl; /* array with sample buffer for supervisory detection */
int super_filter_pos; /* current sample position in filter_spl */
- double super_phaseshift256[4]; /* how much the phase of sine wave changes per sample */
- double super_phase256; /* current phase */
- double dial_phaseshift256; /* how much the phase of sine wave changes per sample */
- double dial_phase256; /* current phase */
- double fsk_phaseshift256; /* how much the phase of fsk synbol changes per sample */
- double fsk_phase256; /* current phase */
+ double super_phaseshift65536[4];/* how much the phase of sine wave changes per sample */
+ double super_phase65536; /* current phase */
+ double dial_phaseshift65536; /* how much the phase of sine wave changes per sample */
+ double dial_phase65536; /* current phase */
+ double fsk_phaseshift65536; /* how much the phase of fsk synbol changes per sample */
+ double fsk_phase65536; /* current phase */
sample_t *frame_spl; /* samples to store a complete rendered frame */
int frame_size; /* total size of sample buffer */
int frame_length; /* current length of data in sample buffer */