[FFmpeg-devel] [PATCH] avfilter/vf_frei0r: fix time not being passed in seconds (PR #20379)

2025-08-31 Thread breunigs via ffmpeg-devel
PR #20379 opened by breunigs URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20379 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20379.patch The frei0r API expects the time in seconds, but was given it in milliseconds. The bug might exist since 41f1d3a (~14 years ago), but plugins depend

Re: [FFmpeg-devel] [PATCH] avfilter/vf_frei0r: fix time not being passed in seconds

2025-07-12 Thread Stefan Breunig via ffmpeg-devel
Hi Michael, This affects users, so it needs to be documented. Good hint. I assume you meant in the Changelog, even if it is otherwise relatively high level compared to this change? Do you know someone who may be interrested in maintaining vf_frei0r in ffmpeg ? Unfortunately not. The upstream

Re: [FFmpeg-devel] [PATCH] avfilter/vf_frei0r: fix time not being passed in seconds

2025-07-08 Thread Michael Niedermayer
Hi Stefan On Sun, Jul 06, 2025 at 08:57:57AM +0200, Stefan Breunig via ffmpeg-devel wrote: > Date: Sun, 6 Jul 2025 08:57:57 +0200 > From: Stefan Breunig > To: ffmpeg-devel@ffmpeg.org > Subject: [PATCH] avfilter/vf_frei0r: fix time not being passed in seconds > > The frei0r API expects the time

[FFmpeg-devel] [PATCH] avfilter/vf_frei0r: fix time not being passed in seconds

2025-07-05 Thread Stefan Breunig via ffmpeg-devel
--- Begin Message --- The frei0r API expects the time in seconds, but was given it in milliseconds. The bug might exist since 41f1d3a (~14 years ago), but plugins depending on the time are unwatchable without this patch. For example: ffmpeg -filter_complex "testsrc2=d=5,frei0r=distort0r" out.mp4