Commit 6692dc24 authored by daniel's avatar daniel

Parenthesize correctly in TMV probe



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20335 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 22d24e01
......@@ -55,7 +55,8 @@ static int tmv_probe(AVProbeData *p)
!p->buf[8] && // compression method
p->buf[9] && // char cols
p->buf[10]) // char rows
return AVPROBE_SCORE_MAX / (p->buf[9] == 40 && p->buf[10] == 25)? 1 : 4;
return AVPROBE_SCORE_MAX /
((p->buf[9] == 40 && p->buf[10] == 25) ? 1 : 4);
return 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