aboutsummaryrefslogtreecommitdiffstats
path: root/src/jolly/jolly.h
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2021-09-18 11:43:01 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2021-10-24 06:25:10 +0200
commit6fa74a12969f942b059693721aec2505772b2dcf (patch)
treedf66a46dc0177d066fcf0202769dae14bf468e26 /src/jolly/jolly.h
parentde685b3cb6f9397818c7f774eddbd802db5dde7a (diff)
Refactor global variables for signal processing
These are: device, sample rate, buffer, latency Called now: dsp_device, dsp_samplerate, dsp_buffer, dsp_latency Call audio device: call_device, call_samplerate, call_buffer
Diffstat (limited to 'src/jolly/jolly.h')
-rw-r--r--src/jolly/jolly.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jolly/jolly.h b/src/jolly/jolly.h
index 15ea158..226cb61 100644
--- a/src/jolly/jolly.h
+++ b/src/jolly/jolly.h
@@ -50,7 +50,7 @@ typedef struct jolly {
int delay_max; /* number of samples in delay buffer */
} jolly_t;
-int jolly_create(const char *kanal, double dl_freq, double ul_freq, double step, const char *audiodev, int use_sdr, int samplerate, double rx_gain, double tx_gain, int pre_emphasis, int de_emphasis, const char *write_rx_wave, const char *write_tx_wave, const char *read_rx_wave, const char *read_tx_wave, int loopback, double squelch_db, int nbfm, int repeater);
+int jolly_create(const char *kanal, double dl_freq, double ul_freq, double step, const char *device, int use_sdr, int samplerate, double rx_gain, double tx_gain, int pre_emphasis, int de_emphasis, const char *write_rx_wave, const char *write_tx_wave, const char *read_rx_wave, const char *read_tx_wave, int loopback, double squelch_db, int nbfm, int repeater);
void jolly_destroy(sender_t *sender);
void speech_finished(jolly_t *jolly);
void jolly_receive_dtmf(void *priv, char digit, dtmf_meas_t *meas);