Searched refs:nInput (Results 1 - 5 of 5) sorted by relevance

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DScaledFirstOrderFilter.h13 __inline int Compress(const int nInput) argument
15 int nRetVal = nInput - ((m_nLastValue * MULTIPLY) >> SHIFT);
16 m_nLastValue = nInput;
20 __inline int Decompress(const int nInput) argument
22 m_nLastValue = nInput + ((m_nLastValue * MULTIPLY) >> SHIFT);
H A DNNFilter.cpp37 int CNNFilter::Compress(int nInput) argument
40 m_rbInput[0] = GetSaturatedShortFromInt(nInput);
50 int nOutput = nInput - ((nDotProduct + (1 << (m_nShift - 1))) >> m_nShift);
58 int nTempABS = abs(nInput);
61 m_rbDeltaM[0] = ((nInput >> 25) & 64) - 32;
63 m_rbDeltaM[0] = ((nInput >> 26) & 32) - 16;
65 m_rbDeltaM[0] = ((nInput >> 27) & 16) - 8;
82 int CNNFilter::Decompress(int nInput) argument
94 Adapt(&m_paryM[0], &m_rbDeltaM[-m_nOrder], -nInput, m_nOrder);
96 AdaptNoMMX(&m_paryM[0], &m_rbDeltaM[-m_nOrder], nInput, m_nOrde
[all...]
H A DNNFilter.h15 int Compress(int nInput);
16 int Decompress(int nInput);
H A DNewPredictor.cpp203 int CPredictorDecompressNormal3930to3950::DecompressValue(int nInput, int) argument
216 nInput = m_pNNFilter1->Decompress(nInput);
218 nInput = m_pNNFilter->Decompress(nInput);
227 m_pInputBuffer[0] = nInput + (((p1 * m_aryM[0]) + (p2 * m_aryM[1]) + (p3 * m_aryM[2]) + (p4 * m_aryM[3])) >> 9);
229 if (nInput > 0)
236 else if (nInput < 0)
H A DNewPredictor.h56 int DecompressValue(int nInput, int);

Completed in 82 milliseconds