projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b02fbf7
)
cosmetics: Add another pair of parentheses to aid readability.
author
Diego Biurrun
<diego@biurrun.de>
Sun, 6 Jan 2008 22:50:09 +0000
(22:50 +0000)
committer
Diego Biurrun
<diego@biurrun.de>
Sun, 6 Jan 2008 22:50:09 +0000
(22:50 +0000)
Originally committed as revision 11437 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/rmdec.c
patch
|
blob
|
history
diff --git
a/libavformat/rmdec.c
b/libavformat/rmdec.c
index
970f5a3
..
c5c3969
100644
(file)
--- 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);
}