diff 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
line wrap: on
line diff
--- a/snow.c	Tue Aug 08 04:01:04 2006 +0000
+++ b/snow.c	Tue Aug 08 10:24:26 2006 +0000
@@ -3163,7 +3163,7 @@
     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;