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
missing " && j<syncpoint_count" protection in the index parsing, as the
spec instructs... Originally committed as revision 11852 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Oded Shimon
17 years ago
parent
103d74ea5c
commit
b19e3983cf
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/nutdec.c
+ 1
- 1
libavformat/nutdec.c
View File
@@ -501,7 +501,7 @@ static int find_and_decode_index(NUTContext *nut){
return -1;
}
assert(n<=syncpoint_count+1);
for(; j<n; j++){
for(; j<n
&& j<syncpoint_count
; j++){
if(has_keyframe[j]){
uint64_t B, A= ff_get_v(bc);
if(!A){
Write
Preview
Loading…
Cancel
Save