[FFmpeg-devel] [PATCH v2 3/4] fftools/ffmpeg_graphprint: Add options for filtergraph printing

2025-02-21 Thread softworkz
From: softworkz The key benefits are: - Different to other graph printing methods, this is outputting: - all graphs with runtime state (including auto-inserted filters) - each graph with its inputs and outputs - all filters with their in- and output pads - all connections between

[FFmpeg-devel] [PATCH v2 2/4] avfilter/avfilter Add avfilter_link_get_hw_frames_ctx()

2025-02-21 Thread softworkz
From: softworkz --- doc/APIchanges | 3 +++ libavfilter/avfilter.c | 9 + libavfilter/avfilter.h | 12 libavfilter/version.h | 2 +- 4 files changed, 25 insertions(+), 1 deletion(-) diff --git a/doc/APIchanges b/doc/APIchanges index ac506f4b56..acdd473a67

Re: [FFmpeg-devel] [PATCH v2] w32pthreads: add support for setting thread name

2025-03-30 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Jan > Ekström > Sent: Montag, 31. März 2025 00:05 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v2] w32pthreads: add support for > setting thread name > > On Tue, Mar 4, 2025 at 5:14 PM Kacpe

Re: [FFmpeg-devel] [PATCH] avfilter: Proof of Concept: enable out-of-tree filters

2025-03-30 Thread softworkz .
> Hi > > On Sun, Mar 30, 2025 at 12:51:46AM +, softworkz . wrote: > [...] > > When the branch to merge has the same baseline with only the > additional commits on top it works fine of course. That's equivalent to > the patchsets on the ML needing to be created

[FFmpeg-devel] [PATCH v2 2/2] avutil/hwcontext: Add item_name function for AVHWDeviceContext

2025-03-29 Thread softworkz
From: softworkz Signed-off-by: softworkz --- libavutil/hwcontext.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavutil/hwcontext.c b/libavutil/hwcontext.c index 276dc9cee6..3111a44651 100644 --- a/libavutil/hwcontext.c +++ b/libavutil/hwcontext.c @@ -137,9

Re: [FFmpeg-devel] [PATCH] avfilter: Proof of Concept: enable out-of-tree filters

2025-03-29 Thread softworkz .
> Hi > > On Sat, Mar 29, 2025 at 01:45:38AM +, softworkz . wrote: > > > > > > > -Original Message- > > > From: ffmpeg-devel On Behalf Of > > > Michael Niedermayer > > > Sent: Samstag, 29. März 2025 02:17 > > > To: FFmp

Re: [FFmpeg-devel] [PATCH] avfilter: Proof of Concept: enable out-of-tree filters

2025-03-28 Thread softworkz .
> Hi > > On Fri, Mar 28, 2025 at 10:23:50PM +, softworkz . wrote: > [...] > > > > > > The advantage of "git merge" wether by hand or by a automated tool > > > is that its not limited to what it can do. Its much more powerfull > > > >

Re: [FFmpeg-devel] [PATCH v8 2/4] fftools/ffprobe: Change to use textformat api

2025-03-28 Thread softworkz .
> Hi > > On Thu, Mar 27, 2025 at 12:58:18AM +, softworkz . wrote: > [...] > > > ccache --clear) > > > > > > no relation to ccache, but it happens only in out of tree builds > > > > > > ../configure --enable-gpl --samples=/home/michael/fate/

Re: [FFmpeg-devel] [PATCH] avfilter: Proof of Concept: enable out-of-tree filters

2025-03-28 Thread softworkz .
become a problem The changes are basic in fact, but the trouble it is causing each time is beyond basic. To give you an idea of what I'm talking about I've recorded a short screencast to illustrate what I mean: https://gist.github.com/softworkz/750da15adb259fa13c6b32277647d54e Thanks, sw

[FFmpeg-devel] [PATCH] fftools/resorces: Add resource_manager with build-time compression

2025-03-28 Thread softworkz
From: softworkz Signed-off-by: softworkz --- [RFC] fftools/resorces: Add resource_manager with build-time compression Hello everybody, this is a resource manager implementation which I've done for the upcoming execution graph rendering patchset, which needs som

Re: [FFmpeg-devel] [PATCH] configure: Allow mixing declarations and statements

2025-03-30 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of > Andreas Rheinhardt > Sent: Sonntag, 30. März 2025 17:37 > To: FFmpeg development discussions and patches > Subject: [FFmpeg-devel] [PATCH] configure: Allow mixing declarations and > statements > > Patch attached. > > - Andreas

Re: [FFmpeg-devel] SW's Patchsets Overview

2025-04-02 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Marton > Balint > Sent: Mittwoch, 2. April 2025 21:45 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] SW's Patchsets Overview > > > > On Wed, 2 Apr 2025, softwo

[FFmpeg-devel] [PATCH v9 1/4] fftools/textformat: Extract and generalize textformat api from ffprobe.c

2025-03-22 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/textformat/avtextformat.c | 672 + fftools/textformat/avtextformat.h | 171 fftools/textformat/avtextwriters.h | 68 +++ fftools/textformat/tf_compact.c| 282 fftools/textformat

[FFmpeg-devel] [PATCH v9 2/4] fftools/ffprobe: Change to use textformat api

2025-03-22 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/Makefile | 15 +- fftools/ffprobe.c | 1849 - 2 files changed, 144 insertions(+), 1720 deletions(-) diff --git a/fftools/Makefile b/fftools/Makefile index 4499799818..e9c9891c34 100644 --- a

[FFmpeg-devel] [PATCH v9 4/4] fftools/ffprobe: Rename AVTextFormatContext variables (w => tfc)

2025-03-22 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/ffprobe.c | 512 +++--- 1 file changed, 256 insertions(+), 256 deletions(-) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index 4a90bc4824..9f869b41b3 100644 --- a/fftools/ffprobe.c +++ b/fftools

[FFmpeg-devel] [PATCH v9 3/4] fftools/ffprobe: Rename writer_print_section_* and WriterContext

2025-03-22 Thread softworkz
From: softworkz separated for better clarity of the preceding commit Signed-off-by: softworkz ren --- fftools/ffprobe.c | 361 +++--- 1 file changed, 178 insertions(+), 183 deletions(-) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index

Re: [FFmpeg-devel] Proposal: extract DNN filters code to a different repository and rewrite it in C++

2025-03-28 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of > Leandro Santiago > Sent: Donnerstag, 27. März 2025 15:07 > To: FFmpeg development discussions and patches > Subject: [FFmpeg-devel] Proposal: extract DNN filters code to a > different repository and rewrite it in C++ > > Dear FF

Re: [FFmpeg-devel] [RFC] FFmpeg Execution Graph Visualization

2025-03-28 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of > softworkz . > Sent: Donnerstag, 27. März 2025 00:26 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [RFC] FFmpeg Execution Graph Visualization > > > > > --

[FFmpeg-devel] [PATCH v2 1/2] avutil/log, hwcontext: Add AV_CLASS_CATEGORY_HWDEVICE

2025-03-29 Thread softworkz
From: softworkz Signed-off-by: softworkz --- doc/APIchanges| 3 +++ libavutil/hwcontext.c | 1 + libavutil/log.c | 1 + libavutil/log.h | 1 + libavutil/version.h | 2 +- 5 files changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/APIchanges b/doc/APIchanges index

Re: [FFmpeg-devel] [PATCH v9 0/4] print_graphs: Complete Filtergraph Printing

2025-04-02 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of > Andreas Rheinhardt > Sent: Mittwoch, 2. April 2025 09:25 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v9 0/4] print_graphs: Complete > Filtergraph Printing > > softworkz .: > &g

Re: [FFmpeg-devel] [PATCH v9 0/4] print_graphs: Complete Filtergraph Printing

2025-04-02 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of > softworkz . > Sent: Mittwoch, 2. April 2025 11:31 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v9 0/4] print_graphs: Complete > Filtergraph Printing > > &

Re: [FFmpeg-devel] [PATCH v9 0/4] print_graphs: Complete Filtergraph Printing

2025-04-02 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of > Andreas Rheinhardt > Sent: Mittwoch, 2. April 2025 09:25 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v9 0/4] print_graphs: Complete > Filtergraph Printing > > softworkz .: > &g

