SFML community forums
Help => Network => Topic started by: troopson on July 06, 2011, 04:47:27 pm
-
i used some code from VOIP example and i set blocking sockets to none so my application is real-time etc. Here is the code from example which makes my program working sloooooooow.
while ((myOffset == mySamples.size()) && !myHasFinished)
sf::Sleep(0.01f);
When i remove this receiving the sound doesnt work. How do i change this?[/code]
-
i used some code from VOIP example and i set blocking sockets to none so my application is real-time etc. Here is the code from example which makes my program working sloooooooow.
while ((myOffset == mySamples.size()) && !myHasFinished)
sf::Sleep(0.01f);
When i remove this receiving the sound doesnt work. How do i change this?[/code]
Im not experienced in the current matter, but try commenting out the sf::Sleep
-
i used some code from VOIP example and i set blocking sockets to none so my application is real-time etc. Here is the code from example which makes my program working sloooooooow.
while ((myOffset == mySamples.size()) && !myHasFinished)
sf::Sleep(0.01f);
When i remove this receiving the sound doesnt work. How do i change this?[/code]
Im not experienced in the current matter, but try commenting out the sf::Sleep
Simply commenting that out will cause unintended behavior because the while statement is unbracketed.
-
i used some code from VOIP example and i set blocking sockets to none so my application is real-time etc. Here is the code from example which makes my program working sloooooooow.
while ((myOffset == mySamples.size()) && !myHasFinished)
sf::Sleep(0.01f);
When i remove this receiving the sound doesnt work. How do i change this?[/code]
Im not experienced in the current matter, but try commenting out the sf::Sleep
Simply commenting that out will cause unintended behavior because the while statement is unbracketed.
No shit sherlock
-
Honestly guys, stop those silly full quotes! :P
-
No shit sherlock
I was having a hard time judging the skill level of the op from his posts so I just thought I'd clarify.