Commit 27845364 authored by kostya's avatar kostya

Make it clear that ff_ivi_init_static_vlc() does not need arguments

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22091 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a07223e4
......@@ -89,7 +89,7 @@ int ff_ivi_create_huff_from_desc(const IVIHuffDesc *cb, VLC *vlc, int flag)
(flag ? INIT_VLC_USE_NEW_STATIC : 0) | INIT_VLC_LE);
}
void ff_ivi_init_static_vlc()
void ff_ivi_init_static_vlc(void)
{
int i;
static VLC_TYPE table_data[8192 * 16][2];
......
......@@ -205,7 +205,7 @@ int ff_ivi_create_huff_from_desc(const IVIHuffDesc *cb, VLC *vlc, int flag);
/**
* Initializes static codes used for macroblock and block decoding.
*/
void ff_ivi_init_static_vlc();
void ff_ivi_init_static_vlc(void);
/**
* Decodes a huffman codebook descriptor from the bitstream.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment