Re: [FFmpeg-devel] [PATCH 05/10] doc/muxers: Add documentation for segment_limit option

2025-06-23 Thread softworkz .
> > > On Fri, 13 Jun 2025, softworkz . wrote: > > [...] > > >>> (Please note, that the default is 0, which means that nothing is > >>> dropped and there's no change in behavior when it's 0). > >>> > >>> Probably it

[FFmpeg-devel] [PATCH v8 1/3] fftools/resources: Fix double-build by disabling .d file generation

2025-06-23 Thread softworkz
From: softworkz Signed-off-by: softworkz --- ffbuild/common.mak | 6 ++ fftools/Makefile | 1 + fftools/resources/Makefile | 12 +--- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/ffbuild/common.mak b/ffbuild/common.mak index ddf48923ea

[FFmpeg-devel] [PATCH v8 2/3] ffbuild/commonmak: Consolidate pattern rules for compression

2025-06-23 Thread softworkz
From: softworkz This commit simplifies and consolidates all the rules around ptx and resource file compression. Signed-off-by: softworkz --- ffbuild/common.mak | 43 +-- 1 file changed, 17 insertions(+), 26 deletions(-) diff --git a/ffbuild/common.mak

[FFmpeg-devel] [PATCH v8 3/3] fftools/resources: Update .gitignore

2025-06-23 Thread softworkz
From: softworkz Signed-off-by: softworkz --- fftools/resources/.gitignore | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fftools/resources/.gitignore b/fftools/resources/.gitignore index bda2c59a1c..cc742817b5 100644 --- a/fftools/resources/.gitignore +++ b/fftools

Re: [FFmpeg-devel] [PATCH 3/3] avformat/hlsenc: Fix path handling for Windows

2025-06-13 Thread softworkz .
indows > > > > On Fri, 13 Jun 2025, softworkz wrote: > > > From: softworkz > > > > Can you give an example where the path handling is wrong and where > this > patch fixes it? Is there a trac ticket? > &

[FFmpeg-devel] [PATCH v2 6/6] avformat/segment: Indent and whitespace fixes

2025-06-13 Thread softworkz
From: softworkz Signed-off-by: softworkz --- libavformat/segment.c | 48 +-- 1 file changed, 23 insertions(+), 25 deletions(-) diff --git a/libavformat/segment.c b/libavformat/segment.c index ec084483d4..57ea54b00a 100644 --- a/libavformat/segment.c

[FFmpeg-devel] [PATCH v2 1/6] avformat/segment: Add segment_write_temp option

2025-06-13 Thread softworkz
From: softworkz Allows to write segments as temp files (.tmp) which are renamed on completion. Signed-off-by: softworkz --- doc/muxers.texi | 5 + libavformat/segment.c | 29 ++--- 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/doc

[FFmpeg-devel] [PATCH v2 2/6] avformat/segment: Add segment_limit option

2025-06-13 Thread softworkz
From: softworkz Example use case: Existing segments 0-30 and 70-99, 31-69 need to be created. This option allows to stop precisely after 69. Otherwise it would start overwriting segment 70 before stopping via 'q' or break signal. Signed-off-by: softworkz --- doc/muxers.texi

[FFmpeg-devel] [PATCH v2 5/6] avformat/segment: Fix typo

2025-06-13 Thread softworkz
From: softworkz Signed-off-by: softworkz --- libavformat/segment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/segment.c b/libavformat/segment.c index daff385c2c..ec084483d4 100644 --- a/libavformat/segment.c +++ b/libavformat/segment.c @@ -20,7 +20,7

[FFmpeg-devel] [PATCH v2 3/6] avformat/segment: Remove non-negative constraint from segment_time_delta

2025-06-13 Thread softworkz
From: softworkz Use case is to keep early content out of the first segment when not starting from zero. Signed-off-by: softworkz --- libavformat/segment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/segment.c b/libavformat/segment.c index e8b1582e7d

[FFmpeg-devel] [PATCH v2 4/6] avformat/segment: Don't allow negative segment duration

2025-06-13 Thread softworkz
From: softworkz Signed-off-by: softworkz --- libavformat/segment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/segment.c b/libavformat/segment.c index 1e99acdddb..daff385c2c 100644 --- a/libavformat/segment.c +++ b/libavformat/segment.c @@ -1090,7 +1090,7

