Commit 4f5906a1 authored by Luca Barbato's avatar Luca Barbato

latm: Do not give a score for a single instance

Bug-Id: 773
CC: libav-stable@libav.org
parent 71f29410
......@@ -155,7 +155,7 @@ static int latm_read_probe(AVProbeData *p)
return AVPROBE_SCORE_EXTENSION;
else if (max_frames >= 3)
return AVPROBE_SCORE_EXTENSION / 2;
else if (max_frames >= 1)
else if (max_frames > 1)
return 1;
else
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