X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=wmadata.h;h=37f1d5292766dced9ceabb2ea7b538755e06d0d0;hp=5944e086ce24f224eeda47aff0f4fcade7f464d1;hb=86047f3e014bdc02d1e94567535eaf2678d7e2ca;hpb=c42e45c5ae4b150faaad0c30e53ff323cfe3787a diff --git a/wmadata.h b/wmadata.h index 5944e086..37f1d529 100644 --- a/wmadata.h +++ b/wmadata.h @@ -19,15 +19,11 @@ * 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. */ @@ -1446,7 +1442,6 @@ static const uint16_t levels5[40] = { #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}