mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/genh: Fix tools/probetest failure
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
0be48dd9bb
commit
3a4d8281c6
@ -32,6 +32,8 @@ static int genh_probe(AVProbeData *p)
|
||||
{
|
||||
if (AV_RL32(p->buf) != MKTAG('G','E','N','H'))
|
||||
return 0;
|
||||
if (AV_RL32(p->buf+4) <= 0 || AV_RL32(p->buf+4) > 0xFFFF) // channels
|
||||
return 0;
|
||||
|
||||
return AVPROBE_SCORE_MAX / 3 * 2;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user