From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id CA0554DB30 for ; Thu, 3 Jul 2025 20:14:18 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 1B37468F1B5; Thu, 3 Jul 2025 23:13:16 +0300 (EEST) Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [217.70.183.197]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id A5B8468F18E for ; Thu, 3 Jul 2025 23:13:08 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 063DE41D02 for ; Thu, 3 Jul 2025 20:13:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1751573588; 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=x1S4cOreDMYc0ZVS3YegxVd8fQUpUQVJ+3mDb9JkRgw=; b=jLXFyRHlm/fl1v24kCiz2MzHo9fZdnURFamQI9UfUUAoF/2teE1LFZfaVQ7H9/+GAVGIM5 Mgni9H1QASiGQatPwFYkOBr7Uv5DhGFvbKhoU+nngento30pBcCgQqA4LK/R1dISMrxvDR bCULbbfcj9h4z4RKUYpWhdrKWyMDNnnHj1t4ttDkuDff7nzVZI78K6iQw+4zI2ze5UJTd0 j35av2inrT4kQSqZyJmdNeCZ+JZGtSnu/J5oOB/fANYqOYs/f+zYIGFoajdi9iXOYQdQet qd2UJfrzlO+fs9yE+ky6/Iu1eVMjDMXOsEzH/2hyop6wOCzvqC/XD1o25LDheA== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Thu, 3 Jul 2025 22:12:52 +0200 Message-ID: <20250703201256.3161841-10-michael@niedermayer.cc> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250703201256.3161841-1-michael@niedermayer.cc> References: <20250703201256.3161841-1-michael@niedermayer.cc> MIME-Version: 1.0 X-GND-State: clean X-GND-Score: -85 X-GND-Cause: gggruggvucftvghtrhhoucdtuddrgeeffedrtdefgddvuddvudcutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfitefpfffkpdcuggftfghnshhusghstghrihgsvgenuceurghilhhouhhtmecufedtudenucesvcftvggtihhpihgvnhhtshculddquddttddmnegfrhhlucfvnfffucdludehmdenucfjughrpefhvffufffkofgjfhgggfestdekredtredttdenucfhrhhomhepofhitghhrggvlhcupfhivgguvghrmhgrhigvrhcuoehmihgthhgrvghlsehnihgvuggvrhhmrgihvghrrdgttgeqnecuggftrfgrthhtvghrnhepgeejhfetgefhgfeludegvdduvdffgeefvddtheetlefhueeitdevffevfeehhefgnecuffhomhgrihhnpehgihhthhhusgdrtghomhenucfkphepgedurdeiiedrieeirddvvdejnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehinhgvthepgedurdeiiedrieeirddvvdejpdhhvghloheplhhotggrlhhhohhsthdpmhgrihhlfhhrohhmpehmihgthhgrvghlsehnihgvuggvrhhmrgihvghrrdgttgdpnhgspghrtghpthhtohepuddprhgtphhtthhopehffhhmphgvghdquggvvhgvlhesfhhfmhhpvghgrdhorhhg X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 10/10] tools/target_dec_fuzzer: Adjust threshold for PIXLET 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: 425754611/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PIXLET_fuzzer-4778526102585344 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- tools/target_dec_fuzzer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c index c9ec2b18d7f..6914304148a 100644 --- a/tools/target_dec_fuzzer.c +++ b/tools/target_dec_fuzzer.c @@ -286,6 +286,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { case AV_CODEC_ID_MXPEG: maxpixels /= 128; break; case AV_CODEC_ID_NUV: maxpixels /= 128; break; case AV_CODEC_ID_OPUS: maxsamples /= 16384; break; + case AV_CODEC_ID_PIXLET: maxpixels /= 1024; break; case AV_CODEC_ID_PNG: maxpixels /= 128; break; case AV_CODEC_ID_APNG: maxpixels /= 128; break; case AV_CODEC_ID_QTRLE: maxpixels /= 16; break; -- 2.49.0 _______________________________________________ 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".