Re: [FFmpeg-devel] graph.{html,css} embed failure on Windows build

2025-06-14 Thread softworkz .
From: ffmpeg-devel on behalf of softworkz . Sent: Sunday, June 15, 2025 3:20 AM To: Kacper Michajlow; FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] graph.{html,css} embed failure on Windows build

Re: [FFmpeg-devel] graph.{html,css} embed failure on Windows build

2025-06-14 Thread softworkz .
From: Kacper Michajlow Sent: Sunday, June 15, 2025 12:48 AM To: FFmpeg development discussions and patches Cc: softwo...@hotmail.com Subject: graph.{html,css} embed failure on Windows build Hello, Since the recent addition of resman.c and embedding of

[FFmpeg-devel] [PATCH 01/10] avformat/segment: Add segment_write_temp option

2025-06-12 Thread softworkz
From: softworkz Allows to write segments as temp files (.tmp) which are renamed on completion. Signed-off-by: softworkz --- libavformat/segment.c | 30 +++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/libavformat/segment.c b/libavformat/segment.c

[FFmpeg-devel] [PATCH 04/10] avformat/segment: Add segment_limit option

2025-06-12 Thread softworkz
From: softworkz Example use case: Existing segments 0-30 and 70-99, 31-69 need to be created. This option allows to stop precisely after 69. Otherwise it would start overwriting segment 70 before stopping via 'q' or break signal. Signed-off-by: softworkz --- libavformat/segm

[FFmpeg-devel] [PATCH 02/10] doc/muxers: Add documentation for segment_write_temp option

2025-06-12 Thread softworkz
From: softworkz Signed-off-by: softworkz --- doc/muxers.texi | 5 + 1 file changed, 5 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index 30c95c3d34..6d5c17b4cc 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -3505,6 +3505,11 @@ argument must be a time duration

[FFmpeg-devel] [PATCH 07/10] avformat/segment: Remove non-negative constraint from segment_time_delta

2025-06-12 Thread softworkz
From: softworkz Use case is to keep early content out of the first segment when not starting from zero. Signed-off-by: softworkz --- libavformat/segment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/segment.c b/libavformat/segment.c index 70ff01b353

[FFmpeg-devel] [PATCH 08/10] avformat/segment: Don't allow negative segment duration

2025-06-12 Thread softworkz
From: softworkz Signed-off-by: softworkz --- libavformat/segment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/segment.c b/libavformat/segment.c index 83b7ff269b..c2b09b08aa 100644 --- a/libavformat/segment.c +++ b/libavformat/segment.c @@ -1098,7 +1098,7

[FFmpeg-devel] [PATCH 09/10] avformat/segment: Fix typo

2025-06-12 Thread softworkz
From: softworkz Signed-off-by: softworkz --- libavformat/segment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/segment.c b/libavformat/segment.c index c2b09b08aa..3cd9e313f4 100644 --- a/libavformat/segment.c +++ b/libavformat/segment.c @@ -20,7 +20,7

[FFmpeg-devel] [PATCH 03/10] avformat/segment: Log more detailed information about written segments

2025-06-12 Thread softworkz
From: softworkz Also moves point of log writing to after rename of temp files and changes log level to INFO. The completion of a segment is important enough to justify logging at INFO level. Signed-off-by: softworkz --- libavformat/segment.c | 10 -- 1 file changed, 8 insertions(+), 2

Re: [FFmpeg-devel] [PATCH 06/10] avformat/segment: Fix invalid codecpar extradata_size after copying

2025-06-12 Thread softworkz .
> -Original Message- > From: softworkz > Sent: Freitag, 13. Juni 2025 07:54 > To: ffmpeg-devel@ffmpeg.org > Cc: softworkz ; softworkz > > Subject: [PATCH 06/10] avformat/segment: Fix invalid codecpar > extradata_size after copying > > From: softworkz

[FFmpeg-devel] [PATCH 06/10] avformat/segment: Fix invalid codecpar extradata_size after copying

2025-06-12 Thread softworkz
From: softworkz Signed-off-by: softworkz --- libavformat/segment.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/segment.c b/libavformat/segment.c index 15196b6970..70ff01b353 100644 --- a/libavformat/segment.c +++ b/libavformat/segment.c @@ -905,6 +905,7 @@ static int

[FFmpeg-devel] [PATCH 10/10] avformat/segment: Indent and whitespace fixes

2025-06-12 Thread softworkz
From: softworkz Signed-off-by: softworkz --- libavformat/segment.c | 48 +-- 1 file changed, 23 insertions(+), 25 deletions(-) diff --git a/libavformat/segment.c b/libavformat/segment.c index 3cd9e313f4..8e1e4a9c0c 100644 --- a/libavformat/segment.c

[FFmpeg-devel] [PATCH 05/10] doc/muxers: Add documentation for segment_limit option

2025-06-12 Thread softworkz
From: softworkz Signed-off-by: softworkz --- doc/muxers.texi | 7 +++ 1 file changed, 7 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index 6d5c17b4cc..1cca8da1fb 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -3510,6 +3510,13 @@ packet written. Defaults to @code{0

Re: [FFmpeg-devel] [PATCH 01/10] avformat/segment: Add segment_write_temp option

2025-06-13 Thread softworkz .
egment_write_temp option > > > > On Fri, 13 Jun 2025, softworkz wrote: > > > From: softworkz > > > > Allows to write segments as temp files (.tmp) which > > are renamed on completion. > > > > Signed-off-by: softworkz > > --- > > liba

[FFmpeg-devel] [PATCH] doc/developer: Fix typos

2025-06-25 Thread softworkz
From: softworkz Signed-off-by: softworkz --- doc/developer: Fix typos Published-As: https://github.com/ffstaging/FFmpeg/releases/tag/pr-ffstaging-103%2Fsoftworkz%2Fsubmit_typos-v1 Fetch-It-Via: git fetch https://github.com/ffstaging/FFmpeg pr-ffstaging-103/softworkz/submit_typos-v1 Pull

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

2025-05-13 Thread softworkz .
> -Original Message- > From: ffmpegagent > Sent: Donnerstag, 8. Mai 2025 03:37 > To: ffmpeg-devel@ffmpeg.org > Cc: softworkz > Subject: [PATCH v12 00/15] Execution Graph Printing > > Shortest cover letter for my longest-running FFmpeg patchset: > > *

[FFmpeg-devel] [PATCH v2 1/3] tests/fate: Fix subtitle fate tests on Windows

2025-05-13 Thread softworkz
From: softworkz ..when checked out with autocrlf=on, which is Git default on Windows. Signed-off-by: softworkz --- .gitattributes | 38 +- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index b64bbed2eb

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

2025-05-13 Thread softworkz
From: softworkz MSYS2 considers the colon (:) as path separator (=separating multiple paths) and thinks it needs to convert it to a Windows path separator (;). Setting the MSYS2_ARG_CONV_EXCL environment variable keeps MSYS2 from doing this replacement. NOTE: This makes it possible to run the

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

2025-05-13 Thread 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/fate/source-check.sh index

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

2025-05-09 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 For the record, if we consider the existence of

[FFmpeg-devel] New Patchwork CI Builds

2025-05-06 Thread softworkz .
Hello Everybody, today, I've set up a number of additional CI builds for Patchwork: - linux_x64_oot Out-of-tree build, no FATE Checks: apply,configure,make https://dev.azure.com/githubsync/ffmpeg/_build?definitionId=18 - linux-x64-shared Shared build, no FATE Checks: apply,configur

[FFmpeg-devel] [PATCH 3/4] ci_test: Fail fate

2025-05-06 Thread softworkz
From: softworkz --- libavcodec/4xm.c | 2 +- libavformat/aacdec.c | 2 +- libavutil/fifo.c | 2 +- tests/ref/fate/adpcm-ima-apm-mono | 2 +- tests/ref/fate/bmp-15bit | 2 +- tests/ref/fate/filter-vstack

[FFmpeg-devel] [PATCH 4/4] ci_test: All good

2025-05-06 Thread softworkz
From: softworkz --- tests/ref/fate/adpcm-ima-apm-mono | 2 +- tests/ref/fate/bmp-15bit | 2 +- tests/ref/fate/filter-vstack | 2 ++ tests/ref/fate/force_key_frames-source | 4 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/tests/ref/fate/adpcm

[FFmpeg-devel] [PATCH 2/4] ci_test: Fail build

2025-05-06 Thread softworkz
From: softworkz --- configure| 19 +++ libavcodec/4xm.c | 2 +- libavformat/aacdec.c | 2 +- libavutil/fifo.c | 2 +- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/configure b/configure index e388493658..6c23a38be1 100755 --- a/configure

[FFmpeg-devel] [PATCH 1/4] ci_test: Fail configure

2025-05-06 Thread softworkz
From: softworkz --- configure | 19 --- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/configure b/configure index 6c23a38be1..e388493658 100755 --- a/configure +++ b/configure @@ -15,8 +15,8 @@ export LC_ALL # try to make this part work with most shells

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

2025-05-06 Thread softworkz .
> -Original Message- > From: ffmpegagent > Sent: Montag, 5. Mai 2025 00:35 > To: ffmpeg-devel@ffmpeg.org > Cc: softworkz > Subject: [PATCH v11 00/15] Execution Graph Printing > > Shortest cover letter for my longest-running FFmpeg patchset: > > * Appl

Re: [FFmpeg-devel] Enhanced waves filter

2025-05-12 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of CLUSTERF*** > Sent: Montag, 12. Mai 2025 17:01 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] Enhanced waves filter > > Hello, FFmpeg developers. > > I am making my first steps in developing FFmpeg filters. I don't know if

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

2025-05-12 Thread 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/fate/source-check.sh index

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

2025-05-12 Thread softworkz
From: softworkz MSYS2 considers the colon (:) as path separator (=separating multiple paths) and thinks it needs to convert it to a Windows path separator (;). Setting the MSYS2_ARG_CONV_EXCL environment variable keeps MSYS2 from doing this replacement. Signed-off-by: softworkz --- tests

Re: [FFmpeg-devel] [PATCH 42/42] tests/fate/hevc: add a test for switching between single and multi-view

2025-05-12 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Zhao Zhili > Sent: Samstag, 30. November 2024 19:07 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH 42/42] tests/fate/hevc: add a test for > switching between single and multi-view > > > > 在 2

[FFmpeg-devel] [PATCH 1/3] tests/fate: Fix subtitle fate tests on Windows

2025-05-12 Thread softworkz
From: softworkz ..when checked out with autocrlf=on, which is Git default on Windows. Signed-off-by: softworkz --- .gitattributes | 38 +- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index b64bbed2eb

[FFmpeg-devel] [PATCH v2 1/4] doc/developer: Move checklist into Submitting Patches chapter

2025-05-13 Thread softworkz
From: softworkz Signed-off-by: softworkz --- doc/developer.texi | 192 +++-- 1 file changed, 98 insertions(+), 94 deletions(-) diff --git a/doc/developer.texi b/doc/developer.texi index 108558b9e0..42e42350a5 100644 --- a/doc/developer.texi +++ b/doc

[FFmpeg-devel] [PATCH v2 4/4] doc/developer: Merge Review paragraphs and deduplicate

2025-05-13 Thread softworkz
From: softworkz Signed-off-by: softworkz --- doc/developer.texi | 16 ++-- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/doc/developer.texi b/doc/developer.texi index 5a026fff0e..145b57b249 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -923,22 +923,15

[FFmpeg-devel] [PATCH v2 2/4] doc/developer: Move codecs/formats checklist into Development Policy chapter

2025-05-13 Thread softworkz
From: softworkz Signed-off-by: softworkz --- doc/developer.texi | 104 +++-- 1 file changed, 53 insertions(+), 51 deletions(-) diff --git a/doc/developer.texi b/doc/developer.texi index 42e42350a5..a723d41f39 100644 --- a/doc/developer.texi +++ b/doc

[FFmpeg-devel] [PATCH v2 3/4] doc/developer: Reorder Submission procedures content

2025-05-13 Thread softworkz
From: softworkz Signed-off-by: softworkz --- doc/developer.texi | 48 -- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/doc/developer.texi b/doc/developer.texi index a723d41f39..5a026fff0e 100644 --- a/doc/developer.texi +++ b/doc

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 10:19 > >> To: FFmpeg development discussions and patches > >> Subject:

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

2025-05-16 Thread softworkz .
! > > On Fri, May 16, 2025 at 11:50:30AM +0200, Nicolas George wrote: > > softworkz . (HE12025-05-16): > > > Sadly, this is once another feature from which FFmpeg > > > developers are thinking that you should not have it. > > > > > > I have tried m

Re: [FFmpeg-devel] [PATCH 3/4] fftools/graph/graphprint: load CSS and HTML resources from ffmpeg data directories

2025-05-16 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Marton > Balint > Sent: Samstag, 17. Mai 2025 01:09 > To: ffmpeg-devel@ffmpeg.org > Cc: Marton Balint > Subject: [FFmpeg-devel] [PATCH 3/4] fftools/graph/graphprint: load CSS and > HTML resources from ffmpeg data directories > > S

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 10:43 > 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-16 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Nicolas > George > Sent: Freitag, 16. Mai 2025 11:51 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] fftools/graphprint: Now, make it a > Killer-Feature! > &

Re: [FFmpeg-devel] [PATCH 3/4] fftools/graph/graphprint: load CSS and HTML resources from ffmpeg data directories

2025-05-17 Thread softworkz .
mpeg data directories > > > > On Sat, 17 May 2025, softworkz . wrote: > > > > > > >> -Original Message- > >> From: ffmpeg-devel On Behalf Of Marton > >> Balint > >> Sent: Samstag, 17. Mai 2025 01:09 > >> To: ffmpeg-de

Re: [FFmpeg-devel] [PATCH 2/3] fftools/graphprint: Fix leak of graphprint object

2025-05-17 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Samstag, 17. Mai 2025 13:14 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 2/3] fftools/graphprint: Fix leak of graphprint > object > > --- > fftools/graph/graphprint.c | 2 ++ > 1 file chan

Re: [FFmpeg-devel] [PATCH 1/3] fftools/resources: fix preservation of intermediary resman build artifacts

2025-05-17 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Timo > Rothenpieler > Sent: Samstag, 17. Mai 2025 01:02 > To: ffmpeg-devel@ffmpeg.org > Cc: Timo Rothenpieler > Subject: [FFmpeg-devel] [PATCH 1/3] fftools/resources: fix preservation of > intermediary resman build artifacts > > W

Re: [FFmpeg-devel] [PATCH 3/3] fftools/resources: add missing extensions to .gitignore

2025-05-17 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Timo > Rothenpieler > Sent: Samstag, 17. Mai 2025 01:02 > To: ffmpeg-devel@ffmpeg.org > Cc: Timo Rothenpieler > Subject: [FFmpeg-devel] [PATCH 3/3] fftools/resources: add missing extensions > to .gitignore > > --- > fftools/resou

Re: [FFmpeg-devel] [PATCH 1/3] ffmpeg: Don't print graphs if there are no graphs to print

2025-05-17 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Samstag, 17. Mai 2025 13:14 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 1/3] ffmpeg: Don't print graphs if there are no > graphs to print > > Avoids writing an empty json blob in setup err

Re: [FFmpeg-devel] [PATCH 1/3] ffmpeg: Don't print graphs if there are no graphs to print

2025-05-17 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Samstag, 17. Mai 2025 20:19 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/3] ffmpeg: Don't print graphs if there > are no graphs to print > > On 17/

Re: [FFmpeg-devel] [PATCH 2/3] ffbuild: correctly silence and tag new css/html steps

2025-05-17 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Timo > Rothenpieler > Sent: Samstag, 17. Mai 2025 01:02 > To: ffmpeg-devel@ffmpeg.org > Cc: Timo Rothenpieler > Subject: [FFmpeg-devel] [PATCH 2/3] ffbuild: correctly silence and tag new > css/html steps > > --- > ffbuild/common.

Re: [FFmpeg-devel] [PATCH 3/3] fftools/graphprint: Fix leak of graph section header string

2025-05-17 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Samstag, 17. Mai 2025 13:14 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 3/3] fftools/graphprint: Fix leak of graph > section header string > > --- > fftools/graph/graphprint.c | 2 ++ > 1

Re: [FFmpeg-devel] [PATCH v2] ffmpeg: Don't print graphs if there are no outputs yet

2025-05-17 Thread softworkz .
n empty json blob in setup error cases. > --- > On 17/05/2025 20:08, softworkz . wrote: > > If you could resubmit without the nb_filtergraphs check that would be fine! > > Sure, here. > > Thanks, > > - Mark > > fftools/ffmpeg.c | 2 +- > 1 file changed, 1 i

Re: [FFmpeg-devel] [PATCH 3/4] fftools/graph/graphprint: load CSS and HTML resources from ffmpeg data directories

2025-05-17 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Samstag, 17. Mai 2025 19:22 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH 3/4] fftools/graph/graphprint: load CSS and > HTML resources from ffmpe

[FFmpeg-devel] [PATCH] ffbuild/commonmak: Fix rebuild check with implicit rule chains

2025-05-17 Thread softworkz
From: softworkz When there's a chain of implicit rules, make treats files generated inside that chain as intermediate files. Those intermediate files are removed after completion of make. When make is run again, it normally determines the need for a rebuild by comparing the timestamps o

Re: [FFmpeg-devel] [PATCH 1/3] fftools/resources: fix preservation of intermediary resman build artifacts

2025-05-17 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Timo > Rothenpieler > Sent: Samstag, 17. Mai 2025 01:02 > To: ffmpeg-devel@ffmpeg.org > Cc: Timo Rothenpieler > Subject: [FFmpeg-devel] [PATCH 1/3] fftools/resources: fix preservation of > intermediary resman build artifacts > > W

[FFmpeg-devel] [PATCH v2] ffbuild/commonmak: Fix rebuild check with implicit rule chains

2025-05-17 Thread softworkz
From: softworkz When there's a chain of implicit rules, make treats files generated inside that chain as intermediate files. Those intermediate files are removed after completion of make. When make is run again, it normally determines the need for a rebuild by comparing the timestamps o

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

2025-05-20 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Timothy > Allen via ffmpeg-devel > Sent: Dienstag, 20. Mai 2025 17:28 > To: ffmpeg-devel@ffmpeg.org > Cc: Timothy Allen > Subject: Re: [FFmpeg-devel] [PATCH] Accept a colon in the path of a URI, > instead of stripping preceding cha

Re: [FFmpeg-devel] [PATCH v2] ffbuild/commonmak: Fix rebuild check with implicit rule chains

2025-05-20 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Dienstag, 20. Mai 2025 23:13 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v2] ffbuild/commonmak: Fix rebuild check > with implicit rule chains > &g

[FFmpeg-devel] [PATCH v3] ffbuild/commonmak: Fix rebuild check with implicit rule chains

2025-05-20 Thread softworkz
From: softworkz When there's a chain of implicit rules, make treats files generated inside that chain as intermediate files. Those intermediate files are removed after completion of make. When make is run again, it normally determines the need for a rebuild by comparing the timestamps o

[FFmpeg-devel] Graphprint Patches Overview

2025-05-20 Thread softworkz .
leak of graphprint object X [3/3] fftools/graphprint: Fix leak of graph section header string softworkz https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=14563 X [1/5] fftools/makefile: Remove resources from ffprobe X [2/5] fftools/resources: Use .SECONDARY in Makefile comment X [

[FFmpeg-devel] Follow-Up on ML Submissions vis GitHub/FFstaging

2025-05-19 Thread softworkz .
Hello everybody, this is a follow-up to the recent discussion on IRC (https://libera.catirclogs.org/ffmpeg-devel/2025-05-16) about patch submission via https://github.com/ffstaging/FFmpeg. It involved such preposterous statements like: "you've been refusing to use proper submission procedur

Re: [FFmpeg-devel] [PATCH v2] ffbuild/commonmak: Fix rebuild check with implicit rule chains

2025-05-20 Thread softworkz .
gt; Hi, > > On Sun, May 18, 2025 at 8:30 AM softworkz wrote: > > > > From: softworkz > > > > When there's a chain of implicit rules, make treats files generated > > inside that chain as intermediate files. Those intermediate files are > >

Re: [FFmpeg-devel] [PATCH v2] ffbuild/commonmak: Fix rebuild check with implicit rule chains

2025-05-20 Thread softworkz .
gt; On Tue, May 20, 2025 at 9:46 PM softworkz . > wrote: > > > -Original Message- > > > From: ffmpeg-devel On Behalf Of Ramiro > Polla > > > Sent: Dienstag, 20. Mai 2025 21:36 > > > To: FFmpeg development discussions and patches > > > Su

Re: [FFmpeg-devel] [PATCH v2] ffbuild/commonmak: Fix rebuild check with implicit rule chains

2025-05-20 Thread softworkz .
> -Original Message- > From: softworkz > Sent: Sonntag, 18. Mai 2025 08:31 > To: ffmpeg-devel@ffmpeg.org > Cc: softworkz ; softworkz > Subject: [PATCH v2] ffbuild/commonmak: Fix rebuild check with implicit rule > chains > > From: softworkz > > When

Re: [FFmpeg-devel] [PATCH 0/3] Clean up build spam from graph css builder

2025-05-20 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Derek > Buitenhuis > Sent: Dienstag, 20. Mai 2025 20:28 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 0/3] Clean up build spam from graph css builder > > I am not sure how this made it in. > > Before: > $ rm f

Re: [FFmpeg-devel] [PATCH v2] ffmpeg: Don't print graphs if there are no outputs yet

2025-05-19 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Montag, 19. Mai 2025 22:08 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v2] ffmpeg: Don't print graphs if there are > no outputs yet > > On 18/

