Re: [FFmpeg-devel] [PATCH] apsnr and asisdr filter

2023-08-14 Thread Michael Niedermayer
On Sun, Aug 13, 2023 at 05:14:48AM +0200, Paul B Mahol wrote: > Attached. > af_asdr.c | 44 > 1 file changed, 24 insertions(+), 20 deletions(-) > f0f248ba7e893a63a684b92a6d82ab246fc1995c > 0003-avfilter-af_asdr-use-single-structure-for-sums.patch >

Re: [FFmpeg-devel] [PATCH] apsnr and asisdr filter

2023-08-14 Thread Michael Niedermayer
On Sun, Aug 13, 2023 at 05:14:48AM +0200, Paul B Mahol wrote: > Attached. > af_asdr.c | 44 > 1 file changed, 24 insertions(+), 20 deletions(-) > f0f248ba7e893a63a684b92a6d82ab246fc1995c > 0003-avfilter-af_asdr-use-single-structure-for-sums.patch >

Re: [FFmpeg-devel] [PATCH v2] avcodec/jpeg2000htdec: check if block decoding will exceed internal precision

2023-08-14 Thread Tomas Härdin
lör 2023-08-12 klockan 13:31 -0700 skrev p...@sandflow.com: > From: Pierre-Anthony Lemieux > > Intended to replace > https://patchwork.ffmpeg.org/project/ffmpeg/patch/20230802000135.26482-3-mich...@niedermayer.cc/ > with a more accurate block decoding magnitude bound. > > --- >  libavcodec/jpeg2

Re: [FFmpeg-devel] [PATCH v3 1/1] configure: Set WIN32_LEAN_AND_MEAN at configure time

2023-08-14 Thread Martin Storsjö
On Sat, 5 Aug 2023, L. E. Segovia wrote: Including winsock2.h or windows.h without WIN32_LEAN_AND_MEAN cause bzlib.h to parse as nonsense, due to an instance of #define char small in rpcndr.h. See: https://stackoverflow.com/a/27794577 Signed-off-by: L. E. Segovia --- compat/atomics/win32/std

[FFmpeg-devel] [PATCH v4 0/1] configure: Set WIN32_LEAN_AND_MEAN at configure time

2023-08-14 Thread L. E. Segovia
Now adapted to insert WIN32_LEAN_AND_MEAN for MinGW and Cygwin too. L. E. Segovia (1): configure: Set WIN32_LEAN_AND_MEAN at configure time compat/atomics/win32/stdatomic.h | 1 - compat/w32pthreads.h | 1 - configure| 3 +++ libavdevice/dshow_capture.h

[FFmpeg-devel] [PATCH v4 1/1] configure: Set WIN32_LEAN_AND_MEAN at configure time

2023-08-14 Thread L. E. Segovia
Including winsock2.h or windows.h without WIN32_LEAN_AND_MEAN cause bzlib.h to parse as nonsense, due to an instance of #define char small in rpcndr.h. See: https://stackoverflow.com/a/27794577 Reviewed-by: Martin Storsjö Signed-off-by: L. E. Segovia --- compat/atomics/win32/stdatomic.h | 1 -

Re: [FFmpeg-devel] [PATCH 1/2] avradio/sdr: add Airband frequencies

2023-08-14 Thread Michael Niedermayer
On Sat, Jul 29, 2023 at 11:46:56AM +1000, Peter Ross wrote: > --- > libavradio/sdrdemux.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavradio/sdrdemux.c b/libavradio/sdrdemux.c > index 3b24cfedef..0bd9222e6d 100644 > --- a/libavradio/sdrdemux.c > +++ b/libavradio/sdrdemux.c > @@ -

Re: [FFmpeg-devel] [PATCH 1/2] avradio/sdr: add Airband frequencies

2023-08-14 Thread Paul B Mahol
On Mon, Aug 14, 2023 at 3:43 PM Michael Niedermayer wrote: > On Sat, Jul 29, 2023 at 11:46:56AM +1000, Peter Ross wrote: > > --- > > libavradio/sdrdemux.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/libavradio/sdrdemux.c b/libavradio/sdrdemux.c > > index 3b24cfedef..0bd9222e6d

