Re: [FFmpeg-devel] [PATCH] build: fix windows build issue introduced by 45bea45

2025-05-15 Thread Zhao Zhili
> On May 15, 2025, at 20:46, Nuo Mi wrote: > > We defined CR to 2 in libavcodec/vvc/dec.h, but the CR used by > _IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY winnt.h > reorder the header will avoid the issue. There are similar issues of using short uppercase variable names or macro, e.g., f0f596dbc6b

Re: [FFmpeg-devel] [PATCH] Add tools/merge-all-source-plugins

2025-05-15 Thread Michael Niedermayer
On Wed, May 14, 2025 at 12:55:09PM +0200, Michael Niedermayer wrote: > Simple script to merge all source plugins. > > Signed-off-by: Michael Niedermayer > --- > INSTALL.md | 3 +++ > tools/merge-all-source-plugins | 3 +++ > 2 files changed, 6 insertions(+) > create mode 100

Re: [FFmpeg-devel] [PATCH] avfilter/vf_libplacebo: add shader_cache_dir option

2025-05-15 Thread Andreas Rheinhardt
Niklas Haas: > From: Niklas Haas > > Useful to speed up shader compilation. May significantly lower startup > times, in particular with large or complex shaders. > > Sponsored-by: nxtedition > --- > doc/filters.texi| 5 + > libavfilter/vf_libplacebo.c | 29 +

Re: [FFmpeg-devel] [PATCH] Add tools/merge-all-source-plugins

2025-05-15 Thread Rémi Denis-Courmont
Hi, Le 14 mai 2025 13:55:09 GMT+03:00, Michael Niedermayer a écrit : >Simple script to merge all source plugins. > >Signed-off-by: Michael Niedermayer >--- > INSTALL.md | 3 +++ > tools/merge-all-source-plugins | 3 +++ > 2 files changed, 6 insertions(+) > create mode 100644 t

[FFmpeg-devel] Patch: avformat_index_get_entry and avformat_index_get_entry_from_timestamp const correctness

2025-05-15 Thread Martijn Otto
With this patch it's now possible to call avformat_index_get_entry and avformat_index_get_entry_from_timestamp with a const-qualified AVStream. From cbf7880c230ccff35b8b6d1fab192a07c6083307 Mon Sep 17 00:00:00 2001 From: Martijn Otto Date: Mon, 7 Nov 2022 16:06:30 +0100 Subject: [PATCH] avformat

Re: [FFmpeg-devel] [PATCH] avfilter/vf_libplacebo: add shader_cache_dir option

2025-05-15 Thread Niklas Haas
On Thu, 15 May 2025 13:08:12 +0200 Andreas Rheinhardt wrote: > Why do you set the default to "" instead of NULL? This gives an > allocation even when the option is never set and makes the check for > whether it is set unnecessarily complicated. I can change the default to NULL, but I would prefe

Re: [FFmpeg-devel] [PATCH] Add tools/merge-all-source-plugins

2025-05-15 Thread Zhao Zhili
> On May 14, 2025, at 18:55, Michael Niedermayer wrote: > > Simple script to merge all source plugins. I think this is confusing. The operation of merging multiple branches can hardly be considered a plugin. > > Signed-off-by: Michael Niedermayer > --- > INSTALL.md | 3

Re: [FFmpeg-devel] Patch: avformat_index_get_entry and avformat_index_get_entry_from_timestamp const correctness

2025-05-15 Thread Andreas Rheinhardt
Martijn Otto: > static av_always_inline const FFStream *cffstream(const AVStream *st) > { > -return (FFStream*)st; > +return (const FFStream*)st; > } Your patch should be applied on top of git master, not some old version. The above change is identical to 185d0acdc7a67b7d3d78d4c917334c4

[FFmpeg-devel] [PATCH] build: fix windows build issue introduced by 45bea45

2025-05-15 Thread Nuo Mi
We defined CR to 2 in libavcodec/vvc/dec.h, but the CR used by _IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY winnt.h reorder the header will avoid the issue. --- tests/checkasm/vvc_sao.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/checkasm/vvc_sao.c b/tests/checkasm/vvc_sao.

Re: [FFmpeg-devel] [PATCH v2 6/7] checkasm: hevc sao_edge, benchmarking inside the width loop is meaningless

2025-05-15 Thread Nuo Mi
On Thu, May 15, 2025 at 9:05 AM softworkz . wrote: > > > > -Original Message- > > From: ffmpeg-devel On Behalf Of Nuo Mi > > Sent: Samstag, 3. Mai 2025 11:13 > > To: ffmpeg-devel@ffmpeg.org > > Cc: Nuo Mi > > Subject: [FFmpeg-devel] [PATCH v2 6/7] checkasm: hevc sao_edge, > benchmarking

[FFmpeg-devel] [PATCH 1/2] tools/merge-all-source-plugins: Try merging a tag or branch matching the current version first

2025-05-15 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- tools/merge-all-source-plugins | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) mode change 100644 => 100755 tools/merge-all-source-plugins diff --git a/tools/merge-all-source-plugins b/tools/merge-all-source-plugins old mode 100644 new mode 1

[FFmpeg-devel] [PATCH 2/2] tools/merge-all-source-plugins: Check that there are no uncommited changes

2025-05-15 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- tools/merge-all-source-plugins | 11 +++ 1 file changed, 11 insertions(+) diff --git a/tools/merge-all-source-plugins b/tools/merge-all-source-plugins index 05f4fe5e97b..231d9ddcb64 100755 --- a/tools/merge-all-source-plugins +++ b/tools/merge-all-s

Re: [FFmpeg-devel] Patch: avformat_index_get_entry and avformat_index_get_entry_from_timestamp const correctness

2025-05-15 Thread Martijn Otto
On Thu, 2025-05-15 at 14:44 +0200, Andreas Rheinhardt wrote: > Martijn Otto: > >  static av_always_inline const FFStream *cffstream(const AVStream > > *st) > >  { > > -    return (FFStream*)st; > > +    return (const FFStream*)st; > >  } > > Your patch should be applied on top of git master, not s

[FFmpeg-devel] [PATCH v2 1/2] tools/merge-all-source-plugins: Try merging a tag or branch matching the current version

2025-05-15 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- tools/merge-all-source-plugins | 26 +- 1 file changed, 25 insertions(+), 1 deletion(-) mode change 100644 => 100755 tools/merge-all-source-plugins diff --git a/tools/merge-all-source-plugins b/tools/merge-all-source-plugins old mod

[FFmpeg-devel] [PATCH v2 2/2] tools/merge-all-source-plugins: Check that there are no uncommited changes

2025-05-15 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- tools/merge-all-source-plugins | 11 +++ 1 file changed, 11 insertions(+) diff --git a/tools/merge-all-source-plugins b/tools/merge-all-source-plugins index 4dbfa898723..536e1664a43 100755 --- a/tools/merge-all-source-plugins +++ b/tools/merge-all-s

Re: [FFmpeg-devel] [PATCH] Add tools/merge-all-source-plugins

2025-05-15 Thread Michael Niedermayer
Hi Zhao Zhili On Thu, May 15, 2025 at 06:58:54PM +0800, Zhao Zhili wrote: > > > > On May 14, 2025, at 18:55, Michael Niedermayer > > wrote: > > > > Simple script to merge all source plugins. > > I think this is confusing. The operation of merging multiple branches can > hardly be considered

Re: [FFmpeg-devel] [PATCH v2 1/2] tools/merge-all-source-plugins: Try merging a tag or branch matching the current version

2025-05-15 Thread Michael Niedermayer
On Thu, May 15, 2025 at 04:23:44PM +0200, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > tools/merge-all-source-plugins | 26 +- > 1 file changed, 25 insertions(+), 1 deletion(-) > mode change 100644 => 100755 tools/merge-all-source-plugins will

Re: [FFmpeg-devel] [PATCH v2 6/7] checkasm: hevc sao_edge, benchmarking inside the width loop is meaningless

2025-05-15 Thread softworkz .
From: Nuo Mi Sent: Donnerstag, 15. Mai 2025 14:49 To: softworkz . Cc: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH v2 6/7] checkasm: hevc sao_edge, benchmarking inside the width loop is meaningless On Thu, May 15, 2025 at 9:05 AM softworkz . mailto:softwo.

Re: [FFmpeg-devel] [PATCH] build: fix windows build issue introduced by 45bea45

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Nuo Mi > Sent: Donnerstag, 15. Mai 2025 14:46 > To: ffmpeg-devel@ffmpeg.org > Cc: Nuo Mi > Subject: [FFmpeg-devel] [PATCH] build: fix windows build issue introduced by > 45bea45 > > We defined CR to 2 in libavcodec/vvc/dec.h, but

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread Ramiro Polla
On Fri, May 16, 2025 at 12:00 AM softworkz . wrote: > > On Thu, May 15, 2025 at 11:11 PM softworkz wrote: > > [...] > > > diff --git a/fftools/graph/filelauncher.c b/fftools/graph/filelauncher.c > > > new file mode 100644 > > > index 00..45514ca599 > > > --- /dev/null > > > +++ b/fftools/

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Ramiro Polla > Sent: Freitag, 16. Mai 2025 00:13 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > On Fri, May 16, 2025 at 12:00 

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Freitag, 16. Mai 2025 00:19 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > > > > -Original Message--

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread Mark Thompson
On 15/05/2025 23:19, softworkz . wrote: > > >> -Original Message- >> From: ffmpeg-devel On Behalf Of Ramiro >> Polla >> Sent: Freitag, 16. Mai 2025 00:13 >> To: FFmpeg development discussions and patches >> Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it >

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Freitag, 16. Mai 2025 00:35 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > On 15/05/2025 23:19, softworkz . wrote: > > > >

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Freitag, 16. Mai 2025 02:33 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > > > > -Original Message--

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread Lynne
On 16/05/2025 02:39, James Almer wrote: On 5/15/2025 9:36 PM, softworkz . wrote: -Original Message- From: ffmpeg-devel On Behalf Of softworkz . Sent: Freitag, 16. Mai 2025 02:33 To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/grap

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of James Almer > Sent: Freitag, 16. Mai 2025 02:28 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > On 5/15/2025 9:17 PM, softworkz . wrote: > > > > >

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread James Almer
On 5/15/2025 9:36 PM, softworkz . wrote: -Original Message- From: ffmpeg-devel On Behalf Of softworkz . Sent: Freitag, 16. Mai 2025 02:33 To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread Michael Niedermayer
Hi On Fri, May 16, 2025 at 12:17:14AM +, softworkz . wrote: > > > > -Original Message- > > From: ffmpeg-devel On Behalf Of Marton > > Balint > > Sent: Freitag, 16. Mai 2025 02:00 > > To: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] ffto

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Lynne > Sent: Freitag, 16. Mai 2025 02:45 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > On 16/05/2025 02:39, James Almer wrote: > > On 5/15/2025

[FFmpeg-devel] [PATCH] mpeg12enc: fix wrong size when copying A53_CC side-data into output

2025-05-15 Thread Jacob Lifshay
Fixes: https://trac.ffmpeg.org/ticket/11591 Signed-off-by: Jacob Lifshay --- libavcodec/mpeg12enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c index 8364368fde..e48437eb8a 100644 --- a/libavcodec/mpeg12enc.c +++ b/libavcode

[FFmpeg-devel] [PATCH] avcodec/mpeg12enc: Fix writing closed captions

2025-05-15 Thread Andreas Rheinhardt
Patch attached. Will apply it soon. Sorry for this. - Andreas From d76c32a88bfe9dc3b7a1fbf3dab49d1e69414d71 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Fri, 16 May 2025 03:03:58 +0200 Subject: [PATCH] avcodec/mpeg12enc: Fix writing closed captions Broken in 6e225123d8583fdce55037b85e

Re: [FFmpeg-devel] [PATCH] mpeg12enc: fix wrong size when copying A53_CC side-data into output

2025-05-15 Thread Andreas Rheinhardt
Jacob Lifshay: > Fixes: https://trac.ffmpeg.org/ticket/11591 > > Signed-off-by: Jacob Lifshay > --- > libavcodec/mpeg12enc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c > index 8364368fde..e48437eb8a 100644 > --- a/lib

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Freitag, 16. Mai 2025 02:54 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > Hi > > On Fri, May 1

Re: [FFmpeg-devel] [PATCH] mpeg12enc: fix wrong size when copying A53_CC side-data into output

2025-05-15 Thread Jacob Lifshay
On Thu, May 15, 2025 at 6:15 PM Andreas Rheinhardt wrote: > Thanks for this patch (and for the bug report; and sorry for causing you > trouble). Your patch was also my first attempt to fix this, but > unfortunately ff_copy_bits() may overread, yet the side data buffer need > not be padded, so my p

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread Martin Storsjö
On Thu, 15 May 2025, softworkz wrote: ffmpeg | branch: master | softworkz | Thu May 15 23:10:02 2025 +0200| [1f2b8d7238eff4ab8a4d8d6177e250b8180d51f4] | committer: softworkz fftools/graphprint: Now, make it a Killer-Feature! remember this: -sg <= means Show Graph Signed-off-by: softworkz

Re: [FFmpeg-devel] [PATCH] aarch64: increase default alignment for functions and constants

2025-05-15 Thread Martin Storsjö
On Fri, 16 May 2025, Ramiro Polla wrote: Use 16-byte alignment (align=4) instead of 4-byte (align=2) in the function and const macros. This improves instruction fetch and NEON load performance on modern AArch64 CPUs. --- libavutil/aarch64/asm.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletio

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Martin > Storsjö > Sent: Freitag, 16. Mai 2025 08:22 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > On Thu, 15 May 2025, softworkz wrote: > > > f

Re: [FFmpeg-devel] [PATCH] Boost FPS and performance: Optimize vertical loop for cache-friendly access [libavcodec/jpeg2000dwt.c:dwt_decode97_float]

2025-05-15 Thread Michael Niedermayer
Hi On Wed, May 14, 2025 at 06:40:03PM +0200, Michael Niedermayer wrote: > Hi Chitra > > On Wed, May 14, 2025 at 03:55:59AM +, Chitra Dey Sarkar via ffmpeg-devel > wrote: > > Original Implementation: > > - > > In the original implementation, the "VER_SD" sectio

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread Marton Balint
On Thu, 15 May 2025, softworkz . wrote: -Original Message- From: ffmpeg-devel On Behalf Of Ramiro Polla Sent: Donnerstag, 15. Mai 2025 23:50 To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature! Hi, On Thu, May

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Marton > Balint > Sent: Freitag, 16. Mai 2025 02:00 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > > > On Thu, 15 May 2025,

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Ramiro Polla > Sent: Freitag, 16. Mai 2025 01:30 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > On Fri, May 16, 2025 at 1:04 A

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread James Almer
On 5/15/2025 9:17 PM, softworkz . wrote: -Original Message- From: ffmpeg-devel On Behalf Of Marton Balint Sent: Freitag, 16. Mai 2025 02:00 To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread Romain Beauxis
Le jeu. 15 mai 2025 à 19:54, Michael Niedermayer a écrit : > > Hi > > On Fri, May 16, 2025 at 12:17:14AM +, softworkz . wrote: > > > > > > > -Original Message- > > > From: ffmpeg-devel On Behalf Of Marton > > > Balint > > > Sent: Freitag, 16. Mai 2025 02:00 > > > To: FFmpeg developmen

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Romain > Beauxis > Sent: Freitag, 16. Mai 2025 05:40 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > Le jeu. 15 mai 2025 à 19:5

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Freitag, 16. Mai 2025 06:16 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > > > > -Original Message--

Re: [FFmpeg-devel] [PATCH] Add tools/merge-all-source-plugins

2025-05-15 Thread Zhao Zhili
> On May 15, 2025, at 23:27, Michael Niedermayer wrote: > > Hi Zhao Zhili > > On Thu, May 15, 2025 at 06:58:54PM +0800, Zhao Zhili wrote: >> >> >>> On May 14, 2025, at 18:55, Michael Niedermayer >>> wrote: >>> >>> Simple script to merge all source plugins. >> >> I think this is confusing

Re: [FFmpeg-devel] [PATCH v1] fftools/ffplay: Resolve input file path before processing

2025-05-15 Thread Appaji Chintimi
Can you elaborate a bit more why this requires more changes? My understanding is, to check for different cases and handle them differently: 1. "-" gets replaced with "fd:", and it's passed directly to "input_filename" without resolving. 2. if the path contains "://", that too gets passed on withou

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread Ramiro Polla
On Fri, May 16, 2025 at 12:43 AM softworkz . wrote: > > > > > -Original Message- > > From: ffmpeg-devel On Behalf Of Mark > > Thompson > > Sent: Freitag, 16. Mai 2025 00:35 > > To: ffmpeg-devel@ffmpeg.org > > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make > > i

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Freitag, 16. Mai 2025 00:35 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > On 15/05/2025 23:19, softworkz . wrote: > > > >

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Ramiro Polla > Sent: Freitag, 16. Mai 2025 00:49 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > On Fri, May 16, 2025 at 12:43 

