Re: [FFmpeg-devel] STF RaptorQ

2025-05-22 Thread Kieran Kunhya via ffmpeg-devel
On Fri, 23 May 2025, 04:44 Lynne, wrote: > On 23/05/2025 08:42, Kieran Kunhya via ffmpeg-devel wrote: > > Hello, > > > > I wanted to put on the record that adding RaptorQ to FFmpeg isn't > > maintenance of FFmpeg. > > It isn't -- it's research. > > It's adding an obscure FEC protocol to FFmpeg, w

Re: [FFmpeg-devel] [FFmpeg-cvslog] tests/fate/ac3: add a second ac3_fixed encoder test

2025-05-22 Thread Martin Storsjö
On Thu, 22 May 2025, James Almer wrote: ffmpeg | branch: master | James Almer | Thu May 22 19:23:35 2025 -0300| [622a72b5ea5f2022b173355d65d513df2d75000b] | committer: James Almer tests/fate/ac3: add a second ac3_fixed encoder test Exercising the lavfi filtergraph codepath to choose the best

[FFmpeg-devel] [PATCH] avformat/movenc: Reduce loop iterations in mov_flush_fragment

2025-05-22 Thread Zhao Zhili
From: Zhao Zhili --- libavformat/movenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 844a371808..5a9e34993f 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -6504,7 +6504,7 @@ static int mov_flush_fragment(

Re: [FFmpeg-devel] STF RaptorQ

2025-05-22 Thread Lynne
On 23/05/2025 08:55, Devin Heitmueller wrote: On Thu, May 22, 2025 at 7:42 PM Kieran Kunhya via ffmpeg-devel wrote: I wanted to put on the record that adding RaptorQ to FFmpeg isn't maintenance of FFmpeg. It's adding an obscure FEC protocol to FFmpeg, which is not going to be implemented well

[FFmpeg-devel] [RFC] Error handing with CBS

2025-05-22 Thread Zhao Zhili
I have created a ticket on trac and uploaded a sample. https://trac.ffmpeg.org/ticket/11603 The issue is CBS can detect invalid data in the bitstream, and report error. How to handle these error is a problem. With a single error in SEI, it can break the decoding/transcoding process. ffmpeg -bsf

Re: [FFmpeg-devel] STF RaptorQ

2025-05-22 Thread Lynne
On 23/05/2025 08:42, Kieran Kunhya via ffmpeg-devel wrote: Hello, I wanted to put on the record that adding RaptorQ to FFmpeg isn't maintenance of FFmpeg. It isn't -- it's research. It's adding an obscure FEC protocol to FFmpeg, which is not going to be implemented well without an event loop

[FFmpeg-devel] [PATCH 3/3] avcodec/av1_parser: use an AVBufferRef to avoid data copying

2025-05-22 Thread James Almer
Signed-off-by: James Almer --- libavcodec/av1_parser.c | 13 + 1 file changed, 13 insertions(+) diff --git a/libavcodec/av1_parser.c b/libavcodec/av1_parser.c index 77906d0c91..b9a96ad59a 100644 --- a/libavcodec/av1_parser.c +++ b/libavcodec/av1_parser.c @@ -50,6 +50,11 @@ static con

[FFmpeg-devel] [PATCH 2/3] avcodec/cbs_av1: don't store a reference to the unit data if it's not needed

2025-05-22 Thread James Almer
If a module using CBS-AV1 doesn't bother to decompose redundant frame header OBUs, then there's no need to keep a reference to the previous frame header around. Signed-off-by: James Almer --- libavcodec/cbs_av1.c | 23 +++ libavcodec/cbs_av1.h

[FFmpeg-devel] [PATCH 1/3] avcodec/cbs: add a new init function

2025-05-22 Thread James Almer
And rename the existing one to ff_cbs_alloc(). This will allow for more versatility when setting options in a module, allowing them to be taken into account when calling module specific init functions. Signed-off-by: James Almer --- libavcodec/apv_decode.c | 6 +- libavcodec/apv_pa

[FFmpeg-devel] Funding Proposals

2025-05-22 Thread Leo Izen
I'm actually quite out of the loop on how to request funding. I've been meaning to do it since I'm putting a lot of hours into my EXIF work, and still got a bunch more. A lot of code is written but much of it is not tested, and that's important. Can someone explain the process, in a nutshell, alon

Re: [FFmpeg-devel] [FEATURE PROPOSAL] Extracting codec-level data to binary files

2025-05-22 Thread Michael Niedermayer
On Fri, May 23, 2025 at 02:45:59AM +0200, Michael Niedermayer wrote: > Hi Ronald > > On Thu, May 22, 2025 at 07:59:06AM -0400, Ronald S. Bultje wrote: > > Hi, > > > > On Wed, May 21, 2025 at 9:34 AM Timothée < > > timothee.informati...@regaud-chapuy.fr> wrote: > > > > > Hello, > > > > > > I am i

Re: [FFmpeg-devel] [FEATURE PROPOSAL] Extracting codec-level data to binary files

2025-05-22 Thread Michael Niedermayer
Hi Ronald On Thu, May 22, 2025 at 07:59:06AM -0400, Ronald S. Bultje wrote: > Hi, > > On Wed, May 21, 2025 at 9:34 AM Timothée < > timothee.informati...@regaud-chapuy.fr> wrote: > > > Hello, > > > > I am interested in expanding ffmpeg's capabilities to extract > > low-level data from video codec

[FFmpeg-devel] [PATCH] avformat/sdp: add framerate entry

2025-05-22 Thread Marvin Scholz
--- libavformat/sdp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/sdp.c b/libavformat/sdp.c index 215e38f8fc..21ada5d1ce 100644 --- a/libavformat/sdp.c +++ b/libavformat/sdp.c @@ -867,6 +867,9 @@ int ff_sdp_write_media(char *buff, int size, const AVStream *st, int idx,

[FFmpeg-devel] [PATCH 1/2] avformat/rtsp: parse framerate in sdp

2025-05-22 Thread Marvin Scholz
From: Erik Linge Co-authored-by: Marvin Scholz --- libavformat/rtsp.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 5ea471b40c..6807e1d6b5 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -618,6 +618,13 @@ static void sdp_par

[FFmpeg-devel] [PATCH 2/2] avformat/rtpdec_jpeg: Set width and heigh codec parameters

2025-05-22 Thread Marvin Scholz
From: Erik Linge --- libavformat/rtpdec_jpeg.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/rtpdec_jpeg.c b/libavformat/rtpdec_jpeg.c index 81036247c1..4d9ee0d754 100644 --- a/libavformat/rtpdec_jpeg.c +++ b/libavformat/rtpdec_jpeg.c @@ -233,6 +233,8 @@ static int jpeg_parse

Re: [FFmpeg-devel] STF RaptorQ

2025-05-22 Thread Devin Heitmueller
On Thu, May 22, 2025 at 7:42 PM Kieran Kunhya via ffmpeg-devel wrote: > I wanted to put on the record that adding RaptorQ to FFmpeg isn't > maintenance of FFmpeg. > > It's adding an obscure FEC protocol to FFmpeg, which is not going to be > implemented well without an event loop anyway. > > I do n

[FFmpeg-devel] STF RaptorQ

2025-05-22 Thread Kieran Kunhya via ffmpeg-devel
Hello, I wanted to put on the record that adding RaptorQ to FFmpeg isn't maintenance of FFmpeg. It's adding an obscure FEC protocol to FFmpeg, which is not going to be implemented well without an event loop anyway. I do not think it's a suitable STF project. Regards, Kieran Kunhya _

[FFmpeg-devel] [RFC] "Additional Emails for New Defect Notifications" from coverity

2025-05-22 Thread Michael Niedermayer
Hi all Coverity screwed up the mails they send out about new defects. It seems they now have a "Additional Emails for New Defect Notifications" if someone wants to be added to that list, reply here and say so or should we do something more fancy like just adding ffmpeg-devel ? (would need timo t

[FFmpeg-devel] [PATCH 1/3] avcodec/asvenc: Don't waste bits encoding non-visible part

2025-05-22 Thread Andreas Rheinhardt
Patches attached. - Andreas From 1105cb797c67d05bf4666e2e33140debcfec12a7 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Thu, 22 May 2025 15:57:13 +0200 Subject: [PATCH 1/3] avcodec/asvenc: Don't waste bits encoding non-visible part Up until now, the encoder replicated all the border p

Re: [FFmpeg-devel] [PATCH 2/2] avformat/imfdec: inherit opaque from parent AVFormatContext

2025-05-22 Thread Michael Niedermayer
Hi Pierre On Fri, May 16, 2025 at 09:15:58PM -0700, Pierre-Anthony Lemieux wrote: > On Fri, May 16, 2025 at 8:51 PM Kacper Michajłow wrote: > > > > io_open and io_close2 callbacks may use opaque pointer stored in the > > context. They are already inherited, so opaque should also be passed > > thr

Re: [FFmpeg-devel] [PATCH] avformat/matroskadec: Accept WebVTT subtitles with empty cues

2025-05-22 Thread Michael Niedermayer
On Tue, May 20, 2025 at 11:26:21AM +0200, Marcos Del Sol Vives via ffmpeg-devel wrote: > Fixes: #11493 > --- > libavformat/matroskadec.c | 3 --- > 1 file changed, 3 deletions(-) will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Into a blind dark

[FFmpeg-devel] [PATCH] Makefile: Split ALLFFLIBS

2025-05-22 Thread Michael Niedermayer
This matches other lists and reduces conflicts between patches Signed-off-by: Michael Niedermayer --- Makefile | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2759e40b773..877b0071f6c 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,14 @@ vp

Re: [FFmpeg-devel] [PATCH v3] avformat/dhav: fix backward scanning for get_duration and optimize seeking

2025-05-22 Thread Michael Niedermayer
Hi On Wed, May 21, 2025 at 02:23:00PM +0100, Derek Buitenhuis wrote: > From: Justin Ruggles > > The backwards scanning done for incomplete final packets should not > assume a specific alignment at the end of the file. Truncated files > result in hundreds of thousands of seeks if the final packet

[FFmpeg-devel] [PATCH] aacdec_ac: fix signed overflow in ff_aac_ac_update_context()

2025-05-22 Thread Lynne
The issue is that state->cur[] is 8-bits, but a+b+1 can overflow before being clipped to 0xF in the following line, causing an incorrect state to be saved for the next symbol. This solves numerous bitstream desyncs, particularly when coefficients with magnitude greater than 127 are sent. --- liba

[FFmpeg-devel] Defamation

2025-05-22 Thread softworkz .
Defamation is a false statement of fact that harms a person's reputation. It can be either libel (written) or slander (spoken). In essence, defamation is a civil wrong (a tort) that provides a remedy for individuals who have suffered harm to their reputation due to false statements made about them

Re: [FFmpeg-devel] [FEATURE PROPOSAL] Extracting codec-level data to binary files

2025-05-22 Thread Ronald S. Bultje
Hi, On Thu, May 22, 2025 at 8:33 AM Ramiro Polla wrote: > On Thu, May 22, 2025 at 1:59 PM Ronald S. Bultje > wrote: > > On Wed, May 21, 2025 at 9:34 AM Timothée < > > timothee.informati...@regaud-chapuy.fr> wrote: > > > I am interested in expanding ffmpeg's capabilities to extract > > > low-lev

Re: [FFmpeg-devel] [PATCH 1/2] rtpdec: add fmtp parsing of sprop-maxcapturerate for opus

2025-05-22 Thread Tristan Matthews via ffmpeg-devel
Hi, On Monday, May 5th, 2025 at 4:07 PM, Marvin Scholz wrote: > From: Erik Linge eri...@axis.com > > > Co-authored-by: Marvin Scholz epira...@gmail.com > > Signed-off-by: Marvin Scholz epira...@gmail.com > > --- > libavformat/Makefile | 1 + > libavformat/rtpdec.c | 8 + > libavformat/rtpd

[FFmpeg-devel] [PATCH] avformat/http: Handle IPv6 Zone ID in hostname

2025-05-22 Thread Marvin Scholz
When using a literal IPv6 address as hostname, it can contain a Zone ID especially in the case of link-local addresses. Sending this to the server in the Host header is not useful to the server and in some cases servers refuse such requests. To prevent any such issues, strip the Zone ID from the a

[FFmpeg-devel] [PATCH v2] lavc/h2645_parse: More descriptive NALU header error

2025-05-22 Thread Frank Plowman
Signed-off-by: Frank Plowman --- Changes since v1: Spotted just after sending this that there was ongoing effort to remove av_strerror calls in favour of av_err2str, so made that substitution here. --- libavcodec/h2645_parse.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --gi

Re: [FFmpeg-devel] [PATCH 1/2] avfilter: add scale_d3d11 filter

2025-05-22 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Dash Santosh > Sathyanarayanan > Sent: Donnerstag, 22. Mai 2025 19:58 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/2] avfilter: add scale_d3d11 filter > > On 22-05-2025 20:55, Timo Rothenpieler wrote: > > On

Re: [FFmpeg-devel] [PATCH 1/2] doc/examples/filter_audio: use av_err2str

2025-05-22 Thread Tristan Matthews
On Thu, May 22, 2025 at 1:42 PM Marvin Scholz wrote: > > On 22 May 2025, at 18:57, Tristan Matthews wrote: > > > --- > > doc/examples/filter_audio.c | 4 +--- > > 1 file changed, 1 insertion(+), 3 deletions(-) > > > > diff --git a/doc/examples/filter_audio.c b/doc/examples/filter_audio.c > > inde

[FFmpeg-devel] [PATCH] lavc/h2645_parse: More descriptive NALU header error

2025-05-22 Thread Frank Plowman
Signed-off-by: Frank Plowman --- libavcodec/h2645_parse.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libavcodec/h2645_parse.c b/libavcodec/h2645_parse.c index 82816999e8..4b9a9e0891 100644 --- a/libavcodec/h2645_parse.c +++ b/libavcodec/h2645_parse.c @@ -22,6 +22,

Re: [FFmpeg-devel] [PATCH 1/2] avfilter: add scale_d3d11 filter

2025-05-22 Thread Dash Santosh Sathyanarayanan
On 22-05-2025 20:55, Timo Rothenpieler wrote: > On 22/05/2025 15:20, Dash Santosh Sathyanarayanan wrote: >> This commit introduces a new hardware-accelerated video filter, >> scale_d3d11, >> which performs scaling and format conversion using Direct3D 11. The >> filter enables >> efficient GPU-bas

Re: [FFmpeg-devel] [FEATURE PROPOSAL] Extracting codec-level data to binary files

2025-05-22 Thread Ramiro Polla
On Thu, May 22, 2025 at 7:03 PM Timothée wrote: > The 2025-05-22T14:33:22.000+02:00, Ramiro Polla > wrote : > > On Thu, May 22, 2025 at 1:59 PM Ronald S. Bultje wrote: > >> On Wed, May 21, 2025 at 9:34 AM Timothée < > >> timothee.informati...@regaud-chapuy.fr> wrote: > >>> I am interested in

Re: [FFmpeg-devel] [PATCH 1/2] doc/examples/filter_audio: use av_err2str

2025-05-22 Thread Marvin Scholz
On 22 May 2025, at 18:57, Tristan Matthews wrote: > --- > doc/examples/filter_audio.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/doc/examples/filter_audio.c b/doc/examples/filter_audio.c > index 8b237e2adf..0f5914 100644 > --- a/doc/examples/filter_audio.c > +

Re: [FFmpeg-devel] [FEATURE PROPOSAL] Extracting codec-level data to binary files

2025-05-22 Thread Timothée
The 2025-05-22T14:33:22.000+02:00, Ramiro Polla wrote : > Hi, >  > On Thu, May 22, 2025 at 1:59 PM Ronald S. Bultje  wrote: >  >>  On Wed, May 21, 2025 at 9:34 AM Timothée < >>  timothee.informati...@regaud-chapuy.fr> wrote:  >>   >>>   I am interested in expanding ffmpeg's capabilities to extrac

[FFmpeg-devel] [PATCH 2/2] doc/examples/qsv_decode: use av_err2str

2025-05-22 Thread Tristan Matthews
--- doc/examples/qsv_decode.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/doc/examples/qsv_decode.c b/doc/examples/qsv_decode.c index 5a6f3625aa..ec91109480 100644 --- a/doc/examples/qsv_decode.c +++ b/doc/examples/qsv_decode.c @@ -219,11 +219,8 @@ int main(int argc,

[FFmpeg-devel] [PATCH 1/2] doc/examples/filter_audio: use av_err2str

2025-05-22 Thread Tristan Matthews
--- doc/examples/filter_audio.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/examples/filter_audio.c b/doc/examples/filter_audio.c index 8b237e2adf..0f5914 100644 --- a/doc/examples/filter_audio.c +++ b/doc/examples/filter_audio.c @@ -270,7 +270,6 @@ int main(int

Re: [FFmpeg-devel] [PATCH 1/2] avfilter: add scale_d3d11 filter

2025-05-22 Thread Timo Rothenpieler
On 22/05/2025 15:20, Dash Santosh Sathyanarayanan wrote: This commit introduces a new hardware-accelerated video filter, scale_d3d11, which performs scaling and format conversion using Direct3D 11. The filter enables efficient GPU-based scaling and pixel format conversion (p010 to nv12), reducin

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Donnerstag, 22. Mai 2025 16:14 > To: Kieran Kunhya > Cc: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] Graphprint Patches Overview > > > > > > From: Kieran Kunhya > > > Sent: Donn

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread softworkz .
> > From: Kieran Kunhya > > Sent: Donnerstag, 22. Mai 2025 16:07 > > To: softworkz . > > Cc: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] Graphprint Patches Overview > > > > > > On Thu, 22 May 2025, 15:03 softworkz ., > > wrote:

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread Kieran Kunhya via ffmpeg-devel
On Thu, 22 May 2025, 15:03 softworkz ., wrote: > > > > -Original Message- > > From: ffmpeg-devel On Behalf Of Kieran > > Kunhya via ffmpeg-devel > > Sent: Donnerstag, 22. Mai 2025 14:46 > > To: FFmpeg development discussions and patches > > Cc: Kieran Kunhya > > Subject: Re: [FFmpeg-de

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Kieran > Kunhya via ffmpeg-devel > Sent: Donnerstag, 22. Mai 2025 14:46 > To: FFmpeg development discussions and patches > Cc: Kieran Kunhya > Subject: Re: [FFmpeg-devel] Graphprint Patches Overview > > > I really wonder how Kier

[FFmpeg-devel] [PATCH] swscale/output: Implement neon intrinsics for yuv2planeX_10_c_template()

2025-05-22 Thread Harshitha Sarangu Suresh
This optimization provides 5x improvement for the module. The boost in performance was calculated by adding C timers inside the C function and the optimized neon intrinsic function. >From 904144c2db9e5e72d56360c4c2eb38d426852901 Mon Sep 17 00:00:00 2001 From: Harshitha Suresh Date: Thu, 22 May

[FFmpeg-devel] [PATCH] swscale/output: Implement neon intrinsics for yuv2nv12cX_c()

2025-05-22 Thread Harshitha Sarangu Suresh
This optimization provides 6x improvement for the module. The boost in performance was calculated by adding C timers inside the C function and the optimized neon intrinsic function. >From 1deceb0394a5acdf70677870dc252fd66a91dd9f Mon Sep 17 00:00:00 2001 From: Harshitha Suresh Date: Mon, 19 Ma

[FFmpeg-devel] [PATCH 1/2] avfilter: add scale_d3d11 filter

2025-05-22 Thread Dash Santosh Sathyanarayanan
This commit introduces a new hardware-accelerated video filter, scale_d3d11, which performs scaling and format conversion using Direct3D 11. The filter enables efficient GPU-based scaling and pixel format conversion (p010 to nv12), reducing CPU overhead and latency in video pipelines. --- Changel

[FFmpeg-devel] [PATCH 2/2] avcodec/mfenc: add support for D3D11 input surfaces

2025-05-22 Thread Dash Santosh Sathyanarayanan
Adds D3D11 input surface support to the MediaFoundation encoder (mfenc), allowing direct encoding of GPU frames without readback to system memory. This improves performance and compatibility when used alongside scale_d3d11. --- Changelog | 1 + libavcodec/mf_utils.h | 7 ++ libavco

Re: [FFmpeg-devel] [PATCH v3] avformat/dhav: fix backward scanning for get_duration and optimize seeking

2025-05-22 Thread Derek Buitenhuis
On 5/21/2025 2:23 PM, Derek Buitenhuis wrote: > --- > libavformat/dhav.c | 54 +- > 1 file changed, 39 insertions(+), 15 deletions(-) Will push later today or tomorrow, with fixed commit message, if there are no further comments. - Derek __

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread Kieran Kunhya via ffmpeg-devel
> I really wonder how Kieran can't be embarrassed trying such maneuvers which > are so obvious to everybody. I really wonder how you can't be embarrassed sending what imo is the worst patchset in the history of the project. Instead of acknowledging that, it's deflecting and playing the victim you

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread Kieran Kunhya via ffmpeg-devel
On Thu, May 22, 2025 at 12:24 PM Michael Niedermayer wrote: > 4. "seeing the scale of memory leaks." try to compare this to >IAMF "git log --grep IAMF --oneline", IAMF is after a year still receiving >frequent security fixes. This is just as a comparission This is completely different, on

Re: [FFmpeg-devel] [FEATURE PROPOSAL] Extracting codec-level data to binary files

2025-05-22 Thread Ramiro Polla
Hi, On Thu, May 22, 2025 at 1:59 PM Ronald S. Bultje wrote: > On Wed, May 21, 2025 at 9:34 AM Timothée < > timothee.informati...@regaud-chapuy.fr> wrote: > > I am interested in expanding ffmpeg's capabilities to extract > > low-level data from video codecs. Specifically, I'd like to implement > >

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Donnerstag, 22. Mai 2025 13:24 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] Graphprint Patches Overview > > Hi Kieran > > On Thu, May 22, 2025 at 08:21:48AM +0100, K

Re: [FFmpeg-devel] [FEATURE PROPOSAL] Extracting codec-level data to binary files

2025-05-22 Thread Ronald S. Bultje
Hi, On Wed, May 21, 2025 at 9:34 AM Timothée < timothee.informati...@regaud-chapuy.fr> wrote: > Hello, > > I am interested in expanding ffmpeg's capabilities to extract > low-level data from video codecs. Specifically, I'd like to implement > functionality that would allow exporting frame data, m

Re: [FFmpeg-devel] [PATCH] avutil/refstruct: Remove redundant check

2025-05-22 Thread Andreas Rheinhardt
Andreas Rheinhardt: > Patch attached. > > - Andreas > Will apply. - Andreas ___ 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.

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread Michael Niedermayer
Hi Kieran On Thu, May 22, 2025 at 08:21:48AM +0100, Kieran Kunhya via ffmpeg-devel wrote: > It's obvious basic testing was not done on this patchset seeing the scale > of memory leaks. > > I would like the TC to decide on reverting and proper resubmission later. Iam not speaking for the TC here

Re: [FFmpeg-devel] [PATCH v2 2/3] tests/source-check: Fix make inclusion-guard check EOL-agnostic

2025-05-22 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Donnerstag, 22. Mai 2025 13:12 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v2 2/3] tests/source-check: Fix make > inclusion-guard check EOL-agnostic > > > > > -Or

Re: [FFmpeg-devel] [PATCH v2 2/3] tests/source-check: Fix make inclusion-guard check EOL-agnostic

2025-05-22 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Andreas > Rheinhardt > Sent: Donnerstag, 22. Mai 2025 12:42 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v2 2/3] tests/source-check: Fix make > inclusion-guard check EOL-agnostic > > softworkz: > > From: softw

