From 721358208b6650c62aa654be922867f10a5d6f38 Mon Sep 17 00:00:00 2001 From: zoff99 Date: Fri, 19 Jan 2018 22:59:42 +0100 Subject: Improve video key frame sending. This change does not include the addition of VP9. We do that in a separate pull request. Changes: * fix the video bug (video frames larger than 65KBytes) by sending full frame length in alternate header field * improve video frame reconstruction logic with slots * configure video encoder and decoder to be multihtreaded * set error resilience flags on video codec * change encoder and decoder softdeadline --- toxav/bwcontroller.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toxav/bwcontroller.h') diff --git a/toxav/bwcontroller.h b/toxav/bwcontroller.h index 43475252..be5eb191 100644 --- a/toxav/bwcontroller.h +++ b/toxav/bwcontroller.h @@ -27,9 +27,9 @@ typedef struct BWController_s BWController; BWController *bwc_new(Messenger *m, uint32_t friendnumber, void (*mcb)(BWController *, uint32_t, float, void *), void *udata); + void bwc_kill(BWController *bwc); -void bwc_feed_avg(BWController *bwc, uint32_t bytes); void bwc_add_lost(BWController *bwc, uint32_t bytes); void bwc_add_recv(BWController *bwc, uint32_t bytes); -- cgit v1.2.3