Re: [FFmpeg-devel] FFmpeg 8.0 Name

2025-08-20 Thread Frank Plowman via ffmpeg-devel
On 20/08/2025 10:47, Frank Plowman via ffmpeg-devel wrote: > Some people who haven't yet had one: > * Fourier Sorry, seems a release was named Fourier all the way back in 2013. > * Shannon > * Kolmogorov > * Dirac > * Kronecker > * Huffman > * Hamming > *

Re: [FFmpeg-devel] FFmpeg 8.0 Name

2025-08-20 Thread Gyan Doshi via ffmpeg-devel
On 2025-08-20 03:17 pm, Frank Plowman via ffmpeg-devel wrote: On 20/08/2025 08:28, Ingo Oppermann via ffmpeg-devel wrote: On 20 Aug 2025, at 00:27, Jacob Lifshay via ffmpeg-devel wrote: On August 19, 2025 2:27:12 PM PDT, Michael Niedermayer via ffmpeg-devel wrote: Hi all what name

Re: [FFmpeg-devel] CI

2025-08-20 Thread Timo Rothenpieler via ffmpeg-devel
On 8/20/2025 1:26 AM, Michael Niedermayer via ffmpeg-devel wrote: Hi It seems the forgejo CI takes about 13min to do fate on aarch64 and x86-64 and build on win64 Locally i run fate + install on x86-64 build on x86-32, mingw64, arm32, mips, ppc, x86-64 + shared libs testprogs

[FFmpeg-devel] [PATCH] avcodec/hevc: Fix invalid null pointer check (PR #20290)

2025-08-20 Thread Zhao Zhili via ffmpeg-devel
< sps->pixel_shift)] : NULL const HEVCContext *const s = lc->parent; -- 2.49.1 ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] STF 2025 grant request (2025-09-01 target)

2025-08-20 Thread Niklas Haas via ffmpeg-devel
ary, there is no guarantee that all > > (or any) proposals will be accepted by SPI and/or STF, and the chances > > of success are unknown (to me). The activity was reasonably successful > > last year. > > > > Best, > > > > -- Pierre > ___

[FFmpeg-devel] [PATCH] Assorted Exif changes (PR #20297)

2025-08-20 Thread James Almer via ffmpeg-devel
alue.uint[0] = 1; +av_exif_remove_entry(avctx, cloned, orient->id, 0); +ifd = cloned; } } -ret = av_exif_ifd_to_dict(avctx, cloned ? cloned : ifd, &frame->metadata); + ret = av_exif_ifd_to_dict(avctx, ifd, &frame->metadata); if (ret < 0) return ret; if (cloned || !og) { -ret = av_exif_write(avctx, cloned ? cloned : ifd, &written, AV_EXIF_TIFF_HEADER); +ret = av_exif_write(avctx, ifd, &written, AV_EXIF_TIFF_HEADER); if (ret < 0) goto end; } -- 2.49.1 ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [RFC] avformat/img2dec: remove deprecated glob_sequence pattern type

2025-08-20 Thread Marton Balint via ffmpeg-devel
, Marton ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] avformat/demux: avoid unconditional ID3v2 tag consumption

2025-08-20 Thread Kyle Swanson via ffmpeg-devel
Hi, On Wed, Jul 23, 2025 at 10:51 AM Nil Fons Miret via ffmpeg-devel wrote: > Pinging this patch from a couple weeks ago. To be clear, I am not sure > how people typically use ffmpeg's ID3v2 support, so please let me know > if the patch is missing something and I'm happy to