Re: [FFmpeg-devel] [PATCH v2 2/3] tests/source-check: Fix make inclusion-guard check EOL-agnostic

2025-05-22 Thread Andreas Rheinhardt
softworkz: > From: softworkz > > ..to make it work when checked out with autocrlf=on, > which is Git default on Windows. > > Signed-off-by: softworkz > --- > tests/fate/source-check.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/fate/source-check.sh b/tests/

Re: [FFmpeg-devel] [PATCH] swscale: rgb_to_yuv neon optimizations

2025-05-22 Thread Ramiro Polla
On Thu, May 22, 2025 at 8:55 AM Dmitriy Kovalenko wrote: > Bumping on the review for this one Michael already replied: https://ffmpeg.org/pipermail/ffmpeg-devel/2025-May/343826.html The patch is corrupted and can't be applied. ___ ffmpeg-devel mailing

[FFmpeg-devel] [PATCH] avformat/movenc: Fix flush fragment

2025-05-22 Thread Zhao Zhili
From: Zhao Zhili The follow cmd output corrupted file before the patch: ffmpeg -f lavfi -i color=blue,trim=duration=0.04 \ -f lavfi -i anullsrc,atrim=duration=2 \ -movflags +empty_moov+hybrid_fragmented \ -frag_duration 100 \ -frag_interleave 1 \ outpu

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Donnerstag, 22. Mai 2025 10:13 > To: FFmpeg development discussions and patches > Cc: Kieran Kunhya ; t...@ffmpeg.org > Subject: Re: [FFmpeg-devel] Graphprint Patches Overview > > > > > -Original Message-

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Nicolas > George > Sent: Donnerstag, 22. Mai 2025 10:50 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] Graphprint Patches Overview > > Kieran Kunhya via ffmpeg-devel (HE12025-05-22): > > It's obviou

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Nicolas > George > Sent: Donnerstag, 22. Mai 2025 10:50 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] Graphprint Patches Overview > > Kieran Kunhya via ffmpeg-devel (HE12025-05-22): > > It's obviou

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread Nicolas George
Kieran Kunhya via ffmpeg-devel (HE12025-05-22): > It's obvious basic testing was not done on this patchset seeing the scale > of memory leaks. > > I would like the TC to decide on reverting and proper resubmission later. For once, I agree with that assessment. I think giving softworkz the authori

Re: [FFmpeg-devel] [PATCH] avformat/movenc: fix VVC encoding with leading pictures

2025-05-22 Thread Gabriel Hege
On 17.05.25 04:26, Nuo Mi wrote: On Fri, May 16, 2025 at 7:05 PM Gabriel Hege wrote: This is a resubmission with a corrected commit message. The default behavior for VVenC (since v1.10.0) is to create an IDR with leading pictures for the first picture in decoding order (POC 32). This leads

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Kieran > Kunhya via ffmpeg-devel > Sent: Donnerstag, 22. Mai 2025 09:22 > To: FFmpeg development discussions and patches > Cc: Kieran Kunhya ; t...@ffmpeg.org > Subject: Re: [FFmpeg-devel] Graphprint Patches Overview > > It's obvi

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-22 Thread Kieran Kunhya via ffmpeg-devel
It's obvious basic testing was not done on this patchset seeing the scale of memory leaks. I would like the TC to decide on reverting and proper resubmission later. Kieran On Wed, 21 May 2025, 21:37 softworkz ., wrote: > > > > -Original Message- > > From: ffmpeg-devel On Behalf Of > s