[FFmpeg-devel] Re: [PATCH v3 5/5] doc/protocols: Add command-line description for ipv6 options

2025-08-29 Thread Marton Balint via ffmpeg-devel
On Fri, 29 Aug 2025, Peter Enderborg via ffmpeg-devel wrote: Two new options added for receive IPv6 multicast streams. 1 multicast_max_joins 2 multicast_interface Change-Id: Ief0389815cff3edf26f7db5cbff033ce8bb24639 Signed-off-by: Peter Enderborg --- doc/protocols.texi | 17

[FFmpeg-devel] Re: [PATCH] web: Add funding.json

2025-08-29 Thread Michael Niedermayer via ffmpeg-devel
Hi Remi On Fri, Aug 29, 2025 at 08:35:54PM +0300, Rémi Denis-Courmont via ffmpeg-devel wrote: [...] > >+},{ > >+"guid": "ffmpeg-crypto", > >+"type": "other", > >+"address": "0x2f3900e7064eE63D30d749971265858612AA7139", > >+"description": "US

[FFmpeg-devel] [PATCH 1/2] libavfilter/vf_minterpolate: Hoist hot loop in `set_frame_data`

2025-08-29 Thread Zsolt Vadász via ffmpeg-devel
Signed-off-by: Zsolt Vadasz --- libavfilter/vf_minterpolate.c | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/libavfilter/vf_minterpolate.c b/libavfilter/vf_minterpolate.c index d034783bc5..2406259056 100644 --- a/libavfilter/vf_minterpolate.c +++ b/libavfilter

[FFmpeg-devel] [PATCH 2/2] libavfilter/vf_minterpolate: Use local variable in array

2025-08-29 Thread Zsolt Vadász via ffmpeg-devel
Signed-off-by: Zsolt Vadasz --- libavfilter/vf_minterpolate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavfilter/vf_minterpolate.c b/libavfilter/vf_minterpolate.c index 2406259056..ba5c512e03 100644 --- a/libavfilter/vf_minterpolate.c +++ b/libavfilter/vf_minter

[FFmpeg-devel] [PATCH 0/2] libavfilter/vf_minterpolate: Minor speedup

2025-08-29 Thread Zsolt Vadász via ffmpeg-devel
This patch series makes vf_minterpolate approximately 5% faster, according to my tests, which I performed on a Ryzen 7 PRO 4750U, compiling with GCC 15.2.1, using -O2. Zsolt Vadasz (2): libavfilter/vf_minterpolate: Hoist hot loop in `set_frame_data` libavfilter/vf_minterpolate: Use local var

[FFmpeg-devel] Re: [PATCH] web: Add funding.json

2025-08-29 Thread Rémi Denis-Courmont via ffmpeg-devel
Le 29 août 2025 00:10:26 GMT+03:00, Michael Niedermayer via ffmpeg-devel a écrit : >See: https://fundingjson.org/ >See: https://floss.fund/ > >Based on: https://www.python.org/funding.json and the example from >fundingjson.org > >It is put in the web repository so its all on the plain ffmpeg.o

[FFmpeg-devel] Re: [PATCH v3 1/5] configure: Add test_ioctl and test for SIOCGIFINDEX

2025-08-29 Thread Rémi Denis-Courmont via ffmpeg-devel
Le 29 août 2025 17:04:55 GMT+03:00, Peter Enderborg a écrit  : >Adds a generic ioctl tester and a specific test SIOCGIFINDEX >that sets ioctl_gifindex. It is a network specific feature >and the tests are run only in network context. `if_nametoindex` is the prescribed standard function to do th

[FFmpeg-devel] Re: [PATCH v2] web: Add funding.json

2025-08-29 Thread Vittorio Giovara via ffmpeg-devel
On Fri, Aug 29, 2025 at 5:23 PM Michael Niedermayer via ffmpeg-devel < ffmpeg-devel@ffmpeg.org> wrote: > See: https://fundingjson.org/ > See: https://floss.fund/ > > Based on: https://www.python.org/funding.json and the example from > fundingjson.org > > It is put in the web repository so its all

[FFmpeg-devel] [PATCH] avcodec/version: update the codec_ids (PR #20371)

2025-08-29 Thread ngaullier via ffmpeg-devel
PR #20371 opened by ngaullier URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20371 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20371.patch The counters should be incremented for each new codec. Catch-up to be in sync with codec_id.h again. Signed-off-by: Nicolas Gaullier >From 725

[FFmpeg-devel] [PATCH v2] web: Add funding.json

2025-08-29 Thread Michael Niedermayer via ffmpeg-devel
See: https://fundingjson.org/ See: https://floss.fund/ Based on: https://www.python.org/funding.json and the example from fundingjson.org It is put in the web repository so its all on the plain ffmpeg.org domain otherwise extra files are needed --- htdocs/funding.json | 126 +++

[FFmpeg-devel] Re: [PATCH] web: Add funding.json

2025-08-29 Thread Derek Buitenhuis via ffmpeg-devel
On 8/29/2025 4:15 PM, Michael Niedermayer via ffmpeg-devel wrote: > Implying that a funding.json was pushed without consent is unacceptable It was and I said so at the time. Nobody approved it. Please forward to the CC if you think it is unacceptable. Their silence is typical. I'll CC them for yo

[FFmpeg-devel] Re: [PATCH] web: Add funding.json

2025-08-29 Thread Michael Niedermayer via ffmpeg-devel
Hi Derek On Fri, Aug 29, 2025 at 01:48:07PM +0100, Derek Buitenhuis via ffmpeg-devel wrote: > On 8/29/2025 2:08 AM, Kieran Kunhya via ffmpeg-devel wrote: > We'll see if this is pushed without consent like funding.json > was to the main git repo, which has yet to be removed. Implying that a fund

[FFmpeg-devel] [PATCH v3 5/5] doc/protocols: Add command-line description for ipv6 options

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
Two new options added for receive IPv6 multicast streams. 1 multicast_max_joins 2 multicast_interface Change-Id: Ief0389815cff3edf26f7db5cbff033ce8bb24639 Signed-off-by: Peter Enderborg --- doc/protocols.texi | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/d

[FFmpeg-devel] [PATCH v3 0/5] Select output interfaces for ipv6 multicast

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
History: v2 Added configure script to disable interface selection for systems that do not support ioctl SIOCGIFINDEX for mapping name to index-id. v2.1 rebase v3 Added patches for command-line options to select interface and maximum number of interfaces. Spited iterate function to use a helper fu

[FFmpeg-devel] [PATCH v3 3/5] libavformat: udp.c Add support for multi or single join

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
A new commandline option to set for joining multiple interfaces. The default is one, and it is also a special case falling back to output routing table for selecting interface on group join. On group join it search over all interfaces. Change-Id: Idbf88c3ecd7d27cba0a236a8fa2451a85143d068 Signed-of

[FFmpeg-devel] [PATCH v3 4/5] libavformat: add multicast interface

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
Add a commandline option for selecting interface by name. This is useful when your multicast routing table for sending multicast does not match the interface reciving is wanted. Signed-off-by: Peter Enderborg --- libavformat/rtpproto.c | 4 libavformat/rtsp.c | 3 +++ libavformat/rtsp

[FFmpeg-devel] [PATCH v3 2/5] avformat/udp: Select output interfaces for ipv6 multicast

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
This fixes two old TODO's in ipv6 multicast handling. If the system as SIOCGIFINDEX ioctl a helper function to iterate over all interfaces added to join the multicast group on interface if approperite. The default value is IN6ADDR_ANY (::) and it then joins all interfaces that are up and have mult

[FFmpeg-devel] [PATCH v3 1/5] configure: Add test_ioctl and test for SIOCGIFINDEX

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
Adds a generic ioctl tester and a specific test SIOCGIFINDEX that sets ioctl_gifindex. It is a network specific feature and the tests are run only in network context. Signed-off-by: Peter Enderborg --- configure | 16 1 file changed, 16 insertions(+) diff --git a/configure b/c

[FFmpeg-devel] [PATCH] .forgejo/CODEOWNERS: add myself for relevant files (PR #20370)

2025-08-29 Thread Dmitrii Ovchinnikov via ffmpeg-devel
PR #20370 opened by Dmitrii Ovchinnikov (OvchinnikovDmitrii) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20370 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20370.patch .forgejo/CODEOWNERS: add myself for relevant files(AMF) MAINTAINERS: Update the entries for AMF >From 05d9d97bc6d

[FFmpeg-devel] Re: [PATCH] web: Add funding.json

2025-08-29 Thread Derek Buitenhuis via ffmpeg-devel
On 8/29/2025 2:08 AM, Kieran Kunhya via ffmpeg-devel wrote: >> +"guid": "ffmpeg-crypto", >> +"type": "other", >> +"address": "0x2f3900e7064eE63D30d749971265858612AA7139", >> +"description": "USDC on >> etherium/arbitrum/base/optimism/polygon, small

[FFmpeg-devel] [PATCH] .forge/CODEOWNERS: add myself to EXIF code (PR #20369)

2025-08-29 Thread Leo Izen via ffmpeg-devel
PR #20369 opened by Leo Izen (Traneptora) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20369 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20369.patch Now that the major EXIF overhaul has been merged, I should be suggested to review patches that modify it. Signed-off-by: Leo Izen

[FFmpeg-devel] [PATCH] avfilter/af_whisper: fix srt file format (PR #20368)

2025-08-29 Thread Vittorio Palmisano via ffmpeg-devel
PR #20368 opened by Vittorio Palmisano (vpalmisano) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20368 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20368.patch SRT file format requires a comma in the time string. >From 103c02ef96f360b862a0477a794d54af22baa41f Mon Sep 17 00:00:00 20

[FFmpeg-devel] [PATCH] cbs_vp9: Always update loop filter and segmentation from current frame (PR #20367)

2025-08-29 Thread nowrep via ffmpeg-devel
PR #20367 opened by nowrep URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20367 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20367.patch Fixes decoding vp90-2-09-aq2, vp90-2-15-segkey_adpq, vp90-2-15-segkey and vp90-2-22-svc_1280x720_1 with Vulkan hwaccel. Fixes: 26a2a76346 ("cbs_vp9:

[FFmpeg-devel] Re: [PATCH] libavfilter: Whisper audio filter

2025-08-29 Thread Vittorio Palmisano via ffmpeg-devel
Hi Wang, thank you for your comments! > 1) Instead of 00:00:00.000 --> 00:00:02.440 >srt files usually use comma: >00:00:00,000 --> 00:00:02,440 Ok, I will post a fix for that. > 2) There usually is a leading empty line at the beginning, i.e., > >$ cat output.srt #should be > >1

[FFmpeg-devel] [PATCH] libavformat/vorbiscomment.c:rm warning ‘%03d’ directive output may be truncated (PR #20366)

2025-08-29 Thread caifan via ffmpeg-devel
PR #20366 opened by caifan URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20366 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20366.patch warning: ‘%03d’ directive output may be truncated writing between 3 and 10 bytes into a region of size 4 [-Wformat-truncation=] warning: ‘%02d’ dire

[FFmpeg-devel] [PATCH] dpxenc: map AVCodecContext color transfer and color primaries fields (PR #20365)

2025-08-29 Thread Peter Ross via ffmpeg-devel
PR #20365 opened by Peter Ross (pross) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20365 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20365.patch Fixes issue #20341 >From cbac28e3292bc8240a8b3aca371ffc611b8cdcf7 Mon Sep 17 00:00:00 2001 From: Peter Ross Date: Fri, 29 Aug 2025 17: