mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-19 05:55:07 +00:00
latm: Do not give a score for a single instance
Bug-Id: 773 CC: libav-stable@libav.org
This commit is contained in:
parent
71f29410e7
commit
4f5906a1d7
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user