Re: [FFmpeg-devel] [PATCH] avfilter: add libvmaf_cuda

2023-08-14 Thread Kyle Swanson
Hi, On Mon, Aug 7, 2023 at 10:50 AM Kyle Swanson wrote: > Adds the new avfilter `libvmaf_cuda`, integrating the new vmaf_cuda_* > apis in libvmaf. Patch attached. Anyone interested in reviewing this? Would be appreciated. Thanks, Kyle ___ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH v3] vvcdec: add thread executor

2023-08-14 Thread Michael Niedermayer
On Wed, Jul 19, 2023 at 09:13:00PM +0800, Nuo Mi wrote: > The executor design pattern was inroduced by java > > it also adapted by python > >

Re: [FFmpeg-devel] [PATCH] avfilter: add libvmaf_cuda

2023-08-14 Thread Timo Rothenpieler
From 2665b7ddaefe6739bfeef4573183981582bdb995 Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Mon, 7 Aug 2023 10:38:12 -0700 Subject: [PATCH] avfilter: add libvmaf_cuda --- configure| 4 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_lib

Re: [FFmpeg-devel] [PATCH v4 1/1] configure: Set WIN32_LEAN_AND_MEAN at configure time

2023-08-14 Thread Martin Storsjö
On Mon, 14 Aug 2023, L. E. Segovia wrote: Including winsock2.h or windows.h without WIN32_LEAN_AND_MEAN cause bzlib.h to parse as nonsense, due to an instance of #define char small in rpcndr.h. See: https://stackoverflow.com/a/27794577 Reviewed-by: Martin Storsjö Signed-off-by: L. E. Segovia

Re: [FFmpeg-devel] [PATCH] Add NVENC "Maximum encoded slice size in bytes" for H.264/HEVC codecs.

2023-08-14 Thread Timo Rothenpieler
On 14.08.2023 01:08, Kieran Kunhya wrote: On Sun, 13 Aug 2023 at 18:36, Timo Rothenpieler wrote: Did you actually get this to work? I'm testing it right now, and at stupid low values like 10 bytes I get a working but heavily artifacted video. If I set it to something like 2048 all I get is a f

Re: [FFmpeg-devel] [PATCH 1/2] avradio/sdr: add Airband frequencies

2023-08-14 Thread Peter Ross
On Mon, Aug 14, 2023 at 03:42:53PM +0200, Michael Niedermayer wrote: > On Sat, Jul 29, 2023 at 11:46:56AM +1000, Peter Ross wrote: > > --- > > libavradio/sdrdemux.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/libavradio/sdrdemux.c b/libavradio/sdrdemux.c > > index 3b24cfedef..0

Re: [FFmpeg-devel] [PATCH v2] avcodec/jpeg2000htdec: check if block decoding will exceed internal precision

2023-08-14 Thread Pierre-Anthony Lemieux
On Mon, Aug 14, 2023 at 1:14 AM Tomas Härdin wrote: > > lör 2023-08-12 klockan 13:31 -0700 skrev p...@sandflow.com: > > From: Pierre-Anthony Lemieux > > > > Intended to replace > > https://patchwork.ffmpeg.org/project/ffmpeg/patch/20230802000135.26482-3-mich...@niedermayer.cc/ > > with a more acc

Re: [FFmpeg-devel] [PATCH] avfilter/vf_ssim: Fix x86 assembly code for SSIM calculation

2023-08-14 Thread Paul B Mahol
LGTM will apply soon. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH v3] avcodec/cbs_vp8: Add support for VP8 codec bitstream READ methods

2023-08-14 Thread Dai, Jianhui J
> -Original Message- > From: ffmpeg-devel On Behalf Of > Andreas Rheinhardt > Sent: Saturday, August 12, 2023 5:41 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v3] avcodec/cbs_vp8: Add support for > VP8 codec bitstream READ methods > > Dai, Jianhui J: > > This