Commit bde8eb7f authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'b5fe1344'

* commit 'b5fe1344':
  vc1: Use logical instead of bitwise or for coded_inter
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 1964251b b5fe1344
......@@ -3673,7 +3673,7 @@ static int vc1_decode_p_mb(VC1Context *v)
vc1_mc_4mv_chroma(v, 0);
v->mb_type[0][s->block_index[i]] = is_intra[i];
if (!coded_inter)
coded_inter = !is_intra[i] & is_coded[i];
coded_inter = !is_intra[i] && is_coded[i];
}
// if there are no coded blocks then don't do anything more
dst_idx = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment