summaryrefslogtreecommitdiff
path: root/toxav/av_test.c
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2015-02-15 22:41:10 +0100
committermannol <eniz_vukovic@hotmail.com>2015-02-15 22:41:10 +0100
commit8c245affb1f7dac2baab263ad0c4e19314073d71 (patch)
tree9dc5d6af65009e6b7cd0012717ab9e7f37d50011 /toxav/av_test.c
parentaad857527cd63b5f79786df0c1aab50f4de87774 (diff)
Started adjusting msi backend to new api
Diffstat (limited to 'toxav/av_test.c')
-rw-r--r--toxav/av_test.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/toxav/av_test.c b/toxav/av_test.c
index 1e5e4ad7..3270f39c 100644
--- a/toxav/av_test.c
+++ b/toxav/av_test.c
@@ -252,13 +252,13 @@ int main (int argc, char** argv)
252 } 252 }
253 253
254 printf("\nTrying regular call (Audio and Video)...\n"); 254 printf("\nTrying regular call (Audio and Video)...\n");
255// REGULAR_CALL_FLOW(48, 4000); 255 REGULAR_CALL_FLOW(48, 4000);
256 256
257 printf("\nTrying regular call (Audio only)...\n"); 257 printf("\nTrying regular call (Audio only)...\n");
258// REGULAR_CALL_FLOW(48, 0); 258 REGULAR_CALL_FLOW(48, 0);
259 259
260 printf("\nTrying regular call (Video only)...\n"); 260 printf("\nTrying regular call (Video only)...\n");
261// REGULAR_CALL_FLOW(0, 4000); 261 REGULAR_CALL_FLOW(0, 4000);
262 262
263#undef REGULAR_CALL_FLOW 263#undef REGULAR_CALL_FLOW
264 264
@@ -328,7 +328,8 @@ int main (int argc, char** argv)
328 } 328 }
329 } 329 }
330 330
331 while (!AliceCC.ended || !BobCC.ended) 331 /* Alice will not receive end state */
332 while (!BobCC.ended)
332 iterate(Bsn, AliceAV, BobAV); 333 iterate(Bsn, AliceAV, BobAV);
333 334
334 printf("Success!\n"); 335 printf("Success!\n");