aboutsummaryrefslogtreecommitdiffstats
path: root/src/jolly/jolly.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/jolly/jolly.c')
-rw-r--r--src/jolly/jolly.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/jolly/jolly.c b/src/jolly/jolly.c
index bea372b..b761d8a 100644
--- a/src/jolly/jolly.c
+++ b/src/jolly/jolly.c
@@ -593,25 +593,5 @@ void call_down_release(int callref, __attribute__((unused)) int 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;
- jolly_t *jolly;
-
- for (sender = sender_head; sender; sender = sender->next) {
- jolly = (jolly_t *) sender;
- if (jolly->callref == callref)
- break;
- }
- if (!sender)
- return;
-
- if (jolly->state == STATE_CALL || jolly->state == STATE_CALL_DIALING)
- jitter_save(&jolly->sender.dejitter, samples, count, 1, sequence, timestamp, ssrc);
-}
-
-void call_down_clock(void) {}
-
void dump_info(void) {}