Home
last modified time | relevance | path

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

/RvlSDK-3.2/build/libraries/cx/src/
DCXCompression.c583 static void HuffAddParentDepthToTable( HuffData *table, u16 leftNo, u16 rightNo );
777 s32 leftNo, rightNo; // Node's numbers at time of binary tree's creation in HuffConstructTree() local
783 rightNo = -1; in HuffConstructTree()
816 if ( rightNo < 0 ) in HuffConstructTree()
818 rightNo = i; in HuffConstructTree()
820 else if ( table[i].Freq < table[rightNo].Freq ) in HuffConstructTree()
822 rightNo = i; in HuffConstructTree()
827 if ( rightNo < 0 ) in HuffConstructTree()
850 table[ tableTop ].Freq = table[ leftNo ].Freq + table[ rightNo ].Freq; in HuffConstructTree()
852 table[ tableTop ].ChNo[1] = (s16)rightNo; in HuffConstructTree()
[all …]