From 4d0a25d76085530a7017ae72d7d3eeab3fd6dad8 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 15 Aug 2023 21:37:12 +0200 Subject: [PATCH] avformat/soxdec: improve probe a little --- libavformat/soxdec.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/libavformat/soxdec.c b/libavformat/soxdec.c index 10bea25232..4cfe7c7798 100644 --- a/libavformat/soxdec.c +++ b/libavformat/soxdec.c @@ -39,9 +39,13 @@ static int sox_probe(const AVProbeData *p) { - if (AV_RL32(p->buf) == SOX_TAG || AV_RB32(p->buf) == SOX_TAG) - return AVPROBE_SCORE_MAX; - return 0; + if (AV_RL32(p->buf) != SOX_TAG && AV_RB32(p->buf) != SOX_TAG) + return 0; + if (AV_RN32(p->buf+4) == 0) + return 0; + if (AV_RN32(p->buf+24) == 0) + return 0; + return AVPROBE_SCORE_MAX; } static int sox_read_header(AVFormatContext *s)