Mercurial > libavformat.hg
changeset 2904:72e3c40f0fb2 libavformat
cosmetics: Add another pair of parentheses to aid readability.
author | diego |
---|---|
date | Sun, 06 Jan 2008 22:50:09 +0000 |
parents | ffb5d8bb96b3 |
children | 616fb87724b5 |
files | rmdec.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/rmdec.c Sun Jan 06 16:02:55 2008 +0000 +++ b/rmdec.c Sun Jan 06 22:50:09 2008 +0000 @@ -716,7 +716,7 @@ 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); }