bitlen is the size in bits of the code*/
| 1289 | |
| 1290 | /*bitlen is the size in bits of the code*/ |
| 1291 | static void addHuffmanSymbol(size_t* bp, ucvector* compressed, unsigned code, unsigned bitlen) |
| 1292 | { |
| 1293 | addBitsToStreamReversed(bp, compressed, code, bitlen); |
| 1294 | } |
| 1295 | |
| 1296 | /*search the index in the array, that has the largest value smaller than or equal to the given value, |
| 1297 | given array must be sorted (if no value is smaller, it returns the size of the given array)*/ |
no test coverage detected