From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 55C1B460F4 for ; Sun, 30 Jun 2024 23:13:56 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id C32B068D6D2; Mon, 1 Jul 2024 02:13:26 +0300 (EEST) Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [217.70.183.196]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id EE2DF68D688 for ; Mon, 1 Jul 2024 02:13:12 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 454F0E0004 for ; Sun, 30 Jun 2024 23:13:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1719789192; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=tIozvnd5hMacNKW9u/60XN3/w0QISmVJkqXi+liEoUA=; b=IODwECMvY35dZI+pX/170iSKjA/HoEqXhXH+KwGnOj7GYqQ4XzMzdOV3Q6hLAQvL/pJP3D 5NCNsXShEm95G+iSD81lnwLC4ZbwYZvwAex0NSwET/WzK0scOKWUofmE2NP9stDySXSOFl sWXdzGgtCsrZh2EfT88YobUBchCbMOFKxovfOhDy/mjw1b/fPPdfgsNgN/GOLhxSyikr75 oaFUBPgqI7VZxjhCJjIfKKCWjcmL9To6gf03OJxGUADfpW0rZLV6DaxadAtPg6dQkBlFQE ykubHKX7bjNIpdSByUfk5vNJbYjbJ0tY+sH8WBzNZemObjJ8t4S1fhaYviwl5w== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Mon, 1 Jul 2024 01:12:44 +0200 Message-ID: <20240630231306.3779027-5-michael@niedermayer.cc> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240630231306.3779027-1-michael@niedermayer.cc> References: <20240630231306.3779027-1-michael@niedermayer.cc> MIME-Version: 1.0 X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 05/11] tools/target_enc_fuzzer: A64MULTI5 encoder is very slow, check and adjust threshold X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Fixes: Timeout Fixes: 68999/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_A64MULTI5_fuzzer-5078418784845824 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- tools/target_enc_fuzzer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/target_enc_fuzzer.c b/tools/target_enc_fuzzer.c index c4c2df93a9b..059d7830710 100644 --- a/tools/target_enc_fuzzer.c +++ b/tools/target_enc_fuzzer.c @@ -96,6 +96,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { maxpixels = maxpixels_per_frame * maxiteration; switch (c->p.id) { case AV_CODEC_ID_A64_MULTI: maxpixels /= 65536; break; + case AV_CODEC_ID_A64_MULTI5: maxpixels /= 65536; break; } maxpixels_per_frame = FFMIN(maxpixels_per_frame , maxpixels); -- 2.45.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".