From c807e68f467ef7c6d6dd2692fc4829de9895e3ba Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 6 Jan 2008 22:50:09 +0000 Subject: [PATCH] cosmetics: Add another pair of parentheses to aid readability. Originally committed as revision 11437 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rmdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 970f5a3524..c5c3969abf 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -716,7 +716,7 @@ resync: if (ff_rm_parse_packet (s, st, len, pkt, &seq, &flags, ×tamp) < 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); }