You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
frmdec: reduce probe score to reflect test accuracy (and pass probetest)
This commit is contained in:
@@ -45,7 +45,7 @@ static int frm_read_probe(AVProbeData *p)
|
||||
if (p->buf_size > 8 &&
|
||||
p->buf[0] == 'F' && p->buf[1] == 'R' && p->buf[2] == 'M' &&
|
||||
AV_RL16(&p->buf[4]) && AV_RL16(&p->buf[6]))
|
||||
return AVPROBE_SCORE_MAX / 2;
|
||||
return AVPROBE_SCORE_MAX / 4;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user