MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / btq_count

Class btq_count

Source/astcenc_integer_sequence.cpp:337–347  ·  view source on GitHub ↗

* @brief The number of bits, trits, and quints needed for a quant level. */

Source from the content-addressed store, hash-verified

335 * @brief The number of bits, trits, and quints needed for a quant level.
336 */
337struct btq_count
338{
339 /** @brief The number of bits. */
340 uint8_t bits:6;
341
342 /** @brief The number of trits. */
343 uint8_t trits:1;
344
345 /** @brief The number of quints. */
346 uint8_t quints:1;
347};
348
349/**
350 * @brief The table of bits, trits, and quints needed for a quant encode.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected