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
avidec: simplify size parameter in memset()
tags/n0.9
Janne Grunau
13 years ago
parent
581810f502
commit
2886f6759f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/avidec.c
+ 1
- 1
libavformat/avidec.c
View File
@@ -848,7 +848,7 @@ static int avi_sync(AVFormatContext *s, int exit_early)
int64_t i, sync;
start_sync:
memset(d, -1, sizeof(
int)*8
);
memset(d, -1, sizeof(
d)
);
for(i=sync=avio_tell(pb); !pb->eof_reached; i++) {
int j;
Write
Preview
Loading…
Cancel
Save