Merge double-nested if into && condition.

patch by Ronald S. Bultje, rsbultje gmail com

Originally committed as revision 11374 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ronald S. Bultje 2008-01-02 18:53:12 +00:00 committed by Diego Biurrun
parent e299727441
commit b83a84242c
1 changed files with 1 additions and 3 deletions

View File

@ -716,10 +716,8 @@ resync:
if (ff_rm_parse_packet (s, st, len, pkt, &seq, &flags, &timestamp) < 0)
goto resync;
if(flags&2){
if((seq&0x7F) == 1)
if(flags&2 && (seq&0x7F) == 1)
av_add_index_entry(st, pos, timestamp, 0, 0, AVINDEX_KEYFRAME);
}
}
return 0;