diff options
author | Måns Rullgård <mans@mansr.com> | 2010-02-23 03:45:51 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-02-23 03:45:51 +0000 |
commit | 2fc492d8429d5eb2eb00be182c64d2099ab072b3 (patch) | |
tree | cc7494cb7a1a376cbc35aa420e516fe57427975a /libavcodec/ivi_common.c | |
parent | db8cb47d15c3ffd13d7230c6391487ffb2a9b3a5 (diff) | |
download | ffmpeg-2fc492d8429d5eb2eb00be182c64d2099ab072b3.tar.gz |
Declare indeo VLC table storage with correct type
Originally committed as revision 21977 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ivi_common.c')
-rw-r--r-- | libavcodec/ivi_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ivi_common.c b/libavcodec/ivi_common.c index 86ca76ed15..5c2ada16b6 100644 --- a/libavcodec/ivi_common.c +++ b/libavcodec/ivi_common.c @@ -92,7 +92,7 @@ int ff_ivi_create_huff_from_desc(const IVIHuffDesc *cb, VLC *vlc, int flag) void ff_ivi_init_static_vlc() { int i; - static VLC table_data[8192 * 16][2]; + static VLC_TYPE table_data[8192 * 16][2]; static int initialized_vlcs = 0; if (initialized_vlcs) |