[FFmpeg-cvslog] r11437 - trunk/libavformat/rmdec.c

diego subversion
Sun Jan 6 23:50:09 CET 2008


Author: diego
Date: Sun Jan  6 23:50:09 2008
New Revision: 11437

Log:
cosmetics: Add another pair of parentheses to aid readability.


Modified:
   trunk/libavformat/rmdec.c

Modified: trunk/libavformat/rmdec.c
==============================================================================
--- trunk/libavformat/rmdec.c	(original)
+++ trunk/libavformat/rmdec.c	Sun Jan  6 23:50:09 2008
@@ -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);
     }
 




More information about the ffmpeg-cvslog mailing list