WINDOW_BLOCKS
m_pBuffer[0] = new int [HISTORY_ELEMENTS + WINDOW_BLOCKS];
if (m_nCurrentIndex == WINDOW_BLOCKS)
memcpy(&m_pBuffer[0][0], &m_pBuffer[0][WINDOW_BLOCKS], HISTORY_ELEMENTS * sizeof(int));
if (m_nCurrentIndex == WINDOW_BLOCKS)
if (m_nCurrentIndex == WINDOW_BLOCKS)
CRollBufferFast<int, WINDOW_BLOCKS, 10> m_rbPrediction;
CRollBufferFast<int, WINDOW_BLOCKS, 9> m_rbAdapt;
CRollBufferFast<int, WINDOW_BLOCKS, 8> m_rbPredictionA;
CRollBufferFast<int, WINDOW_BLOCKS, 8> m_rbPredictionB;
CRollBufferFast<int, WINDOW_BLOCKS, 8> m_rbAdaptA;
CRollBufferFast<int, WINDOW_BLOCKS, 8> m_rbAdaptB;