comparison intrax8.c @ 8527:f8bf438c6000 libavcodec

Add missing 'void' keyword to parameterless function declarations.
author diego
date Mon, 05 Jan 2009 13:57:43 +0000
parents 800444234375
children e9d9d946f213
comparison
equal deleted inserted replaced
8526:4c851747ee74 8527:f8bf438c6000
40 40
41 static VLC j_ac_vlc[2][2][8]; //[quant<13],[intra/inter],[select] 41 static VLC j_ac_vlc[2][2][8]; //[quant<13],[intra/inter],[select]
42 static VLC j_dc_vlc[2][8]; //[quant], [select] 42 static VLC j_dc_vlc[2][8]; //[quant], [select]
43 static VLC j_orient_vlc[2][4]; //[quant], [select] 43 static VLC j_orient_vlc[2][4]; //[quant], [select]
44 44
45 static void x8_vlc_init(){ 45 static void x8_vlc_init(void){
46 int i; 46 int i;
47 47
48 #define init_ac_vlc(dst,src) \ 48 #define init_ac_vlc(dst,src) \
49 init_vlc(&dst, \ 49 init_vlc(&dst, \
50 AC_VLC_BITS,77, \ 50 AC_VLC_BITS,77, \