Browse Source

Declare indeo VLC table storage with correct type

Originally committed as revision 21977 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Måns Rullgård 16 years ago
parent
commit
2fc492d842
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ivi_common.c

+ 1
- 1
libavcodec/ivi_common.c View File

@@ -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)


Loading…
Cancel
Save