Home
last modified time | relevance | path

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

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DNewPredictor.cpp316 m_rbAdaptA.Flush(); in Flush()
340 m_rbAdaptA.Roll(); m_rbAdaptB.Roll(); in DecompressValue()
365 m_rbAdaptA[0] = (m_rbPredictionA[0]) ? ((m_rbPredictionA[0] >> 30) & 2) - 1 : 0; in DecompressValue()
366 m_rbAdaptA[-1] = (m_rbPredictionA[-1]) ? ((m_rbPredictionA[-1] >> 30) & 2) - 1 : 0; in DecompressValue()
373 m_aryMA[0] -= m_rbAdaptA[0]; in DecompressValue()
374 m_aryMA[1] -= m_rbAdaptA[-1]; in DecompressValue()
375 m_aryMA[2] -= m_rbAdaptA[-2]; in DecompressValue()
376 m_aryMA[3] -= m_rbAdaptA[-3]; in DecompressValue()
386 m_aryMA[0] += m_rbAdaptA[0]; in DecompressValue()
387 m_aryMA[1] += m_rbAdaptA[-1]; in DecompressValue()
[all …]
H A DNewPredictor.h96 CRollBufferFast<int, WINDOW_BLOCKS, 8> m_rbAdaptA; variable