mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 01:02:33 +00:00
Merge commit 'b5fe13448b13bfdd48a75b7e12387e11e3526d7c'
* commit 'b5fe13448b13bfdd48a75b7e12387e11e3526d7c': vc1: Use logical instead of bitwise or for coded_inter Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
bde8eb7fa3
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user