[FFmpeg-devel] [PATCH] aarch64: increase default alignment for functions and constants

2025-05-15 Thread Ramiro Polla
Use 16-byte alignment (align=4) instead of 4-byte (align=2) in the function and const macros. This improves instruction fetch and NEON load performance on modern AArch64 CPUs. --- libavutil/aarch64/asm.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavutil/aarch64/asm.

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread Ramiro Polla
On Fri, May 16, 2025 at 1:04 AM softworkz . wrote: > > From: ffmpeg-devel On Behalf Of Ramiro > > Polla > > Sent: Freitag, 16. Mai 2025 00:49 [...] > > What about the user parsing the output from the cli, looking for a > > specific string (such as "graph file saved to [...]"), and opening > > th

Re: [FFmpeg-devel] [PATCH 1/2] Revert "fftools/textformat/avtextformat: Make close functions return void"

2025-05-15 Thread Marton Balint
On Wed, 7 May 2025, Marton Balint wrote: This reverts commit 7684243fbe6e84fecb4a039195d5fda8a006a2a4 and a888975a3c25760027cd59932f5c1ad04368db8b. Will apply the series. Regards, Marton --- fftools/ffprobe.c | 14 +++--- fftools/textformat/avtextformat.c | 12 ++

Re: [FFmpeg-devel] [PATCH 1/2] tests/fate/probe: add test for pcm misdetected as mp3 in wav

2025-05-15 Thread Marton Balint
On Sun, 11 May 2025, Marton Balint wrote: Signed-off-by: Marton Balint --- tests/fate-run.sh| 4 tests/fate/probe.mak | 4 2 files changed, 8 insertions(+) Will apply the series. Regards, Marton diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 45dcb6e8dc..5d904ab8bf

Re: [FFmpeg-devel] [PATCH v12 00/15] Execution Graph Printing

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Dienstag, 13. Mai 2025 16:04 > To: ffmpegagent ; ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v12 00/15] Execution Graph Printing > > > > > -Original Message- > > From: ffmpegagent > >

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread Ramiro Polla
Hi, On Thu, May 15, 2025 at 11:11 PM softworkz wrote: [...] > diff --git a/fftools/graph/filelauncher.c b/fftools/graph/filelauncher.c > new file mode 100644 > index 00..45514ca599 > --- /dev/null > +++ b/fftools/graph/filelauncher.c [...] > +int ff_open_html_in_browser(const char *html_p

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread James Almer
ffmpeg | branch: master | softworkz https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog>> | Thu May 15 23:10:02 2025 +0200| [1f2b8d7238eff4ab8a4d8d6177e250b8180d51f4] | committer: softworkz fftools/graphprint: Now, make it a Killer-Feature! remember this: -sg <= means Show Graph Signed-off-by:

Re: [FFmpeg-devel] [PATCH] Add tools/merge-all-source-plugins

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Donnerstag, 15. Mai 2025 17:27 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH] Add tools/merge-all-source-plugins > > Hi Zhao Zhili > > On Thu, May 15, 2025 at 06:

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of James Almer > Sent: Donnerstag, 15. Mai 2025 23:53 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > > ffmpeg | branch: master |

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread James Almer
On 5/15/2025 6:58 PM, softworkz . wrote: -Original Message- From: ffmpeg-devel On Behalf Of James Almer Sent: Donnerstag, 15. Mai 2025 23:53 To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Ramiro Polla > Sent: Donnerstag, 15. Mai 2025 23:50 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > Hi, > > On Thu, May 15, 2025 at 11:11 PM softw

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of James Almer > Sent: Freitag, 16. Mai 2025 00:00 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > On 5/15/2025 6:58 PM, softworkz . wrote: > > > > >

Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of James Almer > Sent: Freitag, 16. Mai 2025 00:00 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > On 5/15/2025 6:58 PM, softworkz . wrote: > > > > >