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

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAPESimple.cpp94 int nBytesLeft = nAudioBytes; local
96 while (nBytesLeft > 0)
99 THROW_ON_ERROR(spAPECompress->AddDataFromInputSource(spInputSource.GetPtr(), nBytesLeft, &nBytesAdded))
101 nBytesLeft -= nBytesAdded;
104 spMACProgressHelper->UpdateProgress(nAudioBytes - nBytesLeft);
204 int nBytesLeft = pInfo->spAPEDescriptor->nHeaderDataBytes + pInfo->spAPEDescriptor->nAPEFrameDataBytes + pInfo->spAPEDescriptor->nTerminatingDataBytes; local
207 while ((nBytesLeft > 0) && (nBytesRead > 0))
209 int nBytesToRead = min(16384, nBytesLeft);
214 nBytesLeft -= nBytesRead;
217 if (nBytesLeft !
[all...]
H A DAPECompress.cpp171 int nBytesLeft = m_nBufferTail - m_nBufferHead; local
173 if (nBytesLeft != 0)
174 memmove(m_pBuffer, &m_pBuffer[m_nBufferHead], nBytesLeft);

Completed in 91 milliseconds