aboutsummaryrefslogtreecommitdiffstats
path: root/src/r2000/r2000.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/r2000/r2000.c')
-rw-r--r--src/r2000/r2000.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/r2000/r2000.c b/src/r2000/r2000.c
index 839b02a..3439591 100644
--- a/src/r2000/r2000.c
+++ b/src/r2000/r2000.c
@@ -1530,29 +1530,5 @@ void call_down_release(int callref, int __attribute__((unused)) cause)
}
}
-/* Receive audio from call instance. */
-void call_down_audio(int callref, uint16_t sequence, uint32_t timestamp, uint32_t ssrc, sample_t *samples, int count)
-{
- sender_t *sender;
- r2000_t *r2000;
-
- for (sender = sender_head; sender; sender = sender->next) {
- r2000 = (r2000_t *) sender;
- if (r2000->callref == callref)
- break;
- }
- if (!sender)
- return;
-
- if (r2000->dsp_mode == DSP_MODE_AUDIO_TX
- || r2000->dsp_mode == DSP_MODE_AUDIO_TX_RX) {
- if (r2000->compandor)
- compress_audio(&r2000->cstate, samples, count);
- jitter_save(&r2000->sender.dejitter, samples, count, 1, sequence, timestamp, ssrc);
- }
-}
-
-void call_down_clock(void) {}
-
void dump_info(void) {}