comparison mlpdec.c @ 8693:18737839ed27 libavcodec

Add missing void keyword to parameterless function declarations.
author diego
date Fri, 30 Jan 2009 18:38:25 +0000
parents 5b3c90656fdf
children e9d9d946f213
comparison
equal deleted inserted replaced
8692:48442253aac2 8693:18737839ed27
139 139
140 static VLC huff_vlc[3]; 140 static VLC huff_vlc[3];
141 141
142 /** Initialize static data, constant between all invocations of the codec. */ 142 /** Initialize static data, constant between all invocations of the codec. */
143 143
144 static av_cold void init_static() 144 static av_cold void init_static(void)
145 { 145 {
146 INIT_VLC_STATIC(&huff_vlc[0], VLC_BITS, 18, 146 INIT_VLC_STATIC(&huff_vlc[0], VLC_BITS, 18,
147 &ff_mlp_huffman_tables[0][0][1], 2, 1, 147 &ff_mlp_huffman_tables[0][0][1], 2, 1,
148 &ff_mlp_huffman_tables[0][0][0], 2, 1, 512); 148 &ff_mlp_huffman_tables[0][0][0], 2, 1, 512);
149 INIT_VLC_STATIC(&huff_vlc[1], VLC_BITS, 16, 149 INIT_VLC_STATIC(&huff_vlc[1], VLC_BITS, 16,