Commit ccc745cd authored by Benoit Fouet's avatar Benoit Fouet

Move declaration of prn before any assignment.

Originally committed as revision 18255 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b89894ab
...@@ -4698,9 +4698,9 @@ int main(void){ ...@@ -4698,9 +4698,9 @@ int main(void){
int buffer[2][width*height]; int buffer[2][width*height];
SnowContext s; SnowContext s;
int i; int i;
AVLFG prn;
s.spatial_decomposition_count=6; s.spatial_decomposition_count=6;
s.spatial_decomposition_type=1; s.spatial_decomposition_type=1;
AVLFG prn;
av_lfg_init(&prn, 1); av_lfg_init(&prn, 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment