summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-02-23 03:45:51 +0000
committerMåns Rullgård <mans@mansr.com>2010-02-23 03:45:51 +0000
commit2fc492d8429d5eb2eb00be182c64d2099ab072b3 (patch)
treecc7494cb7a1a376cbc35aa420e516fe57427975a
parentdb8cb47d15c3ffd13d7230c6391487ffb2a9b3a5 (diff)
Declare indeo VLC table storage with correct type
Originally committed as revision 21977 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/ivi_common.c2
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)