Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(toxav): increase the idle iterate interval to 1 second #2887

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion toxav/toxav.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion toxav/video.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Loading