Skip to content
Snippets Groups Projects
Commit 4f5906a1 authored by Luca Barbato's avatar Luca Barbato
Browse files

latm: Do not give a score for a single instance

Bug-Id: 773
CC: libav-stable@libav.org
parent 71f29410
No related branches found
No related tags found
No related merge requests found
...@@ -155,7 +155,7 @@ static int latm_read_probe(AVProbeData *p) ...@@ -155,7 +155,7 @@ static int latm_read_probe(AVProbeData *p)
return AVPROBE_SCORE_EXTENSION; return AVPROBE_SCORE_EXTENSION;
else if (max_frames >= 3) else if (max_frames >= 3)
return AVPROBE_SCORE_EXTENSION / 2; return AVPROBE_SCORE_EXTENSION / 2;
else if (max_frames >= 1) else if (max_frames > 1)
return 1; return 1;
else else
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment