diff options
Diffstat (limited to 'apps/codecs/lib/ffmpeg_get_bits.h')
-rw-r--r-- | apps/codecs/lib/ffmpeg_get_bits.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/lib/ffmpeg_get_bits.h b/apps/codecs/lib/ffmpeg_get_bits.h index 139d7ae556..04eda021a7 100644 --- a/apps/codecs/lib/ffmpeg_get_bits.h +++ b/apps/codecs/lib/ffmpeg_get_bits.h | |||
@@ -571,9 +571,9 @@ int init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes, | |||
571 | #define INIT_VLC_USE_NEW_STATIC 4 | 571 | #define INIT_VLC_USE_NEW_STATIC 4 |
572 | void free_vlc(VLC *vlc); | 572 | void free_vlc(VLC *vlc); |
573 | 573 | ||
574 | #define INIT_VLC_STATIC(vlc, bits, a,b,c,d,e,f,g, static_size)\ | 574 | #define INIT_VLC_STATIC(vlc, bits, a,b,c,d,e,f,g, static_size, attr)\ |
575 | {\ | 575 | {\ |
576 | static VLC_TYPE table[static_size][2];\ | 576 | static VLC_TYPE table[static_size][2] attr;\ |
577 | (vlc)->table= table;\ | 577 | (vlc)->table= table;\ |
578 | (vlc)->table_allocated= static_size;\ | 578 | (vlc)->table_allocated= static_size;\ |
579 | init_vlc(vlc, bits, a,b,c,d,e,f,g, INIT_VLC_USE_NEW_STATIC);\ | 579 | init_vlc(vlc, bits, a,b,c,d,e,f,g, INIT_VLC_USE_NEW_STATIC);\ |