Skip to content
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 azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pool:
vmImage: "windows-2019"
vmImage: "windows-2022"
jobs:
- job: "vcpkg"
strategy:
Expand Down
6 changes: 3 additions & 3 deletions toxav/toxav.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Tox *toxav_get_tox(const ToxAV *av);

/**
* Returns the interval in milliseconds when the next toxav_iterate call should
* be. If no call is active at the moment, this function returns 200.
* be. If no call is active at the moment, this function returns 1000.
* This function MUST be called from the same thread as toxav_iterate.
*/
uint32_t toxav_iteration_interval(const ToxAV *av);
Expand All @@ -163,7 +163,7 @@ void toxav_iterate(ToxAV *av);

/**
* Returns the interval in milliseconds when the next toxav_audio_iterate call
* should be. If no call is active at the moment, this function returns 200.
* should be. If no call is active at the moment, this function returns 1000.
* This function MUST be called from the same thread as toxav_audio_iterate.
*/
uint32_t toxav_audio_iteration_interval(const ToxAV *av);
Expand All @@ -179,7 +179,7 @@ void toxav_audio_iterate(ToxAV *av);

/**
* Returns the interval in milliseconds when the next toxav_video_iterate call
* should be. If no call is active at the moment, this function returns 200.
* should be. If no call is active at the moment, this function returns 1000.
* This function MUST be called from the same thread as toxav_video_iterate.
*/
uint32_t toxav_video_iteration_interval(const ToxAV *av);
Expand Down
Loading