Re: [FFmpeg-devel] [PATCH 01/21] avutil/avassert: Add av_unreachable and av_assume() macros

2025-05-07 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of James Almer > Sent: Mittwoch, 7. Mai 2025 20:30 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 01/21] avutil/avassert: Add av_unreachable > and av_assume() macros > > On 5/7/2025 2:

Re: [FFmpeg-devel] [PATCH 01/21] avutil/avassert: Add av_unreachable and av_assume() macros

2025-05-07 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Mittwoch, 7. Mai 2025 20:54 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH 01/21] avutil/avassert: Add av_unreachable > and av_assume() macros > &g

Re: [FFmpeg-devel] [PATCH] libavformat/rtpdec_opus Set duration field on Opus AVPacket

2025-05-11 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Jonathan > Baudanza > Sent: Montag, 12. Mai 2025 04:19 > To: ffmpeg-devel@ffmpeg.org > Cc: Jonathan Baudanza > Subject: [FFmpeg-devel] [PATCH] libavformat/rtpdec_opus Set duration field on > Opus AVPacket > There must be a colon

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg: move elapsed time counter to the end of the status line

2025-05-09 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Marton > Balint > Sent: Freitag, 9. Mai 2025 14:06 > To: ffmpeg-devel@ffmpeg.org > Cc: Marton Balint > Subject: [FFmpeg-devel] [PATCH] fftools/ffmpeg: move elapsed time counter to > the end of the status line > > Elapsed time is m

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg: move elapsed time counter to the end of the status line

2025-05-09 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of James Almer > Sent: Freitag, 9. Mai 2025 18:25 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg: move elapsed time counter > to the end of the status line > > On 5/9/2025 9:06 AM, Marton Balint wro

Re: [FFmpeg-devel] [PATCH 0/4] [Please Ignore] ci_test

2025-05-07 Thread softworkz .
> -Original Message- > From: Kieran Kunhya > Sent: Mittwoch, 7. Mai 2025 16:16 > To: FFmpeg development discussions and patches > Cc: softworkz > Subject: Re: [FFmpeg-devel] [PATCH 0/4] [Please Ignore] ci_test > > On Wed, May 7, 2025 at 4:24 AM ffmpegagent wr

[FFmpeg-devel] [PATCH v12 02/15] fftools/textformat: Apply quality improvements

2025-05-07 Thread softworkz
From: softworkz Perform multiple improvements to increase code robustness. In particular: - favor unsigned counters for loops - add missing checks - avoid possible leaks - move variable declarations to inner scopes when feasible - provide explicit type-casting when needed Signed-off-by

[FFmpeg-devel] [PATCH v12 01/15] fftools/textformat: Apply formatting and whitespace changes

2025-05-07 Thread softworkz
From: softworkz Reviewed-by: Stefano Sabatini Signed-off-by: softworkz --- fftools/textformat/avtextformat.c | 88 +++--- fftools/textformat/avtextformat.h | 20 +++ fftools/textformat/avtextwriters.h | 11 ++-- fftools/textformat/tf_compact.c| 87

[FFmpeg-devel] [PATCH v12 03/15] fftools/textformat: Remove unused print_rational() pointer from AVTextFormatter

2025-05-07 Thread softworkz
From: softworkz Reviewed-by: Stefano Sabatini Signed-off-by: softworkz --- fftools/textformat/avtextformat.h | 1 - fftools/textformat/avtextwriters.h | 5 - 2 files changed, 6 deletions(-) diff --git a/fftools/textformat/avtextformat.h b/fftools/textformat/avtextformat.h index

[FFmpeg-devel] [PATCH v12 14/15] fftools/graphprint: Add execution graph printing

2025-05-07 Thread softworkz
From: softworkz The key benefits are: - Different to other graph printing methods, this is outputting: - all graphs with runtime state (including auto-inserted filters) - each graph with its inputs and outputs - all filters with their in- and output pads - all connections between

[FFmpeg-devel] [PATCH v12 08/15] fftools/tf_internal: Use av_default_item_name

2025-05-07 Thread softworkz
From: softworkz Reviewed-by: Stefano Sabatini Signed-off-by: softworkz --- fftools/textformat/tf_internal.h | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/fftools/textformat/tf_internal.h b/fftools/textformat/tf_internal.h index 362a4cbc38..484886b7a7 100644 --- a

[FFmpeg-devel] [PATCH v12 07/15] fftools/textformat: Introduce common header and deduplicate code

2025-05-07 Thread softworkz
From: softworkz Also change writer_printf signature in AVTextWriter to use va_list, so that it can be called by the new function writer_printf() in tf_internal.h. Reviewed-by: Stefano Sabatini Signed-off-by: softworkz --- fftools/textformat/avtextwriters.h | 2 +- fftools/textformat

[FFmpeg-devel] [PATCH v12 10/15] fftools/ffmpeg_filter: Move some declaration to new header file

2025-05-07 Thread softworkz
From: softworkz to allow filtergraph printing to access the information. Signed-off-by: softworkz --- fftools/ffmpeg_filter.c | 190 +--- fftools/ffmpeg_filter.h | 234 2 files changed, 235 insertions(+), 189 deletions

[FFmpeg-devel] [PATCH v12 11/15] avfilter/avfilter: Add avfilter_link_get_hw_frames_ctx()

2025-05-07 Thread softworkz
From: softworkz Signed-off-by: softworkz --- doc/APIchanges | 3 +++ libavfilter/avfilter.c | 9 + libavfilter/avfilter.h | 12 3 files changed, 24 insertions(+) diff --git a/doc/APIchanges b/doc/APIchanges index 75d66f87f3..d0869561f3 100644 --- a/doc

[FFmpeg-devel] [PATCH v12 04/15] fftools/textformat: Rename name param to key for API consistency

2025-05-07 Thread softworkz
From: softworkz Reviewed-by: Stefano Sabatini Signed-off-by: softworkz --- fftools/textformat/avtextformat.c | 14 +++--- fftools/textformat/avtextformat.h | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/fftools/textformat/avtextformat.c b/fftools

[FFmpeg-devel] [PATCH v12 06/15] fftools/textformat: Introduce AVTextFormatOptions for avtext_context_open()

2025-05-07 Thread softworkz
From: softworkz This allows future addition of options without changes to the signature of avtext_context_open(). Reviewed-by: Stefano Sabatini Signed-off-by: softworkz --- fftools/ffprobe.c | 13 + fftools/textformat/avtextformat.c | 18

[FFmpeg-devel] [PATCH v12 09/15] fftools/textformat: Add flags param to function avtext_print_integer()

2025-05-07 Thread softworkz
From: softworkz Make this function work analog to avtext_print_string() which already has a flags parameter. Signed-off-by: softworkz --- fftools/ffprobe.c | 2 +- fftools/textformat/avtextformat.c | 24 ++-- fftools/textformat/avtextformat.h | 2 +- 3

[FFmpeg-devel] [PATCH v12 05/15] fftools/avtextformat: Re-use BPrint in loop

2025-05-07 Thread softworkz
From: softworkz Instead of initializing a new BPrint in case of UTF decode error, re-use the same BPrint struct and just clear it for each iteration. Reviewed-by: Stefano Sabatini Signed-off-by: softworkz --- fftools/textformat/avtextformat.c | 23 ++- 1 file changed, 14

[FFmpeg-devel] [PATCH v12 12/15] fftools/resources: Add resource manager files with build-time compression

2025-05-07 Thread softworkz
From: softworkz Compression requires zlib to be available, otherwise resources will be included uncompressed - in either case via BIN2C. It can also be disabled via ./configure --disable-resource-compression Size figures: graph.css 7752 graph.css.min 6655 (css is always minified

[FFmpeg-devel] [PATCH v12 15/15] fftools/graphprint: Now, make it a Killer-Feature!

2025-05-07 Thread softworkz
From: softworkz remember this: -sg <= means Show Graph Signed-off-by: softworkz --- doc/ffmpeg.texi | 4 + fftools/Makefile | 1 + fftools/ffmpeg.c | 2 +- fftools/ffmpeg.h | 1 + fftools/ffmpeg_filter.c | 2 +- ffto

[FFmpeg-devel] [PATCH v12 13/15] fftools/ffmpeg_mux: Make ms_from_ost() inline

2025-05-07 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/ffmpeg_mux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fftools/ffmpeg_mux.h b/fftools/ffmpeg_mux.h index f41f2c18fa..4ca8ab73a4 100644 --- a/fftools/ffmpeg_mux.h +++ b/fftools/ffmpeg_mux.h @@ -123,7 +123,7

Re: [FFmpeg-devel] [PATCH 3/3] tests/hevc: Fix concat input when running in MSYS2 shell

2025-05-12 Thread softworkz .
> > On May 13, 2025, at 01:04, softworkz . > wrote: > > > > > > > >> -Original Message- > >> From: Zhao Zhili > >> Sent: Montag, 12. Mai 2025 18:53 > >> To: FFmpeg development discussions and patches > >> Cc: softwo

Re: [FFmpeg-devel] [PATCH 3/3] tests/hevc: Fix concat input when running in MSYS2 shell

2025-05-12 Thread softworkz .
> -Original Message- > From: Zhao Zhili > Sent: Montag, 12. Mai 2025 18:53 > To: FFmpeg development discussions and patches > Cc: softworkz > Subject: Re: [FFmpeg-devel] [PATCH 3/3] tests/hevc: Fix concat input when > running in MSYS2 shell > > >

Re: [FFmpeg-devel] [PATCH 0/5] doc/developer: Add subsection about patch submission via FFstaging

2025-05-08 Thread softworkz .
FFstaging > > Lynne (HE12025-05-08): > > If its mentioned as part of our documentation, it's official. > > I second your objection to this. > > This proposal comes from softworkz, who has been here barely two > minutes, trying to get Andreas to change the way he send

Re: [FFmpeg-devel] [PATCH 01/21] avutil/avassert: Add av_unreachable and av_assume() macros

2025-05-07 Thread softworkz .
cros > > On Wed, May 07, 2025 at 07:14:04PM +, softworkz . wrote: > [...] > > > > > As long as there's no migration to a better way, why not try out > making > > > PRs > > > > to https://github.com/ffstaging/FFmpeg? > > > > >

Re: [FFmpeg-devel] [RFC] Shaping the AVTextFormat API Surface

2025-05-07 Thread softworkz .
> -Original Message- > From: Stefano Sabatini > Sent: Donnerstag, 8. Mai 2025 01:31 > To: softworkz . > Cc: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [RFC] Shaping the AVTextFormat API Surface > > On date Saturday 2025-05-03 0

Re: [FFmpeg-devel] [PATCH v10 01/15] fftools/textformat: Formatting and whitespace changes

2025-05-07 Thread softworkz .
> -Original Message- > From: Stefano Sabatini > Sent: Donnerstag, 8. Mai 2025 01:45 > To: FFmpeg development discussions and patches > Cc: softworkz > Subject: Re: [FFmpeg-devel] [PATCH v10 01/15] fftools/textformat: Formatting > and whitespace changes > >

Re: [FFmpeg-devel] [PATCH v10 01/15] fftools/textformat: Formatting and whitespace changes

2025-05-07 Thread softworkz .
> -Original Message- > From: Stefano Sabatini > Sent: Donnerstag, 8. Mai 2025 02:14 > To: softworkz . > Cc: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v10 01/15] fftools/textformat: Formatting > and whitespace changes > >

Re: [FFmpeg-devel] [PATCH v10 06/15] fftools/textformat: Introduce AVTextFormatOptions for avtext_context_open()

2025-05-07 Thread softworkz .
> -Original Message- > From: Stefano Sabatini > Sent: Donnerstag, 8. Mai 2025 02:06 > To: FFmpeg development discussions and patches > Cc: softworkz > Subject: Re: [FFmpeg-devel] [PATCH v10 06/15] fftools/textformat: Introduce > AVTextFormatOptions for avtext_c

Re: [FFmpeg-devel] [PATCH 5/5] doc/developer: Add subsection about patch submission via FFstaging

2025-05-08 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of James Almer > Sent: Donnerstag, 8. Mai 2025 14:40 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 5/5] doc/developer: Add subsection about > patch submission via FFstaging > > On 5/8

