This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Move declaration of prn before any assignment.
Originally committed as revision 18255 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Benoit Fouet
17 years ago
parent
b89894abb7
commit
ccc745cdf4
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/snow.c
+ 1
- 1
libavcodec/snow.c
View File
@@ -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);
Write
Preview
Loading…
Cancel
Save