From 1a83bb833c9acb80c298aee3423de18d83915a91 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Fri, 7 Mar 2025 15:01:40 +0100 Subject: [PATCH] chore(toxav): increase the idle iterate interval to 1 second and remove a non-existant reference in a comment --- toxav/toxav.c | 2 +- toxav/video.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/toxav/toxav.c b/toxav/toxav.c index 2f9639fba4..d0db2e3c19 100644 --- a/toxav/toxav.c +++ b/toxav/toxav.c @@ -38,7 +38,7 @@ */ // iteration interval that is used when no call is active -#define IDLE_ITERATION_INTERVAL_MS 200 +#define IDLE_ITERATION_INTERVAL_MS 1000 #ifndef TOXAV_CALL_DEFINED #define TOXAV_CALL_DEFINED diff --git a/toxav/video.c b/toxav/video.c index 52d9829211..3e26e5020c 100644 --- a/toxav/video.c +++ b/toxav/video.c @@ -350,7 +350,7 @@ int vc_queue_message(const Mono_Time *mono_time, void *cs, struct RTPMessage *ms /* This function is called with complete messages * they have already been assembled. - * this function gets called from handle_rtp_packet() and handle_rtp_packet_v3() + * this function gets called from handle_rtp_packet() */ if (vc == nullptr || msg == nullptr) { free(msg);