diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-08-08 10:24:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-08 10:24:26 +0000 |
commit | ed4e20ac7fb83bddf4c9a1fc65f30821dcbc7935 (patch) | |
tree | b781b2f8b6f760de57a6de022ab31d383ddeb892 /libavcodec/snow.c | |
parent | a2fd60437d0c7cf21a9365024efaa764bddaf3ab (diff) | |
download | ffmpeg-ed4e20ac7fb83bddf4c9a1fc65f30821dcbc7935.tar.gz |
Fix some "'static' is not at beginning of declaration" warnings.
Originally committed as revision 5956 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r-- | libavcodec/snow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index 5bd7623ab5..98d2d4875c 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -3163,7 +3163,7 @@ static int get_4block_rd(SnowContext *s, int mb_x, int mb_y, int plane_index){ const int ref_stride= s->current_picture.linesize[plane_index]; uint8_t *dst= s->current_picture.data[plane_index]; uint8_t *src= s-> input_picture.data[plane_index]; - const static DWTELEM zero_dst[4096]; //FIXME + static const DWTELEM zero_dst[4096]; //FIXME const int b_stride = s->b_width << s->block_max_depth; const int b_height = s->b_height<< s->block_max_depth; const int w= p->width; |