[FFmpeg-devel] [PATCH 1/5] fftools/makefile: Remove resources from ffprobe

2025-05-19 Thread softworkz
From: softworkz Even though it doesn't have any effect, that line is not needed (yet). Signed-off-by: softworkz --- fftools/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/fftools/Makefile b/fftools/Makefile index 361a4fd574..c1eba733da 100644 --- a/fftools/Makefile +++ b/ff

[FFmpeg-devel] [PATCH 2/5] fftools/resources: Use .SECONDARY in Makefile comment

2025-05-19 Thread softworkz
From: softworkz --- fftools/resources/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fftools/resources/Makefile b/fftools/resources/Makefile index 8579a52678..c655c9a431 100644 --- a/fftools/resources/Makefile +++ b/fftools/resources/Makefile @@ -5,7 +5,7 @@ vpath

[FFmpeg-devel] [PATCH 3/5] fftools/ffmpeg: Free print_graph option variables

2025-05-19 Thread softworkz
From: softworkz --- fftools/ffmpeg.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index bd6f22e421..de607cac93 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -344,6 +344,9 @@ static void ffmpeg_cleanup(int ret) av_freep

[FFmpeg-devel] [PATCH 4/5] fftools/graphprint: Fix memory leaks

2025-05-19 Thread softworkz
From: softworkz - uninit resource manager - free strings before overwriting - unref hw_frames_context Signed-off-by: softworkz --- fftools/graph/graphprint.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fftools/graph/graphprint.c b/fftools/graph/graphprint.c index

[FFmpeg-devel] [PATCH 5/5] fftools/tf_mermaid: Add missing uninit and fix leaks

2025-05-19 Thread softworkz
From: softworkz - merge forgotten uninit from work branch - add set_str() function to free before overwriting - fix some other leaks Signed-off-by: softworkz --- fftools/textformat/tf_mermaid.c | 45 +++-- 1 file changed, 37 insertions(+), 8 deletions(-) diff

Re: [FFmpeg-devel] [PATCH v2] ffmpeg: Don't print graphs if there are no outputs yet

2025-05-19 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Montag, 19. Mai 2025 22:08 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v2] ffmpeg: Don't print graphs if there are > no outputs yet > > On 18/

Re: [FFmpeg-devel] [PATCH v2] ffmpeg: Don't print graphs if there are no outputs yet

2025-05-18 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Sonntag, 18. Mai 2025 16:22 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v2] ffmpeg: Don't print graphs if there are > no outputs yet > > On 17/

Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Rémi Denis- > Courmont > Sent: Montag, 26. Mai 2025 10:01 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg > > Hi, > > Le 25 mai 2025 22:22:52 GMT+03:00, Michael Niedermayer > a

Re: [FFmpeg-devel] Graphprint Patches Reminder #2

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Ramiro Polla > Sent: Dienstag, 27. Mai 2025 03:48 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] Graphprint Patches Reminder #2 > > Hi, > > On Mon, May 26, 2025 at 9

Re: [FFmpeg-devel] [PATCH 4/5] ffbuild/common.mak: clean up and move fftools/resources-specific code its Makefile

2025-05-26 Thread softworkz .
code its Makefile > > On Tue, May 27, 2025 at 3:48 AM softworkz . > wrote: > > > -Original Message- > > > From: ffmpeg-devel On Behalf Of Ramiro > Polla > > > Sent: Dienstag, 27. Mai 2025 03:33 > > > To: ffmpeg-devel@ffmpeg.org > > >

