Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXCompression.c518 static void HuffAddParentDepthToTable( HuffData *table, u16 leftNo, u16 rightNo );
700 s32 leftNo, rightNo; // Node number for creating binary tree in HuffConstructTree() local
706 rightNo = -1; in HuffConstructTree()
739 if ( rightNo < 0 ) in HuffConstructTree()
741 rightNo = i; in HuffConstructTree()
743 else if ( table[i].Freq < table[rightNo].Freq ) in HuffConstructTree()
745 rightNo = i; in HuffConstructTree()
750 if ( rightNo < 0 ) in HuffConstructTree()
773 table[ tableTop ].Freq = table[ leftNo ].Freq + table[ rightNo ].Freq; in HuffConstructTree()
775 table[ tableTop ].ChNo[1] = (s16)rightNo; in HuffConstructTree()
[all …]