* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-/**
- * \file wmadata.h Various WMA tables.
- */
+/** \file wmadata.h Various WMA tables. */
struct coef_vlc_table {
/** Total number of codes. */
int n;
- /** Number of levels. */
- int max_level;
/** VLC bit values. */
const uint32_t *huffcodes;
/** VLC bit size. */
#define DEF_COEF_TABLE(_x) { \
.n = sizeof(coef ## _x ## _huffbits), \
- .max_level = sizeof(levels ## _x) / 2, \
.huffcodes = coef ## _x ## _huffcodes, \
.huffbits = coef ## _x ##_huffbits, \
.levels = levels ## _x}