mov: fix operator precedence bug

This commit is contained in:
Ronald S. Bultje 2012-06-18 20:06:35 +01:00 committed by Mans Rullgard
parent a2b186a188
commit f1f37c7011
1 changed files with 1 additions and 1 deletions

View File

@ -1024,7 +1024,7 @@ static int mov_read_dvc1(MOVContext *c, AVIOContext *pb, MOVAtom atom)
return AVERROR_INVALIDDATA;
profile_level = avio_r8(pb);
if (profile_level & 0xf0 != 0xc0)
if ((profile_level & 0xf0) != 0xc0)
return 0;
av_free(st->codec->extradata);