Home
last modified time | relevance | path

Searched refs:nFrameBlocks (Results 1 – 2 of 2) sorted by relevance

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAPEDecompress.cpp183 int nFrameBlocks = GetInfo(APE_INFO_FRAME_BLOCKS, m_nCurrentFrame); in FillFrameBuffer() local
184 if (nFrameBlocks < 0) in FillFrameBuffer()
188 int nFrameBlocksLeft = nFrameBlocks - nFrameOffsetBlocks; in FillFrameBuffer()
202 if ((nFrameOffsetBlocks + nBlocksThisPass) >= nFrameBlocks) in FillFrameBuffer()
212 for (int z = 0; z < nFrameBlocks * m_nBlockAlign; z++) in FillFrameBuffer()
H A DAPEInfo.cpp202 int nFrameBlocks = GetInfo(APE_INFO_FRAME_BLOCKS, nFrame); in GetInfo() local
203 if ((nFrameBytes > 0) && (nFrameBlocks > 0) && m_APEFileInfo.nSampleRate > 0) in GetInfo()
205 int nFrameMS = (nFrameBlocks * 1000) / m_APEFileInfo.nSampleRate; in GetInfo()