comparison snow.c @ 3556:6805c1e5507e libavcodec

Fix some "'static' is not at beginning of declaration" warnings.
author diego
date Tue, 08 Aug 2006 10:24:26 +0000
parents 937f14bb0f23
children b4425339894b
comparison
equal deleted inserted replaced
3555:5ea82888103e 3556:6805c1e5507e
3161 const uint8_t *obmc = plane_index ? obmc_tab[s->block_max_depth+1] : obmc_tab[s->block_max_depth]; 3161 const uint8_t *obmc = plane_index ? obmc_tab[s->block_max_depth+1] : obmc_tab[s->block_max_depth];
3162 const int obmc_stride= plane_index ? block_size : 2*block_size; 3162 const int obmc_stride= plane_index ? block_size : 2*block_size;
3163 const int ref_stride= s->current_picture.linesize[plane_index]; 3163 const int ref_stride= s->current_picture.linesize[plane_index];
3164 uint8_t *dst= s->current_picture.data[plane_index]; 3164 uint8_t *dst= s->current_picture.data[plane_index];
3165 uint8_t *src= s-> input_picture.data[plane_index]; 3165 uint8_t *src= s-> input_picture.data[plane_index];
3166 const static DWTELEM zero_dst[4096]; //FIXME 3166 static const DWTELEM zero_dst[4096]; //FIXME
3167 const int b_stride = s->b_width << s->block_max_depth; 3167 const int b_stride = s->b_width << s->block_max_depth;
3168 const int b_height = s->b_height<< s->block_max_depth; 3168 const int b_height = s->b_height<< s->block_max_depth;
3169 const int w= p->width; 3169 const int w= p->width;
3170 const int h= p->height; 3170 const int h= p->height;
3171 int distortion= 0; 3171 int distortion= 0;