Searched refs:iBufferSize (Results 1 - 1 of 1) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/audio/symbian/
H A DSDL_epocaudio.cpp191 TInt iBufferSize; local
248 CEpocAudio::CEpocAudio(TInt aBufferSize) : iBufferSize(aBufferSize), iPosition(-1)
263 iBuffer = (TUint8*) User::AllocL(KAudioBuffers * iBufferSize);
264 memset(iBuffer, aFill, KAudioBuffers * iBufferSize);
367 if(iPosition >= iBufferSize)
371 iAudioPtr = iBuffer + iBufferSize;
375 iAudioPtr += iBufferSize;
377 if((iAudioPtr - iBuffer) >= KAudioBuffers * iBufferSize)
402 const TInt64 bufMs = TInt64(iBufferSize - KClip) * TInt64(1000000);

Completed in 1041 milliseconds