Re: [FFmpeg-devel] [PATCH v10 06/15] fftools/textformat: Introduce AVTextFormatOptions for avtext_context_open()

2025-05-09 Thread softworkz .
> -Original Message- > From: Stefano Sabatini > Sent: Donnerstag, 8. Mai 2025 23:39 > To: softworkz . > Cc: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v10 06/15] fftools/textformat: Introduce > AVTextFormatOptions for avtext_c

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg: move elapsed time counter to the end of the status line

2025-05-09 Thread softworkz .
ine > > > > On Fri, 9 May 2025, softworkz . wrote: > > > > > > >> -Original Message- > >> From: ffmpeg-devel On Behalf Of Marton > >> Balint > >> Sent: Freitag, 9. Mai 2025 14:06 > >> To: ffmpeg-devel@ffmpeg.org &

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

2025-07-15 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of > Martin Storsjö > Sent: Dienstag, 15. Juli 2025 20:09 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [POLL] [VOTE] code.ffmpeg.org > [..] > like a reasonable way to me. But the

Re: [FFmpeg-devel] [PATCH] fftools/textformat: remove unreachable code in tf_mermaid

2025-07-02 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Marvin > Scholz > Sent: Donnerstag, 26. Juni 2025 23:33 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH] fftools/textformat: remove unreachable > code in tf_mermaid > > Integer writing is impossible here as the first

[FFmpeg-devel] [PATCH 1/3] fftools/textformat: Rename variables wctx to tctx

2025-07-02 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/textformat/tf_compact.c | 74 +-- fftools/textformat/tf_default.c | 46 +++ fftools/textformat/tf_flat.c| 38 +++--- fftools/textformat/tf_ini.c | 36 +++--- fftools/textformat/tf_json.c| 84

[FFmpeg-devel] [PATCH 2/3] fftools/textformat: Remove redundant casts

2025-07-02 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/graph/graphprint.c| 16 fftools/resources/resman.c| 6 +++--- fftools/textformat/avtextformat.c | 8 fftools/textformat/tf_compact.c | 2 +- fftools/textformat/tf_default.c | 2 +- 5 files

[FFmpeg-devel] [PATCH 3/3] fftools/textformat: Cleanup unneeded includes

2025-07-02 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/textformat/avtextformat.c | 2 -- fftools/textformat/avtextwriters.h | 1 - fftools/textformat/tf_compact.c| 2 -- fftools/textformat/tf_mermaid.c| 2 -- fftools/textformat/tw_avio.c | 3 --- fftools/textformat/tw_buffer.c

Re: [FFmpeg-devel] [RFC] Introducing policies regarding "AI" contributions

2025-07-04 Thread softworkz .
for the human submitter to > assume > responsibility. IMO this is THE one point that would make a reasonable policy which is valid independently from any "AI" progress now and in the future: When someone submits code, we can require that a s

[FFmpeg-devel] [PATCH v2 1/3] fftools/textformat: Rename variables wctx to tctx

2025-07-04 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/textformat/tf_compact.c | 74 +-- fftools/textformat/tf_default.c | 46 +++ fftools/textformat/tf_flat.c| 38 +++--- fftools/textformat/tf_ini.c | 36 +++--- fftools/textformat/tf_json.c| 84

[FFmpeg-devel] [PATCH v2 2/3] fftools/textformat: Remove redundant casts

2025-07-04 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/graph/graphprint.c| 14 +++--- fftools/resources/resman.c| 6 +++--- fftools/textformat/avtextformat.c | 8 fftools/textformat/tf_compact.c | 2 +- fftools/textformat/tf_default.c | 2 +- 5 files

[FFmpeg-devel] [PATCH v2 3/3] fftools/textformat: Cleanup unneeded includes

2025-07-04 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/textformat/avtextformat.c | 2 -- fftools/textformat/avtextwriters.h | 1 - fftools/textformat/tf_compact.c| 2 -- fftools/textformat/tf_mermaid.c| 2 -- fftools/textformat/tw_avio.c | 3 --- fftools/textformat/tw_buffer.c

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

2025-07-14 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of > Michael Niedermayer > Sent: Sonntag, 13. Juli 2025 13:44 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: [FFmpeg-devel] [POLL] [VOTE] code.ffmpeg.org > > Hi all > > Do people want Forgejo or Gitlab

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 softworkz .
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 > > > &g

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! > > >

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/20

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! > > >

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:

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

2025-05-15 Thread softworkz .
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 de

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

2025-05-15 Thread softworkz .
; > 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 deve

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, 1

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

2025-05-15 Thread softworkz .
; > > 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 > >> Subj

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

2025-05-15 Thread softworkz .
n 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

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

2025-05-15 Thread softworkz .
t; 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 O

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! > > >

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

2025-05-14 Thread softworkz .
> -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 > inside the width loop is meaningless > > --- > tests/checkasm/h

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/20

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

2025-05-15 Thread softworkz .
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.

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 Mess

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

2025-05-15 Thread softworkz .
; of the other should leave. Couldn't agree more! > Its the obvious way. A person working > vs a person objecting to work. Which way will a project move forward ... > > I want to work, I want everyone else to be able to work, I want everyones > work to be

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

2025-05-15 Thread softworkz .
gt; 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! > > > >

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

2025-05-15 Thread softworkz .
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 > [...] > >

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:

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:

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

2025-05-16 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, 1

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

2025-05-16 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Gyan Doshi > Sent: Freitag, 16. Mai 2025 10:14 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > > > > On 2025-05-

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

2025-05-16 Thread softworkz .
; > On Fri, 16 May 2025, softworkz . wrote: > > > > > > >> -Original Message- > >> From: ffmpeg-devel On Behalf Of Martin > >> Storsjö > >> Sent: Freitag, 16. Mai 2025 08:22 > >> To: ffmpeg-devel@ffmpeg.org > >> Subj

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

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

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-21 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Kyle Swanson > Sent: Mittwoch, 21. Mai 2025 22:11 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] Graphprint Patches Overview > > Hi, > > On Wed, May 21, 2025 at 4:00 AM Kieran Kunhya via ffmpeg-deve

[FFmpeg-devel] Graphprint Patches Reminder

2025-05-21 Thread softworkz .
Hi, I'm aiming to apply the patches below by the weekend. Please let me know in case there are any concerns or objections or when you just need more time to look at them. Thanks sw [2/3] ffbuild: correctly silence and tag new css/html steps [3/3] fftools/resources: add missing extensions to .

Re: [FFmpeg-devel] [PATCH v2 0/3] tests/fate: Improvements for running FATE on Windows/MSYS2

2025-05-21 Thread softworkz .
> -Original Message- > From: ffmpegagent > Sent: Dienstag, 13. Mai 2025 16:23 > To: ffmpeg-devel@ffmpeg.org > Cc: softworkz > Subject: [PATCH v2 0/3] tests/fate: Improvements for running FATE on > Windows/MSYS2 > > When setting up the new Patchword builders

Re: [FFmpeg-devel] [PATCH] Accept a colon in the path of a URI, instead of stripping preceding characters.

2025-05-21 Thread softworkz .
From: Timothy Allen Sent: Mittwoch, 21. Mai 2025 09:29 To: softworkz . ; FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH] Accept a colon in the path of a URI, instead of stripping preceding characters. On Tue, 2025-05-20 at 20:03 +, softworkz . wrote: I was

Re: [FFmpeg-devel] Graphprint Patches Overview

2025-05-21 Thread softworkz .
On Wed, 21 May 2025, 01:45 softworkz ., > wrote: > > > Hello, > > > > thanks again to all for the patches. I figured it might be a bit difficult > > to > > keep track of what has already been submitted and fixed and is still > > pending, and I'm sorry

Re: [FFmpeg-devel] [PATCH] Accept a colon in the path of a URI, instead of stripping preceding characters.

2025-05-21 Thread softworkz .
d of stripping preceding characters. > > On Wed, 2025-05-21 at 18:56 +, softworkz . wrote: > > Why do you think it would require control over the server side? > > The original ticket is referring to HLS, and specifically the manifest > of HLS, which means a remotely-hosted M3

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 softwo

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 > > > > >

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

<    3   4   5   6   7   8   9   10   11   >