summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/mtv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mtv.c b/libavformat/mtv.c
index 0547430f74..13e8ac2e8d 100644
--- a/libavformat/mtv.c
+++ b/libavformat/mtv.c
@@ -62,7 +62,7 @@ static int mtv_probe(AVProbeData *p)
return 0;
/* If width or height are 0 then imagesize header field should not */
- if(AV_RL16(&p->buf[52]) && AV_RL16(&p->buf[54]))
+ if(!AV_RL16(&p->buf[52]) || !AV_RL16(&p->buf[54]))
{
if(!!AV_RL16(&p->buf[56]))
return AVPROBE_SCORE_MAX/2;