comparison ra288.c @ 2288:3d4a1f8e6a27 libavcodec

* fixing a few of gcc 'clean-code' warnings
author kabi
date Wed, 06 Oct 2004 08:50:46 +0000
parents f65d87bfdd5a
children 5f51b1e0bed6
comparison
equal deleted inserted replaced
2287:679642dc54cf 2288:3d4a1f8e6a27
45 static int pred(float *in, float *tgt, int n); 45 static int pred(float *in, float *tgt, int n);
46 static void colmult(float *tgt, float *m1, const float *m2, int n); 46 static void colmult(float *tgt, float *m1, const float *m2, int n);
47 47
48 48
49 /* initial decode */ 49 /* initial decode */
50 static void unpack(unsigned short *tgt, unsigned char *src, int len) 50 static void unpack(unsigned short *tgt, unsigned char *src, unsigned int len)
51 { 51 {
52 int x,y,z; 52 int x,y,z;
53 int n,temp; 53 int n,temp;
54 int buffer[len]; 54 int buffer[len];
55 55