summaryrefslogtreecommitdiff
path: root/libavcodec/snow.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-08-08 10:24:26 +0000
committerDiego Biurrun <diego@biurrun.de>2006-08-08 10:24:26 +0000
commited4e20ac7fb83bddf4c9a1fc65f30821dcbc7935 (patch)
treeb781b2f8b6f760de57a6de022ab31d383ddeb892 /libavcodec/snow.c
parenta2fd60437d0c7cf21a9365024efaa764bddaf3ab (diff)
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.c2
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;