Originally committed as revision 16436 to svn://svn.ffmpeg.org/ffmpeg/trunktags/v0.5
@@ -42,7 +42,7 @@ static VLC j_ac_vlc[2][2][8]; //[quant<13],[intra/inter],[select] | |||||
static VLC j_dc_vlc[2][8]; //[quant], [select] | static VLC j_dc_vlc[2][8]; //[quant], [select] | ||||
static VLC j_orient_vlc[2][4]; //[quant], [select] | static VLC j_orient_vlc[2][4]; //[quant], [select] | ||||
static void x8_vlc_init(){ | |||||
static void x8_vlc_init(void){ | |||||
int i; | int i; | ||||
#define init_ac_vlc(dst,src) \ | #define init_ac_vlc(dst,src) \ | ||||
@@ -1599,7 +1599,7 @@ QPEL_2TAP(avg_, 8, 3dnow) | |||||
#if 0 | #if 0 | ||||
static void just_return() { return; } | |||||
static void just_return(void) { return; } | |||||
#endif | #endif | ||||
static void gmc_mmx(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy, | static void gmc_mmx(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy, | ||||
@@ -80,7 +80,8 @@ DECLARE_ALIGNED(8, static const int16_t, coeffs[])= { | |||||
}; | }; | ||||
#if 0 | #if 0 | ||||
static void unused_var_killer(){ | |||||
static void unused_var_killer(void) | |||||
{ | |||||
int a= wm1010 + d40000; | int a= wm1010 + d40000; | ||||
temp[0]=a; | temp[0]=a; | ||||
} | } | ||||
@@ -168,7 +168,7 @@ int ff_pca(PCA *pca, double *eigenvector, double *eigenvalue){ | |||||
#include <stdio.h> | #include <stdio.h> | ||||
#include <stdlib.h> | #include <stdlib.h> | ||||
int main(){ | |||||
int main(void){ | |||||
PCA *pca; | PCA *pca; | ||||
int i, j, k; | int i, j, k; | ||||
#define LEN 8 | #define LEN 8 | ||||