From ccc745cdf488ee0b999ea922c0cf09262f92ed4a Mon Sep 17 00:00:00 2001 From: Benoit Fouet Date: Tue, 31 Mar 2009 07:37:55 +0000 Subject: [PATCH] Move declaration of prn before any assignment. Originally committed as revision 18255 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/snow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/snow.c b/libavcodec/snow.c index 42cec6b99..ca85ad676 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -4698,9 +4698,9 @@ int main(void){ int buffer[2][width*height]; SnowContext s; int i; + AVLFG prn; s.spatial_decomposition_count=6; s.spatial_decomposition_type=1; - AVLFG prn; av_lfg_init(&prn, 1); -- 2.11.0