diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-11-04 22:51:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-11-04 22:51:49 +0000 |
commit | 47a1ae1bc99f7df399f76946a92c42fa8e1937fb (patch) | |
tree | e5b0ed5092b4cd66eaf2be202ba683f03a1dcb9c /libavformat/nut.c | |
parent | 5b5bd7c9ee692026e67126e3e9f1883fc7701319 (diff) | |
download | ffmpeg-47a1ae1bc99f7df399f76946a92c42fa8e1937fb.tar.gz |
Add some parentheses to clarify operator precedence, fixes the warnings:
nut.c: In function 'ff_nut_sp_pos_cmp':
nut.c:43: warning: suggest parentheses around + or - inside shift
nut.c:43: warning: suggest parentheses around + or - inside shift
nut.c: In function 'ff_nut_sp_pts_cmp':
nut.c:47: warning: suggest parentheses around + or - inside shift
nut.c:47: warning: suggest parentheses around + or - inside shift
Originally committed as revision 10926 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r-- | libavformat/nut.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 034934dc9d..7eb53136d5 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -40,11 +40,11 @@ int64_t ff_lsb2full(StreamContext *stream, int64_t lsb){ } int ff_nut_sp_pos_cmp(syncpoint_t *a, syncpoint_t *b){ - return (a->pos - b->pos>>32) - (b->pos - a->pos>>32); + return ((a->pos - b->pos) >> 32) - ((b->pos - a->pos) >> 32); } int ff_nut_sp_pts_cmp(syncpoint_t *a, syncpoint_t *b){ - return (a->ts - b->ts>>32) - (b->ts - a->ts>>32); + return ((a->ts - b->ts) >> 32) - ((b->ts - a->ts) >> 32); } void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts){ |