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 6B7134CE4C for ; Wed, 28 May 2025 21:59:48 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 9835168DB40; Thu, 29 May 2025 00:59:43 +0300 (EEST) Received: from mail-10698.protonmail.ch (mail-10698.protonmail.ch [79.135.106.98]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id B1AE468D337 for ; Thu, 29 May 2025 00:59:37 +0300 (EEST) Date: Wed, 28 May 2025 21:59:30 +0000 To: FFmpeg development discussions and patches Message-ID: In-Reply-To: <20250528151703.GZ29660@pb2> References: <20250528151703.GZ29660@pb2> Feedback-ID: 32895411:user:proton X-Pm-Message-ID: 07aac05be681544212ab8fe182f31d0a48febe3e MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] Fuzzer fixes 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: , From: Tristan Matthews via ffmpeg-devel Reply-To: FFmpeg development discussions and patches Cc: Tristan Matthews 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: On Wednesday, May 28th, 2025 at 11:17 AM, Michael Niedermayer wrote: > Hi > > If someone has spare time, there are some public open issues on: > https://issues.oss-fuzz.com/issues?q=status:open componentid:1638179 title:ffmpeg > > check if they have pending fixes on the ML first and if so help review > if no pending fix, please submit a fix. > (its easy to check as fixes should refer to the testcase filename) > > If people help, i would have more time and can do other work (like release) sooner > > thx > > -- > Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB > > Complexity theory is the science of finding the exact solution to an > approximation. Benchmarking OTOH is finding an approximation of the exact > _______________________________________________ > 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". In case it saves someone time, seems like the latest HEAD of freetype isn't building properly in this context so I had to use this patch to build the fuzzer: diff --git a/projects/ffmpeg/Dockerfile b/projects/ffmpeg/Dockerfile index ea4a43f1c..d5129396c 100644 --- a/projects/ffmpeg/Dockerfile +++ b/projects/ffmpeg/Dockerfile @@ -27,7 +27,7 @@ RUN git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg RUN curl -O https://www.alsa-project.org/files/pub/lib/alsa-lib-1.2.12.tar.bz2 RUN git clone --depth 1 https://github.com/mstorsjo/fdk-aac.git RUN git clone --depth 1 https://gitlab.freedesktop.org/fontconfig/fontconfig.git -RUN git clone --depth 1 https://gitlab.freedesktop.org/freetype/freetype.git +RUN git clone --depth 1 --branch VER-2-13-3 https://gitlab.freedesktop.org/freetype/freetype.git RUN git clone --depth 1 https://github.com/fribidi/fribidi RUN git clone --depth 1 https://github.com/harfbuzz/harfbuzz RUN git clone --depth 1 https://github.com/libass/libass _______________________________________________ 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".