Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_Compression.cpp517 u32 Freq; // Frequency of occurrence member
726 table[ srcp[ i ] ].Freq++; // 8-bit encoding in HuffCountData()
734 table[ tmp ].Freq++; // Store from upper 4 bits first // Either is OK in HuffCountData()
736 table[ tmp ].Freq++; // The problem is the encoding in HuffCountData()
765 if ( ( table[i].Freq == 0 ) || in HuffConstructTree()
775 else if ( table[i].Freq < table[ leftNo ].Freq ) in HuffConstructTree()
784 if ( ( table[i].Freq == 0 ) || in HuffConstructTree()
795 else if ( table[i].Freq < table[rightNo].Freq ) in HuffConstructTree()
807 table[ tableTop ].Freq = table[ leftNo ].Freq; in HuffConstructTree()
825 table[ tableTop ].Freq = table[ leftNo ].Freq + table[ rightNo ].Freq; in HuffConstructTree()