cosmetics: Add another pair of parentheses to aid readability.

Originally committed as revision 11437 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Diego Biurrun 17 years ago
parent b02fbf7536
commit c807e68f46
  1. 2
      libavformat/rmdec.c

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

Loading…
Cancel
Save