From 44fdf37c94ed1f5ecc42ef129cbaebff92addd0e Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Sun, 17 Jun 2012 02:08:00 +0300 Subject: mov_chan: Fix operator precedence by adding parentheses MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavformat/mov_chan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/mov_chan.c') diff --git a/libavformat/mov_chan.c b/libavformat/mov_chan.c index a0fbecc991..a843e318c4 100644 --- a/libavformat/mov_chan.c +++ b/libavformat/mov_chan.c @@ -492,7 +492,7 @@ uint32_t ff_mov_get_channel_layout_tag(enum CodecID codec_id, /* find the layout tag for the specified channel layout */ for (i = 0; layouts[i] != 0; i++) { - if (layouts[i] & 0xFFFF != channels) + if ((layouts[i] & 0xFFFF) != channels) continue; for (j = 0; layout_map[j].tag != 0; j++) { if (layout_map[j].tag == layouts[i] && -- cgit v1.2.3