[FFmpeg-devel] [PATCH] avcodec/exif: fix some coverity errors (PR #20296)

2025-08-20 Thread Leo Izen via ffmpeg-devel
ret = av_exif_ifd_to_dict(logctx, cloned ? cloned : ifd, &frame->metadata); if (ret < 0) -return ret; +goto end; if (cloned || !og) { ret = av_exif_write(logctx, cloned ? cloned : ifd, &written, AV_EXIF_TIFF_HEADER); -- 2.49.1 ________

Re: [FFmpeg-devel] CI

2025-08-20 Thread Michael Niedermayer via ffmpeg-devel
Hi On Wed, Aug 20, 2025 at 05:56:27PM +0200, Timo Rothenpieler via ffmpeg-devel wrote: > On 8/20/2025 1:26 AM, Michael Niedermayer via ffmpeg-devel wrote: > > Hi > > > > It seems the forgejo CI takes about > > 13min to do fate on aarch64 and x86-64 and build on w

Re: [FFmpeg-devel] CI

2025-08-20 Thread Timo Rothenpieler via ffmpeg-devel
On 8/20/2025 9:25 PM, Michael Niedermayer via ffmpeg-devel wrote: Hi On Wed, Aug 20, 2025 at 05:56:27PM +0200, Timo Rothenpieler via ffmpeg-devel wrote: On 8/20/2025 1:26 AM, Michael Niedermayer via ffmpeg-devel wrote: Hi It seems the forgejo CI takes about 13min to do fate on aarch64 and

Re: [FFmpeg-devel] STF 2025 grant request (2025-09-01 target)

2025-08-20 Thread Kieran Kunhya via ffmpeg-devel
On Wed, 20 Aug 2025, 11:37 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi Pierre > > On Wed, Aug 20, 2025 at 09:28:26AM -0700, Pierre-Anthony Lemieux via > ffmpeg-devel wrote: > > On Wed, Aug 20, 2025 at 9:24 AM Niklas Haas via ffmpeg-devel &g

Re: [FFmpeg-devel] FFmpeg 8.0 Name

2025-08-20 Thread Ingo Oppermann via ffmpeg-devel
> On 20 Aug 2025, at 00:27, Jacob Lifshay via ffmpeg-devel > wrote: > > > > On August 19, 2025 2:27:12 PM PDT, Michael Niedermayer via ffmpeg-devel > wrote: >> Hi all >> >> what name should we give 8.0 ? > > IDK if it's a very good su

Re: [FFmpeg-devel] FFmpeg 8.0 Name

2025-08-20 Thread Reto Kromer via ffmpeg-devel
Gyan Dochi wrote: >>* Huffman > >+1 +1 Best regards, Reto ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected]

Re: [FFmpeg-devel] [PATCH] Announce FFmpeg 8.0

2025-08-21 Thread Kieran Kunhya via ffmpeg-devel
On Wed, 20 Aug 2025, 19:47 Lynne via ffmpeg-devel, wrote: > --- > src/index | 42 ++ > 1 file changed, 42 insertions(+) > > diff --git a/src/index b/src/index > index 52829e1..a07f4b8 100644 > --- a/src/index > +++ b/src

Re: [FFmpeg-devel] [POLL][RFC] Merge vs Cherry pick for integration of changes

2025-08-22 Thread Niklas Haas via ffmpeg-devel
On Thu, 21 Aug 2025 13:32:02 +0200 Michael Niedermayer via ffmpeg-devel wrote: > Hi > > Should we use a Merge or Cherry picks for integrating Pauls work ? > > Following are 2 plans, as we execute either we may run into issues > and of course adapt them as needed. (or even sw

Re: [FFmpeg-devel] [PATCH] Announce FFmpeg 8.0

2025-08-22 Thread Gyan Doshi via ffmpeg-devel
On 2025-08-21 11:17 am, Lynne via ffmpeg-devel wrote: --- src/index | 42 ++ 1 file changed, 42 insertions(+) This should be pushed now that the release is tagged (with the date corrected) Regards, Gyan diff --git a/src/index b/src/index index

Re: [FFmpeg-devel] CI

2025-08-22 Thread Timo Rothenpieler via ffmpeg-devel
On 22/08/2025 07:00, Kieran Kunhya via ffmpeg-devel wrote: On Thu, 21 Aug 2025, 11:33 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: Hi On Thu, Aug 21, 2025 at 12:31:46AM +0200, Timo Rothenpieler via ffmpeg-devel wrote: On 8/20/2025 9:25 PM, Michael Niedermay

Re: [FFmpeg-devel] [PATCH] Announce FFmpeg 8.0

2025-08-22 Thread Niklas Haas via ffmpeg-devel
On Thu, 21 Aug 2025 14:47:03 +0900 Lynne via ffmpeg-devel wrote: > --- > src/index | 42 ++ > 1 file changed, 42 insertions(+) > > diff --git a/src/index b/src/index > index 52829e1..a07f4b8 100644 > --- a/src/index > +++ b/src

Re: [FFmpeg-devel] [POLL][RFC] Merge vs Cherry pick for integration of changes

2025-08-22 Thread Michael Niedermayer via ffmpeg-devel
Hi Niklas On Fri, Aug 22, 2025 at 02:29:56PM +0200, Niklas Haas via ffmpeg-devel wrote: > On Thu, 21 Aug 2025 13:32:02 +0200 Michael Niedermayer via ffmpeg-devel > wrote: > > Hi > > > > Should we use a Merge or Cherry picks for integrating Pauls work ? > > &g

Re: [FFmpeg-devel] CI

2025-08-21 Thread Kieran Kunhya via ffmpeg-devel
On Thu, 21 Aug 2025, 11:33 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi > > On Thu, Aug 21, 2025 at 12:31:46AM +0200, Timo Rothenpieler via > ffmpeg-devel wrote: > > On 8/20/2025 9:25 PM, Michael Niedermayer via ffmpeg-devel wrote: > >

Re: [FFmpeg-devel] [PATCH] lavfi: protection against premultiplied alpha (was: The patch series about premultiplied alpha)

2025-08-22 Thread Niklas Haas via ffmpeg-devel
On Fri, 22 Aug 2025 15:47:04 +0200 Nicolas George via ffmpeg-devel wrote: > The filters that do not even touch the alpha plane are the most likely > to produce invalid garbage with premultiplied alpha. They should NOT > enable support. Quod non sequitur. Filters which do not touch

Re: [FFmpeg-devel] CI

2025-08-22 Thread Timo Rothenpieler via ffmpeg-devel
On 22/08/2025 16:54, Michael Niedermayer via ffmpeg-devel wrote: Hi Timo On Fri, Aug 22, 2025 at 02:13:14PM +0200, Timo Rothenpieler via ffmpeg-devel wrote: [...] But then again, GitHub/MS gives us 20 parallel runners for free, and we can freely pick if they're running on x86_64 or aa

Re: [FFmpeg-devel] [POLL][RFC] Merge vs Cherry pick for integration of changes

2025-08-22 Thread Michael Niedermayer via ffmpeg-devel
Hi Niklas On Fri, Aug 22, 2025 at 02:29:56PM +0200, Niklas Haas via ffmpeg-devel wrote: > On Thu, 21 Aug 2025 13:32:02 +0200 Michael Niedermayer via ffmpeg-devel > wrote: > > Hi > > > > Should we use a Merge or Cherry picks for integrating Pauls work ? > > &g

Re: [FFmpeg-devel] [PATCH] lavfi: protection against premultiplied alpha (was: The patch series about premultiplied alpha)

2025-08-22 Thread Nicolas George via ffmpeg-devel
Hi. Niklas Haas via ffmpeg-devel (HE12025-08-20): > I accidentally deleted a line too many here, the text was supposed to read: > > Do you expect filter authors to remember to enable support for > premultiplied alpha, even if they don't even touch the alpha plane? Hi. It is a

Re: [FFmpeg-devel] CI

2025-08-22 Thread Michael Niedermayer via ffmpeg-devel
On Fri, Aug 22, 2025 at 02:13:14PM +0200, Timo Rothenpieler via ffmpeg-devel wrote: > On 22/08/2025 07:00, Kieran Kunhya via ffmpeg-devel wrote: > > On Thu, 21 Aug 2025, 11:33 Michael Niedermayer via ffmpeg-devel, < > > [email protected]> wrote: > > > >

Re: [FFmpeg-devel] CI

2025-08-22 Thread Michael Niedermayer via ffmpeg-devel
Hi Timo On Fri, Aug 22, 2025 at 02:13:14PM +0200, Timo Rothenpieler via ffmpeg-devel wrote: [...] > But then again, GitHub/MS gives us 20 parallel runners for free, and we can > freely pick if they're running on x86_64 or aarch64, Linux, Windows or even > OSX. > As long as they

[FFmpeg-devel] [PATCH] movenc: ensure chapters track extradata is not null and populated (PR #20315)

2025-08-22 Thread Damiano Galassi via ffmpeg-devel
xtradata_size = av_calloc(1, sizeof(*track->extradata_size)); +} + track->extradata[0] = av_memdup(stub_header, sizeof(stub_header)); if (!track->extradata[0]) return AVERROR(ENOMEM); -- 2.49.1 ___________ ffmpeg-devel mailing lis

[FFmpeg-devel] [PATCH] av_format/whip: fix potential overflow (PR #20357)

2025-08-27 Thread Jack Lau via ffmpeg-devel
e, vcodec_name, whip->video_payload_type, - profile, + profile_idc, profile_iop, level, whip->video_ssrc, -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH 2/3] libavcodec: add NETINT Quadra HW decoders & encoders

2025-08-27 Thread Desmond Liu via ffmpeg-devel
s, Desmond Liu _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH 2/3] libavcodec: add NETINT Quadra HW decoders & encoders

2025-08-27 Thread Desmond Liu via ffmpeg-devel
ny centralized document in the ffmpeg repo on where to find external libraries. The README.md file in the ffmpeg repo doesn't seem appropriate. If you could point to a place, I'd be happy to make the change. Regards, Desmond Liu _______ ffmpe

[FFmpeg-devel] [PATCH] Bink 2 Audio decoder and demuxer (PR #20359)

2025-08-28 Thread Peter Ross via ffmpeg-devel
, pkt->data + 4, size); + +pkt->pos = pos; +pkt->stream_index = 0; +pkt->duration = duration; + +return 0; +} + +const FFInputFormat ff_ueba_demuxer = { +.p.name = "ueba", + .p.long_name= NULL_IF_CONFIG_SMALL("Unreal Engine Bink Audio"), +.p.flags= AVFMT_GENERIC_INDEX, +.read_probe = ueba_probe, +.read_header= ueba_read_header, +.read_packet= ueba_read_packet, +}; -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avutil/opt: also print option names on parse error (PR #20348)

2025-08-26 Thread Marton Balint via ffmpeg-devel
x27;num=101' Setting options string 'unum=bogus' Setting entry with key 'unum' to value 'bogus' Undefined constant or missing '(' in 'bogus' -Unable to parse option value "bogus" +Unable to parse "unum" option value "bogus" Error 'unum=bogus' Setting options string 'unum=44' Setting entry with key 'unum' to value '44' @@ -396,7 +396,7 @@ Error 'unum=2147483649' Setting options string 'num64=bogus' Setting entry with key 'num64' to value 'bogus' Undefined constant or missing '(' in 'bogus' -Unable to parse option value "bogus" +Unable to parse "num64" option value "bogus" Error 'num64=bogus' Setting options string 'num64=44' Setting entry with key 'num64' to value '44' @@ -421,7 +421,7 @@ Error 'num64=4294967297' Setting options string 'flt=bogus' Setting entry with key 'flt' to value 'bogus' Undefined constant or missing '(' in 'bogus' -Unable to parse option value "bogus" +Unable to parse "flt" option value "bogus" Error 'flt=bogus' Setting options string 'flt=2' Setting entry with key 'flt' to value '2' @@ -440,7 +440,7 @@ Error 'flt=101' Setting options string 'dbl=bogus' Setting entry with key 'dbl' to value 'bogus' Undefined constant or missing '(' in 'bogus' -Unable to parse option value "bogus" +Unable to parse "dbl" option value "bogus" Error 'dbl=bogus' Setting options string 'dbl=2' Setting entry with key 'dbl' to value '2' @@ -496,7 +496,7 @@ Error '5:size=pal:hello' Setting options string ':' Setting 'num' to value '' Undefined constant or missing '(' in '' -Unable to parse option value "" +Unable to parse "num" option value "" Error ':' Setting options string '=' Setting '' to value '' -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] RFC: Add demuxer command API (PR #20349)

2025-08-26 Thread Marvin Scholz via ffmpeg-devel
ek = rtsp_read_seek, .read_play = rtsp_read_play, .read_pause = rtsp_read_pause, +.handle_command = rtsp_handle_command, + .read_command_reply = rtsp_read_command_reply, }; -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH 2/3] libavcodec: add NETINT Quadra HW decoders & encoders

2025-08-26 Thread Pavel Koshevoy via ffmpeg-devel
bably should be mentioned in the ffmpeg fork README.md _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/libjxldec: consume input on error (PR #20355)

2025-08-27 Thread Leo Izen via ffmpeg-devel
ED_MORE_INPUT: av_log(avctx, AV_LOG_DEBUG, "NEED_MORE_INPUT event emitted\n"); -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH 2/3] libavcodec: add NETINT Quadra HW decoders & encoders

2025-08-27 Thread Pavel Koshevoy via ffmpeg-devel
ter > - libavcodec/nicodec.h includes ni_device_api.h, so > https://github.com/NETINT-Technologies/netint_libxcoder is a prerequisite > ... that probably should be mentioned in the ffmpeg fork README.md > > > also, netint_libxcoder README docs url returns a 404 Not Found: https://docs.neti

[FFmpeg-devel] Re: Community booth address Was: STF 2025 grant request (2025-09-01 target)

2025-08-27 Thread Michael Niedermayer via ffmpeg-devel
Hi Remi On Sun, Aug 24, 2025 at 04:46:09PM +0300, Rémi Denis-Courmont via ffmpeg-devel wrote: > Le sunnuntai 24. elokuuta 2025, 13.47.49 Itä-Euroopan kesäaika Michael > Niedermayer via ffmpeg-devel a écrit : [...] > > And you simply posted thilos street address in public. >

[FFmpeg-devel] Re: STF 2025 grant request (2025-09-01 target)

2025-08-27 Thread Derek Buitenhuis via ffmpeg-devel
On 8/27/2025 12:54 PM, Michael Niedermayer via ffmpeg-devel wrote: > Here: > https://lists.ffmpeg.org/pipermail/ffmpeg-devel/2024-November/336263.html > > You wrote this: > "I also do not believe STF and SPI are being used appropriately, and > I believe Thilo is recie

[FFmpeg-devel] Re: Community booth address Was: STF 2025 grant request (2025-09-01 target)

2025-08-27 Thread Kieran Kunhya via ffmpeg-devel
On Wed, Aug 27, 2025 at 6:03 PM Michael Niedermayer via ffmpeg-devel wrote: > > Hi Remi > > On Sun, Aug 24, 2025 at 04:46:09PM +0300, Rémi Denis-Courmont via > ffmpeg-devel wrote: > > Le sunnuntai 24. elokuuta 2025, 13.47.49 Itä-Euroopan kesäaika Michael > > Niedermay

[FFmpeg-devel] [PATCH] swscale/graph: fix double-free when legacy pass fails initializing (PR #20351)

2025-08-27 Thread Niklas Haas via ffmpeg-devel
ration); } -ret = init_legacy_subpass(graph, sws, input, output); -if (ret < 0) { -sws_free_context(&sws); -return ret; -} - -return 0; + return init_legacy_subpass(graph, sws, input, output); } /****** -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: STF 2025 grant request (2025-09-01 target)

2025-08-27 Thread Michael Niedermayer via ffmpeg-devel
Hi Derek On Sun, Aug 24, 2025 at 03:33:32PM +0100, Derek Buitenhuis via ffmpeg-devel wrote: > On 8/24/2025 2:46 PM, Rémi Denis-Courmont via ffmpeg-devel wrote: > > Le sunnuntai 24. elokuuta 2025, 13.47.49 Itä-Euroopan kesäaika Michael > > Niedermayer via ffmpeg-devel a écrit :

[FFmpeg-devel] Re: [PATCH v3 2/2] avcodec/libaom: Add test for HDR10+ metadata support

2025-08-27 Thread Maryla Ustarroz via ffmpeg-devel
e_anchors=410/1023 > > +bezier_curve_anchors=512/1023 > > +bezier_curve_anchors=614/1023 > > +bezier_curve_anchors=717/1023 > > +bezier_curve_anchors=819/1023 > > +bezier_curve_anchors=922/1023 > > +[/SIDE_DATA] > > +[/FRAME] > > \ No newline at end of file > > -- > > 2.50.1.703.g449372360f-goog > > Note that this is a simplified version of v2 now that ffprobe supports > the -codec:v flag. > This allows testing reading and writing of HDR10+ metadata in a single test, > and > removes the need for a new test file. Friendly ping. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] libjxldec/libjxlenc: fix leaks (PR #20352)

2025-08-27 Thread Leo Izen via ffmpeg-devel
; 0) av_log(avctx, AV_LOG_WARNING, "unable to process EXIF frame data\n"); +av_exif_free(&ifd); } else { sd = av_frame_get_side_data(frame, AV_FRAME_DATA_DISPLAYMATRIX); if (sd) -- 2.49.1 ___ ffmpeg

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

2025-08-29 Thread Zsolt Vadász via ffmpeg-devel
variable in array access libavfilter/vf_minterpolate.c | 21 - 1 file changed, 12 insertions(+), 9 deletions(-) -- 2.51.0 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to ffmpeg-devel-le

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

2025-08-29 Thread Zsolt Vadász via ffmpeg-devel
51.0 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[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
} - -val += pixel_weights->weights[i] * frame->avf->data[plane][x_mv + y_mv * frame->avf->linesize[plane]]; } val = ROUNDED_DIV(val, weight_sum); -- 2.51.0 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

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

2025-08-29 Thread Dmitrii Ovchinnikov via ffmpeg-devel
2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[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", >> +

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

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
struct sockaddr_in6 *)addr)->sin6_addr), sizeof(struct in6_addr)); -//TODO: Interface index should be looked up from local_addr mreq6.ipv6mr_interface = 0; if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_DROP_MEMBERSHIP, &mreq6, sizeof(mreq6)) < 0) { ff_log_net_error(logctx, AV_LOG

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

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
@@ if ! disabled network; then else disable network fi +test_ioctl SIOCGIFINDEX && enable ioctl_gifindex fi check_builtin MemoryBarrier windows.h "MemoryBarrier()" -- 2.34.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[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
ckaddr *)&s->local_addr_storage, + s->multicast_max_join, h)) < 0) goto fail; } if (s->filters.nb_exclude_addrs) { @@ -1266,7 +1305,8 @@ static int udp_close(URLContext *h) if (s->is_multicast && (h->flags & AVIO_FLAG_READ)) udp_leave_multicast_group(s->udp_fd, (struct sockaddr *)&s->dest_addr, - (struct sockaddr *)&s->local_addr_storage, h); + (struct sockaddr *)&s->local_addr_storage, + s->multicast_max_join, h); #if HAVE_PTHREAD_CANCEL if (s->thread_started) { int ret; -- 2.34.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

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

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
s->multicast_interface, h)) < 0) goto fail; } if (s->filters.nb_exclude_addrs) { @@ -1306,7 +1326,7 @@ static int udp_close(URLContext *h) if (s->is_multicast && (h->flags & AVIO_FLAG_READ)) udp_leave_multicast_group(s->udp_fd, (struct sockaddr *)&s->dest_addr, (struct sockaddr *)&s->local_addr_storage, - s->multicast_max_join, h); + s->multicast_max_join, s->multicast_interface, h); #if HAVE_PTHREAD_CANCEL if (s->thread_started) { int ret; -- 2.34.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

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

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
+interface is directly selected for receiving. + @end enumerate @section rtsp -- 2.34.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

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

2025-08-29 Thread Peter Enderborg via ffmpeg-devel
(-) -- 2.34.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] avcodec/aarch64/vvc: optimised alf_classify function 8/10/12bit of vvc codec for aarch64

2025-08-30 Thread George Zaguri via ffmpeg-devel
R_DIGA1]); >> > +d0 = FFMIN(sum[ALF_DIR_DIGA0], sum[ALF_DIR_DIGA1]); >> > + >> > +//promote to avoid overflow >> > +dir1 = (uint64_t)d1 * hv0 <= (uint64_t)hv1 * d0; >> > +hvd1 = dir1 ? hv1 : d1; >> > +hvd0 = dir1 ? hv0 :

[FFmpeg-devel] Re: [PATCH] avcodec/aarch64/vvc: optimised alf_classify function 8/10/12bit of vvc codec for aarch64

2025-08-30 Thread Martin Storsjö via ffmpeg-devel
only interact with the review through the Forgejo tool. // Martin ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH v4 0/3] avcodec/aac_ac3_parser: fix HE-AAC probing

2025-08-30 Thread Michael Niedermayer via ffmpeg-devel
nt: 9FF2128B147EF6730BADF133611EC787040B0FAB z(9) = an object that transcends all computable functions describable in finite terms. - ChatGPT in 2024 signature.asc Description: PGP signature ___________ ffmpeg-devel mailing list -- [email protected]

[FFmpeg-devel] [PATCH] avformat/wavdec: support loop_start and loop_end from 'smpl' chunk

2025-08-30 Thread Spencer Alves via ffmpeg-devel
st->codecpar->sample_rate), +AV_DICT_MULTIKEY) < 0) +return AVERROR(ENOMEM); +} +} + break; } /* seek to next tag unless we know that we'll run into EOF */ -- 2.48.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

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

2025-08-29 Thread Leo Izen via ffmpeg-devel
mat/electronicarts.* @pross +libavformat/.*exif.* @Traneptora libavformat/filmstrip.* @pross libavformat/frm.* @pross libavformat/iamf.* @jamrial -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to ffmpeg-devel

[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. I

[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

[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 < [email protected]> 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 th

[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":

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

2025-08-29 Thread Michael Niedermayer via ffmpeg-devel
;: "v1.0.0", + +"entity": { +"type": "group", +"role": "owner", +"name": "FFmpeg", +"email": "[email protected]", +"description": "FFmpeg is the lea

[FFmpeg-devel] Re: [RFC] Issue tracker

2025-09-15 Thread Timo Rothenpieler via ffmpeg-devel
On 9/15/2025 2:57 PM, Michael Niedermayer via ffmpeg-devel wrote: Hi On Mon, Sep 15, 2025 at 02:06:07PM +0200, Timo Rothenpieler via ffmpeg-devel wrote: On 15/09/2025 13:09, Michael Niedermayer via ffmpeg-devel wrote: [...] Ideas, Comments ? I do think trac is a dead end software, and we

[FFmpeg-devel] [PATCH] avformat/flvenc: fix event_flags check (PR #20527)

2025-09-15 Thread Zhao Zhili via ffmpeg-devel
write_metadata(s, ts); -s->event_flags &= ~AVSTREAM_EVENT_FLAG_METADATA_UPDATED; +s->event_flags &= ~AVFMT_EVENT_FLAG_METADATA_UPDATED; } avio_write_marker(pb, av_rescale(ts, AV_TIME_BASE, 1000), -- 2.49.1 _______ f

[FFmpeg-devel] [PATCH] Add AVX2 and AVX512 versions of vf_idet (PR #20528)

2025-09-15 Thread Niklas Haas via ffmpeg-devel
lags)) { idet->filter_line = for_16b ? (ff_idet_filter_func)idet_filter_line_16bit_sse2 : idet_filter_line_sse2; } +if (EXTERNAL_AVX2(cpu_flags)) { +idet->filter_line = for_16b ? (ff_idet_filter_func)idet_filter_line_16bit_avx2 : idet_filter_line_avx2; +} + if (EXTERNA

[FFmpeg-devel] Re: [RFC] Issue tracker

2025-09-15 Thread Michael Niedermayer via ffmpeg-devel
Hi Gyan On Tue, Sep 16, 2025 at 12:39:37AM +0530, Gyan Doshi via ffmpeg-devel wrote: > It's best to have a single issue tracker. +1 > It's best for the issue tracker to be integrated with the code workflow. +1 > > What can happen is that if an existing open trac

[FFmpeg-devel] Re: [PATCH] avformat/mxfenc: fix SMPTE 436M UL for ANC

2025-09-15 Thread Helmuth Schmitz via ffmpeg-devel
Hi Nicolas, Thanks for the clarification about Omneon. I agree that it makes sense to simply fix the UL as in this patch. Best regards, Helmuth Em seg., 15 de set. de 2025 às 11:40, Nicolas Gaullier via ffmpeg-devel < [email protected]> escreveu: > On 9/15/25 15:26, Helmuth Sc

[FFmpeg-devel] Re: [RFC] Issue tracker

2025-09-15 Thread Gyan Doshi via ffmpeg-devel
On 2025-09-16 12:05 am, Timo Rothenpieler via ffmpeg-devel wrote: On 9/15/2025 8:26 PM, Michael Niedermayer via ffmpeg-devel wrote: Hi Timo On Mon, Sep 15, 2025 at 07:19:17PM +0200, Timo Rothenpieler via ffmpeg-devel wrote: On 9/15/2025 2:57 PM, Michael Niedermayer via ffmpeg-devel wrote

[FFmpeg-devel] Re: [PATCH 1/7] matroskaenc: remove unused MaxBlockAdditionID

2025-09-20 Thread James Almer via ffmpeg-devel
On 9/9/2025 9:38 AM, Jerome Martinez via ffmpeg-devel wrote: diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 8142d9125e..5339b6fd33 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -1706,16 +1706,16 @@ static void mkv_write_blockadditionmapping

[FFmpeg-devel] ffmpeg 7.1.2

2025-09-20 Thread Michael Niedermayer via ffmpeg-devel
slave owners. -- Vladimir Lenin signature.asc Description: PGP signature ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] WIP: Add custom tagging for alpha mode to the MXF format (PR #20504)

2025-09-20 Thread Niklas Haas via ffmpeg-devel
(pb, st->codecpar->alpha_mode); +} + mxf_write_local_tag(s, 16, 0x3201); avio_write(pb, *sc->codec_ul, 16); -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL] [VOTE] code.ffmpeg.org vs. ML

2025-09-17 Thread Marton Balint via ffmpeg-devel
On Wed, 17 Sep 2025, Timo Rothenpieler via ffmpeg-devel wrote: On 9/16/2025 11:12 PM, Balint Marton via ffmpeg-devel wrote: - I am not sure what would be the counterpart of doing a last-chance ping   before applying a series in the foregejo system, it was a useful thing   in the ML

[FFmpeg-devel] Re: [POLL] [VOTE] code.ffmpeg.org vs. ML

2025-09-17 Thread Nicolas George via ffmpeg-devel
Michael Niedermayer via ffmpeg-devel (HE12025-09-16): > F. keep Forgejo as primary forge for patch/git workflow > M. switch back to the ML for patch/git workflow M of course. We can try again in a year or two when the proponents have had time to learn from the mistakes of this attempt. R

[FFmpeg-devel] [PATCH] Small RTSP fixes (PR #20541)

2025-09-17 Thread Marvin Scholz via ffmpeg-devel
av_strlcpy(reply->reason, p, sizeof(reply->reason)); } else { av_strlcpy(reply->reason, buf1, sizeof(reply->reason)); // method -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL] [VOTE] code.ffmpeg.org vs. ML

2025-09-16 Thread Timo Rothenpieler via ffmpeg-devel
x smime.p7s Description: S/MIME Cryptographic Signature _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL] [VOTE] code.ffmpeg.org vs. ML

2025-09-16 Thread Martin Storsjö via ffmpeg-devel
Any vote on anything that can be even potentially contentious should be made with closed voting, not requiring everybody to publicly state their preference. // Martin _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [RFC] Sponsors & Funding

2025-09-17 Thread Michael Niedermayer via ffmpeg-devel
questions about the command line tools should be sent to the ffmpeg-user ML. And questions about how to use libav* should be sent to the libav-user ML. signature.asc Description: PGP signature _______ ffmpeg-devel mailing list -- [email protected] To u

[FFmpeg-devel] [PATCH] Fix resource leaks in vsrc_gfxcapture (PR #20543)

2025-09-17 Thread Timo Rothenpieler via ffmpeg-devel
data = ctx->wgc_thread_cb_data ? + std::static_pointer_cast(ctx->wgc_thread_cb_data) : + std::make_shared(); + +cbdata->done = cbdata->cancel = false; +cbdata->ret = AVERROR_BUG; boolean res = 0; CHECK_HR_RET(wgctx->dispatcher_queue->TryEnqueue( -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [REFUND-REQUEST] code.ffmpeg.org hosting cost

2025-09-17 Thread Timo Rothenpieler via ffmpeg-devel
x27;d be good if this was billed directly to FFmpeg via SPI somehow. Timo smime.p7s Description: S/MIME Cryptographic Signature _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL] [VOTE] code.ffmpeg.org vs. ML

2025-09-17 Thread Timo Rothenpieler via ffmpeg-devel
On 9/17/2025 8:32 PM, Marton Balint via ffmpeg-devel wrote: On Wed, 17 Sep 2025, Timo Rothenpieler via ffmpeg-devel wrote: On 9/16/2025 11:12 PM, Balint Marton via ffmpeg-devel wrote:  - I am not sure what would be the counterpart of doing a last-chance ping     before applying a series

[FFmpeg-devel] [PATCH] avcodec/decode: sync initial_pict_type and intra_only_flag with thread worker's avctx (PR #20535)

2025-09-16 Thread James Almer via ffmpeg-devel
tra_only_flag = AV_FRAME_FLAG_KEY; -if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) -p->initial_pict_type = AV_PICTURE_TYPE_I; -} - atomic_init(&p->state, STATE_INPUT_READY); copy = av_memdup(avctx, sizeof(*avctx)); -- 2.49.1 _____

[FFmpeg-devel] Re: [PATCH] ID3v2 fixes for FLAC, add V-Log transfer function (PR #20533)

2025-09-16 Thread Kieran Kunhya via ffmpeg-devel
On Tue, 16 Sept 2025, 16:17 Lynne via ffmpeg-devel, wrote: > PR #20533 opened by Lynne > URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20533 > Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20533.patch IMO unrelated and independent changes should be different PRs

[FFmpeg-devel] [PATCH] configure: pick more sensible cxx_default if user provided custom cc (PR #20536)

2025-09-16 Thread Timo Rothenpieler via ffmpeg-devel
uot;$cc" | sed 's/\(.*\)gcc/\1g++/')" +;; +*clang*) +cxx_default="$(echo "$cc" | sed 's/\(.*\)clang/\1clang++/')" +;; +*cl.exe|*cl|*icl) +cxx_default="$cc" + ;; +esac + sysinclude_default="${sysroot}

[FFmpeg-devel] Re: [POLL] [VOTE] code.ffmpeg.org vs. ML

2025-09-16 Thread Balint Marton via ffmpeg-devel
On Tue, 16 Sep 2025, Michael Niedermayer via ffmpeg-devel wrote: Hi all 2 months ago we voted on testing Forgejo vs Gitlab, we picked and tested Forgejo. And as said in that vote, (and surprisingly, i have not forgotten it) heres the "after testing" discussion and vote do we wa

[FFmpeg-devel] Re: [POLL] [VOTE] code.ffmpeg.org vs. ML

2025-09-16 Thread Marvin Scholz via ffmpeg-devel
/ "Forgejo" vs "M." / "ML" > End time is in 7 days unless teh community wants to extend that. > (Also if results are inconclusive like because a 3rd option emerges > then ill restart this with condorcet on vote.ffmpeg.org) F (Keep Forgejo) __

[FFmpeg-devel] Re: [POLL] [VOTE] code.ffmpeg.org vs. ML

2025-09-16 Thread Alexander Strasser via ffmpeg-devel
On 2025-09-16 10:49 +0200, Michael Niedermayer via ffmpeg-devel wrote: > [...] > > * If we keep forgejo we will likely transition our issue tracker tickets > into forgejo too, discussing with timo yesterday night indicates that > this likely can be done cleaner and neate

[FFmpeg-devel] [PATCH] aarch64: Add a reindentation script, check it in forgejo workflows (PR #20485)

2025-09-17 Thread Martin Storsjö via ffmpeg-devel
e changed, 2 insertions(+) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index 42e925ad8b..afbdba89a2 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -24,3 +24,5 @@ jobs: key: pre-commit-${{ steps.install.outputs.envhash }} - name: R

[FFmpeg-devel] [PATCH] avcodec/aom_film_grain: fix AVCOL_*_NB range check (PR #20577)

2025-09-22 Thread Niklas Haas via ffmpeg-devel
SERVED || fgp->color_trc == AVCOL_TRC_RESERVED0 || -fgp->color_space > AVCOL_SPC_NB || +fgp->color_space >= AVCOL_SPC_NB || fgp->color_space == AVCOL_SPC_RESERVED) goto error; } -- 2.49.

[FFmpeg-devel] [PATCH] libavutil/arm: Make use of elf_aux_info() on FreeBSD/OpenBSD

2025-09-22 Thread Brad Smith via ffmpeg-devel
return flags; #define check_cap(cap, flag) do { \ -- 2.51.0 ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: trac ticket statistics Was: Re: Re: [RFC] Issue tracker

2025-09-25 Thread Gyan Doshi via ffmpeg-devel
On 2025-09-24 03:20 am, Michael Niedermayer via ffmpeg-devel wrote: Hi Gyan On Tue, Sep 16, 2025 at 10:09:14AM +0530, Gyan Doshi via ffmpeg-devel wrote: On 2025-09-16 03:16 am, Michael Niedermayer via ffmpeg-devel wrote: [...] And what do we gain by avoiding "wholesale migr

[FFmpeg-devel] [PATCH] Add (and use) av_rescale_ts() and av_rescale_ts_rnd() (PR #20613)

2025-09-26 Thread Niklas Haas via ffmpeg-devel
PR #20613 opened by Niklas Haas (haasn) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20613 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20613.patch Supersedes: FFmpeg/FFmpeg#20603 Fixes: FFmpeg/FFmpeg#20589 >From e7cdaf8a842c8c8e9c439e53da70fa61f91f4ce9 Mon Sep 17 00:00:00 2001 Fro

[FFmpeg-devel] [PATCH] libavfilter: cuda and alpha mode (PR #20615)

2025-09-26 Thread Zhao Zhili via ffmpeg-devel
c/libavfilter/avfilter.c:1085 --- libavfilter/vf_chromakey.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavfilter/vf_chromakey.c b/libavfilter/vf_chromakey.c index f6f6314615..e5a7ac15b5 100644 --- a/libavfilter/vf_chromakey.c +++ b/libavfilter/vf_chromakey.c @@ -262,6 +262,8 @@ static int filter_frame(AVFilterLink *link, AVFrame *frame) FFMIN(frame->height, ff_filter_get_nb_threads(avctx return res; +if (!strcmp(avctx->filter->name, "chromakey")) +frame->alpha_mode = avctx->outputs[0]->alpha_mode; return ff_filter_frame(avctx->outputs[0], frame); } @@ -291,6 +293,7 @@ static av_cold int config_output(AVFilterLink *outlink) } if (!strcmp(avctx->filter->name, "chromakey")) { +outlink->alpha_mode = AVALPHA_MODE_STRAIGHT; ctx->do_slice = ctx->depth <= 8 ? do_chromakey_slice : do_chromakey16_slice; } else { ctx->do_slice = ctx->depth <= 8 ? do_chromahold_slice: do_chromahold16_slice; -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] libavformat/mov && movenc: fix sidx earliest_presentation_time (PR #20623)

2025-09-28 Thread Zhao Zhili via ffmpeg-devel
time 517, type sync atom sidx write_data len 148, time nopts, type trailer atom - -5c873f6e37d5af09e3c6329cf94cd6ca 4939 vfr-noduration +d37a7eda807912b9ed05ccfe003a9e4f 4939 vfr-noduration write_data len 1231, time nopts, type header atom ftyp write_data len 1500, time -33, type sync atom moo

[FFmpeg-devel] Re: [RFC] Issue tracker

2025-09-28 Thread Michael Niedermayer via ffmpeg-devel
Hi Remi On Sun, Sep 28, 2025 at 10:54:14AM +0300, Rémi Denis-Courmont via ffmpeg-devel wrote: > Le maanantaina 15. syyskuuta 2025, 0.23.17 Itä-Euroopan kesäaika Michael > Niedermayer via ffmpeg-devel a écrit : [...] > > we can have custom ticket states and custom > > w

[FFmpeg-devel] Re: trac ticket statistics Was: Re: Re: [RFC] Issue tracker

2025-09-27 Thread Gyan Doshi via ffmpeg-devel
On 2025-09-28 06:14 am, Michael Niedermayer via ffmpeg-devel wrote: What you can see here, is there are only 690 open tickets, that is not thousands The oldest 'new' ticket is from 2013, so that label is misleading. They are "new" in the sense that they have not been

[FFmpeg-devel] Re: [RFC] Issue tracker

2025-09-28 Thread Michael Niedermayer via ffmpeg-devel
Hi Remi On Sun, Sep 28, 2025 at 10:54:14AM +0300, Rémi Denis-Courmont via ffmpeg-devel wrote: > Le maanantaina 15. syyskuuta 2025, 0.23.17 Itä-Euroopan kesäaika Michael > Niedermayer via ffmpeg-devel a écrit : [...] > With that said, you can assign thumbs-up, thumbs-down and other

<    24   25   26   27   28   29   30   31   32   33   >