diff options
Diffstat (limited to 'apps/codecs/libwmapro/wmaprodec.c')
-rw-r--r-- | apps/codecs/libwmapro/wmaprodec.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/codecs/libwmapro/wmaprodec.c b/apps/codecs/libwmapro/wmaprodec.c index c72bd0f10f..9d42c6de0f 100644 --- a/apps/codecs/libwmapro/wmaprodec.c +++ b/apps/codecs/libwmapro/wmaprodec.c | |||
@@ -400,31 +400,31 @@ int decode_init(asf_waveformatex_t *wfx) | |||
400 | 400 | ||
401 | INIT_VLC_STATIC(&sf_vlc, SCALEVLCBITS, HUFF_SCALE_SIZE, | 401 | INIT_VLC_STATIC(&sf_vlc, SCALEVLCBITS, HUFF_SCALE_SIZE, |
402 | scale_huffbits, 1, 1, | 402 | scale_huffbits, 1, 1, |
403 | scale_huffcodes, 2, 2, 616); | 403 | scale_huffcodes, 2, 2, 616, IBSS_ATTR_WMAPRO_VLC_TABLES); |
404 | 404 | ||
405 | INIT_VLC_STATIC(&sf_rl_vlc, VLCBITS, HUFF_SCALE_RL_SIZE, | 405 | INIT_VLC_STATIC(&sf_rl_vlc, VLCBITS, HUFF_SCALE_RL_SIZE, |
406 | scale_rl_huffbits, 1, 1, | 406 | scale_rl_huffbits, 1, 1, |
407 | scale_rl_huffcodes, 4, 4, 1406); | 407 | scale_rl_huffcodes, 4, 4, 1406, IBSS_ATTR_WMAPRO_VLC_TABLES); |
408 | 408 | ||
409 | INIT_VLC_STATIC(&coef_vlc[0], VLCBITS, HUFF_COEF0_SIZE, | 409 | INIT_VLC_STATIC(&coef_vlc[0], VLCBITS, HUFF_COEF0_SIZE, |
410 | coef0_huffbits, 1, 1, | 410 | coef0_huffbits, 1, 1, |
411 | coef0_huffcodes, 4, 4, 2108); | 411 | coef0_huffcodes, 4, 4, 2108, IBSS_ATTR_WMAPRO_VLC_TABLES); |
412 | 412 | ||
413 | INIT_VLC_STATIC(&coef_vlc[1], VLCBITS, HUFF_COEF1_SIZE, | 413 | INIT_VLC_STATIC(&coef_vlc[1], VLCBITS, HUFF_COEF1_SIZE, |
414 | coef1_huffbits, 1, 1, | 414 | coef1_huffbits, 1, 1, |
415 | coef1_huffcodes, 4, 4, 3912); | 415 | coef1_huffcodes, 4, 4, 3912, IBSS_ATTR_WMAPRO_VLC_TABLES); |
416 | 416 | ||
417 | INIT_VLC_STATIC(&vec4_vlc, VLCBITS, HUFF_VEC4_SIZE, | 417 | INIT_VLC_STATIC(&vec4_vlc, VLCBITS, HUFF_VEC4_SIZE, |
418 | vec4_huffbits, 1, 1, | 418 | vec4_huffbits, 1, 1, |
419 | vec4_huffcodes, 2, 2, 604); | 419 | vec4_huffcodes, 2, 2, 604, IBSS_ATTR_WMAPRO_VLC_TABLES); |
420 | 420 | ||
421 | INIT_VLC_STATIC(&vec2_vlc, VLCBITS, HUFF_VEC2_SIZE, | 421 | INIT_VLC_STATIC(&vec2_vlc, VLCBITS, HUFF_VEC2_SIZE, |
422 | vec2_huffbits, 1, 1, | 422 | vec2_huffbits, 1, 1, |
423 | vec2_huffcodes, 2, 2, 562); | 423 | vec2_huffcodes, 2, 2, 562, IBSS_ATTR_WMAPRO_VLC_TABLES); |
424 | 424 | ||
425 | INIT_VLC_STATIC(&vec1_vlc, VLCBITS, HUFF_VEC1_SIZE, | 425 | INIT_VLC_STATIC(&vec1_vlc, VLCBITS, HUFF_VEC1_SIZE, |
426 | vec1_huffbits, 1, 1, | 426 | vec1_huffbits, 1, 1, |
427 | vec1_huffcodes, 2, 2, 562); | 427 | vec1_huffcodes, 2, 2, 562, IBSS_ATTR_WMAPRO_VLC_TABLES); |
428 | 428 | ||
429 | /** calculate number of scale factor bands and their offsets | 429 | /** calculate number of scale factor bands and their offsets |
430 | for every possible block size */ | 430 | for every possible block size */ |