changeset 2704:5ab595d4eb2f libavformat

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
author diego
date Sun, 04 Nov 2007 22:51:49 +0000
parents 2c2da3011d6e
children cc693f9e80ee
files nut.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/nut.c	Sun Nov 04 19:52:08 2007 +0000
+++ b/nut.c	Sun Nov 04 22:51:49 2007 +0000
@@ -40,11 +40,11 @@
 }
 
 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){