Home
last modified time | relevance | path

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

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DNewPredictor.cpp317 m_rbAdaptB.Flush(); in Flush()
340 m_rbAdaptA.Roll(); m_rbAdaptB.Roll(); in DecompressValue()
368 m_rbAdaptB[0] = (m_rbPredictionB[0]) ? ((m_rbPredictionB[0] >> 30) & 2) - 1 : 0; in DecompressValue()
369 m_rbAdaptB[-1] = (m_rbPredictionB[-1]) ? ((m_rbPredictionB[-1] >> 30) & 2) - 1 : 0; in DecompressValue()
378 m_aryMB[0] -= m_rbAdaptB[0]; in DecompressValue()
379 m_aryMB[1] -= m_rbAdaptB[-1]; in DecompressValue()
380 m_aryMB[2] -= m_rbAdaptB[-2]; in DecompressValue()
381 m_aryMB[3] -= m_rbAdaptB[-3]; in DecompressValue()
382 m_aryMB[4] -= m_rbAdaptB[-4]; in DecompressValue()
391 m_aryMB[0] += m_rbAdaptB[0]; in DecompressValue()
[all …]
H A DNewPredictor.h97 CRollBufferFast<int, WINDOW_BLOCKS, 8> m_rbAdaptB; variable