Re: [FFmpeg-devel] [PATCH 4/5] ffbuild/common.mak: clean up and move fftools/resources-specific code its Makefile

2025-05-26 Thread softworkz .
Hi Ramiro, > -Original Message- > From: ffmpeg-devel On Behalf Of Ramiro Polla > Sent: Dienstag, 27. Mai 2025 03:33 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 4/5] ffbuild/common.mak: clean up and move > fftools/resources-specific code its Makefile > > - Intermediate

[FFmpeg-devel] [PATCH] MAINTAINERS: Add myself for graph printing

2025-05-26 Thread softworkz
From: softworkz ..and resources Signed-off-by: softworkz --- MAINTAINERS: Add myself for graph printing ..and resources Signed-off-by: softworkz softwo...@hotmail.com Published-As: https://github.com/ffstaging/FFmpeg/releases/tag/pr-ffstaging-87%2Fsoftworkz

Re: [FFmpeg-devel] Graphprint Patches Reminder #2

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Ramiro Polla > Sent: Dienstag, 27. Mai 2025 03:48 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] Graphprint Patches Reminder #2 > > Hi, > > On Mon, May 26, 2025 at 9

Re: [FFmpeg-devel] [PATCH 1/5] configure: remove build-time check for gzip support in zlib

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Ramiro Polla > Sent: Dienstag, 27. Mai 2025 03:33 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 1/5] configure: remove build-time check for > gzip support in zlib > > We currently test at build-time whether zlib su

Re: [FFmpeg-devel] [PATCH 4/5] ffbuild/common.mak: clean up and move fftools/resources-specific code its Makefile

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Ramiro Polla > Sent: Dienstag, 27. Mai 2025 03:33 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 4/5] ffbuild/common.mak: clean up and move > fftools/resources-specific code its Makefile > > - Intermediate files are

Re: [FFmpeg-devel] When to add 'Reviewed-by: xxx' in commit messages

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Samstag, 3. Mai 2025 11:32 > To: FFmpeg development discussions and patches > Subject: [FFmpeg-devel] When to add 'Reviewed-by: xxx' in commit messages > > Hello everybody

Re: [FFmpeg-devel] [PATCH 4/5] ffbuild/common.mak: clean up and move fftools/resources-specific code its Makefile

2025-05-26 Thread softworkz .
code its Makefile > > On Tue, May 27, 2025 at 4:11 AM softworkz . > wrote: > > > -Original Message- > > > From: ffmpeg-devel On Behalf Of Ramiro > Polla > > > Sent: Dienstag, 27. Mai 2025 03:33 > > > To: ffmpeg-devel@ffmpeg.org > > >

Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Rémi Denis- > Courmont > Sent: Montag, 26. Mai 2025 13:26 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg > > Hi, > > Le 26 mai 2025 12:27:17 GMT

Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Montag, 26. Mai 2025 13:37 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg > > Hi softworkz > > On Mon, Ma

[FFmpeg-devel] Graphprint Patches Reminder #2

2025-05-26 Thread softworkz .
Hi, if there are no objections, I would apply the patches below tomorrow evening. Please let me know when you need more time or you have any concerns. Note: The last one has been updated (v4) to always keep .ptx files (as requested by Timo Rothenpieler). Thanks sw [2/3] ffbuild: correctly sil

Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Montag, 26. Mai 2025 19:21 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg > > Hi > > On Mon, May 26, 2025 at 12:21

Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Montag, 26. Mai 2025 23:00 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg > > Hi sw > > On Mon, May 26, 2025

Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of softworkz . > Sent: Montag, 26. Mai 2025 23:10 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg > > > > > -Original Message- > &

Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Montag, 26. Mai 2025 19:21 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg > > Hi > > On Mon, May 26, 2025 at 12:21

Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg

2025-05-26 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Montag, 26. Mai 2025 13:37 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [ANNOUNCEMENT] almpeg > > Hi softworkz > > On Mon, Ma

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

2025-05-25 Thread softworkz .
gt; > Le perjantaina 16. toukokuuta 2025, 1.19.15 Itä-Euroopan kesäaika softworkz . > a écrit : > > of course I understand that. > > But it isn't constructed from untrusted input. > > You're being ridiculous. `system()` has a long history of causign bugs, many >

<    5   6   7   8   9   10   11   >