mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
frmdec: reduce probe score to reflect test accuracy (and pass probetest)
This commit is contained in:
parent
e797f22efa
commit
c44b4ee6ea
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue