SFML community forums

Help => Network => Topic started by: troopson on July 06, 2011, 04:47:27 pm

Title: VOIP example
Post 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.

Code: [Select]
while ((myOffset == mySamples.size()) && !myHasFinished)
            sf::Sleep(0.01f);

When i remove this receiving the sound doesnt work. How do i change this?[/code]
Title: Re: VOIP example
Post by: Haikarainen on July 06, 2011, 06:49:25 pm
Quote from: "troopson"
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.

Code: [Select]
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
Title: Re: VOIP example
Post by: JAssange on July 06, 2011, 09:43:54 pm
Quote from: "Haikarainen"
Quote from: "troopson"
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.

Code: [Select]
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.
Title: Re: VOIP example
Post by: Haikarainen on July 06, 2011, 11:12:40 pm
Quote from: "JAssange"
Quote from: "Haikarainen"
Quote from: "troopson"
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.

Code: [Select]
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
Title: VOIP example
Post by: Nexus on July 06, 2011, 11:31:25 pm
Honestly guys, stop those silly full quotes! :P
Title: Re: VOIP example
Post by: JAssange on July 07, 2011, 01:24:03 pm
Quote from: "Haikarainen"
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.