Changed fillAndPushBuffer to use a retry loop.

This commit is contained in:
Cobaltergeist 2016-09-24 13:52:41 -07:00 committed by Lukas Dürrenberger
parent 77d19859bc
commit 746bb9c8ca
2 changed files with 28 additions and 22 deletions

View file

@ -282,7 +282,8 @@ private:
enum
{
BufferCount = 3 ///< Number of audio buffers used by the streaming loop
BufferCount = 3, ///< Number of audio buffers used by the streaming loop
BufferRetries = 2 ///< Number of retries (excluding initial try) for onGetData()
};
////////////////////////////////////////////////////////////