Skip to content

Commit

Permalink
tweak cross test
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Sep 17, 2024
1 parent 772cfc5 commit aa7454e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ int main(int argc, char *argv[])

printf("RCV:friend online\n");

for (int j = 0; j < 3000; j++) {
for (int j = 0; j < 1000; j++) {
tox_iterate(tox, NULL);
toxav_iterate(mytox_av);
usleep(10*1000);
Expand Down
4 changes: 2 additions & 2 deletions cross_custom_tests/0020_tox_vpx_large_pkts_send/z_sender.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,15 +334,15 @@ int main(int argc, char *argv[])

TOXAV_ERR_SEND_FRAME *error_v;

for (int j = 0; j < 2000; j++) {
for (int j = 0; j < 100; j++) {
tox_iterate(tox, NULL);
toxav_iterate(mytox_av);
toxav_audio_iterate(mytox_av);

rvbuf0(v, bufsize);
toxav_video_send_frame(mytox_av, 0, w, h , v, v, v, &error_v);

usleep(10*1000);
usleep(2*1000);
}

free(v);
Expand Down

0 comments on commit aa7454e

Please sign in to comment.