Re: [FFmpeg-devel] Worsening messages

2024-12-26 Thread Niklas Haas
On Thu, 26 Dec 2024 22:06:11 -0300 James Almer wrote: > On 12/26/2024 9:51 PM, Niklas Haas wrote: > > On Thu, 26 Dec 2024 15:59:06 -0300 James Almer wrote: > >> On 12/26/2024 12:07 PM, Kieran Kunhya wrote: > >>> On Wed, Dec 25, 2024 at 1:31 PM Michael Niedermayer > >>> wrote: > > Hi Co

Re: [FFmpeg-devel] Worsening messages

2024-12-26 Thread James Almer
On 12/26/2024 9:51 PM, Niklas Haas wrote: On Thu, 26 Dec 2024 15:59:06 -0300 James Almer wrote: On 12/26/2024 12:07 PM, Kieran Kunhya wrote: On Wed, Dec 25, 2024 at 1:31 PM Michael Niedermayer wrote: Hi Community, Community Commitee, Moderators Your removal of this message as of 1504 GMT

Re: [FFmpeg-devel] Worsening messages

2024-12-26 Thread Niklas Haas
On Thu, 26 Dec 2024 15:59:06 -0300 James Almer wrote: > On 12/26/2024 12:07 PM, Kieran Kunhya wrote: > > On Wed, Dec 25, 2024 at 1:31 PM Michael Niedermayer > > wrote: > >> > >> Hi Community, Community Commitee, Moderators > >> > > > > Your removal of this message as of 1504 GMT 26/12/2024 is co

[FFmpeg-devel] [PATCH] avformat/dashdec: check NULL pointer of av_strtok

2024-12-26 Thread Steven Liu
fix CID: 1637073 there maybe have NULL pointer return by av_strtok, and should be checked before strtoll it. Signed-off-by: Steven Liu --- libavformat/dashdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 8107280444..043cd52232 100644

Re: [FFmpeg-devel] [PATCH v2] Add SRV3 decoder/demuxer

2024-12-26 Thread fishhh
instructions on how to obtain a srv3 sample file would be helpful too. this is so we can actually test your patch. downloading the file from YouTube is probably the easiest way, you can achieve this by the means of yt-dlp like this: yt-dlp --skip-download --write-subs --sub-langs en --sub-format

Re: [FFmpeg-devel] [PATCH] configure: Include quotes around pkg_version

2024-12-26 Thread J Shiff
On Wed, Dec 25, 2024 at 5:03 PM Alexander Strasser via ffmpeg-devel wrote: > > On 2024-12-21 19:29 -0500, J Shiff wrote: > > On Sat, Dec 21, 2024 at 5:44 PM Alexander Strasser via ffmpeg-devel > > wrote: > > > > > > On 2024-12-16 16:19 -0500, Joe Schiffler wrote: > > > > Since $pkg_version includ

Re: [FFmpeg-devel] [PATCH v4] avcodec/h264: fix stride calculation in slice_table for multi-slice field video deblocking

2024-12-26 Thread Thilo Borgmann via ffmpeg-devel
Am 24.12.24 um 11:35 schrieb Lingyi Kong: fix for https://trac.ffmpeg.org/ticket/11360 A new fate test case is added to validate the fix, the smaple file is located at https://trac.ffmpeg.org/attachment/ticket/11360/slice2_field_aurora4.264. Uploaded. You can send requests for future file u

Re: [FFmpeg-devel] Worsening messages

2024-12-26 Thread James Almer
On 12/26/2024 12:07 PM, Kieran Kunhya wrote: On Wed, Dec 25, 2024 at 1:31 PM Michael Niedermayer wrote: Hi Community, Community Commitee, Moderators Your removal of this message as of 1504 GMT 26/12/2024 is completely unacceptable with one days notice posted on a public holiday in most coun

Re: [FFmpeg-devel] [FFmpeg-cvslog] avcodec/libx265: ignore user set alpha x265-param

2024-12-26 Thread James Almer
On 12/26/2024 3:35 PM, Zhao Zhili wrote: 在 2024年12月27日,上午12:42,James Almer 写道: ffmpeg | branch: master | James Almer | Thu Dec 26 13:41:04 2024 -0300| [7e778586e7efceacae33b12b9b3673838060f8f2] | committer: James Almer avcodec/libx265: ignore user set alpha x265-param It makes no differ

Re: [FFmpeg-devel] [FFmpeg-cvslog] avcodec/libx265: ignore user set alpha x265-param

2024-12-26 Thread Zhao Zhili
> 在 2024年12月27日,上午12:42,James Almer 写道: > > ffmpeg | branch: master | James Almer | Thu Dec 26 > 13:41:04 2024 -0300| [7e778586e7efceacae33b12b9b3673838060f8f2] | committer: > James Almer > > avcodec/libx265: ignore user set alpha x265-param > > It makes no difference when the input has an

[FFmpeg-devel] [PATCH 4/4] avcodec/ac3dec: set preferred_stereo_downmix using the relevant coded value

2024-12-26 Thread James Almer
Signed-off-by: James Almer --- libavcodec/ac3dec.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index e5b52c577f..a796ddf44e 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -1611,6 +1611,20 @@ dependent_frame:

[FFmpeg-devel] [PATCH 3/4] avcodec/ac3dec_float: fix range for dmix_mode

2024-12-26 Thread James Almer
Value 3 is used to signal "Dolby Pro Logic II" by some encoders. Signed-off-by: James Almer --- libavcodec/ac3dec_float.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ac3dec_float.c b/libavcodec/ac3dec_float.c index d1a48349e5..53d9d472c4 100644 --- a/libavcodec

[FFmpeg-devel] [PATCH 2/4] avcodec/ac3dec_float: define the downmix related options as exported and read-only

2024-12-26 Thread James Almer
They are not user settable options. Signed-off-by: James Almer --- libavcodec/ac3dec_float.c | 11 ++- tests/ref/fate/ts-demux | 4 ++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/libavcodec/ac3dec_float.c b/libavcodec/ac3dec_float.c index d94070bc0c..d1a48349e5 10

[FFmpeg-devel] [PATCH 1/4] avcodec/ac3dec: set ltrt_center_mix and ltrt_surround_mix using the relevant coded values

2024-12-26 Thread James Almer
Signed-off-by: James Almer --- libavcodec/ac3dec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 3cc20f32a9..e5b52c577f 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -1609,8 +1609,8 @@ dependent_frame:

Re: [FFmpeg-devel] [PATCH v4 1/2] avcodec/libjxl: add animated JPEG XL encoder

2024-12-26 Thread Marth64
Got it. Thanks for the context. No objections from me. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubsc

Re: [FFmpeg-devel] Worsening messages

2024-12-26 Thread Kieran Kunhya via ffmpeg-devel
On Wed, Dec 25, 2024 at 1:31 PM Michael Niedermayer wrote: > > Hi Community, Community Commitee, Moderators > Your removal of this message as of 1504 GMT 26/12/2024 is completely unacceptable with one days notice posted on a public holiday in most countries. Furthermore, you make regular allegati

Re: [FFmpeg-devel] [PATCH 2/4] doc/community: Add list of prohibited behaviors

2024-12-26 Thread Kieran Kunhya via ffmpeg-devel
On Wed, Dec 25, 2024 at 4:27 AM Michael Niedermayer wrote: > > Signed-off-by: Michael Niedermayer > --- > doc/community.texi | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/doc/community.texi b/doc/community.texi > index 97a49f15ede..0bc8893f0e8 100644 > --- a/doc/community.texi >

Re: [FFmpeg-devel] [PATCH] doc/ffmpeg.texi: replace use of uncommon unicode characters

2024-12-26 Thread Alexander Strasser via ffmpeg-devel
Hi James! On 2024-12-25 20:54 -0300, James Almer wrote: > Addresses ticket #11372 > > Signed-off-by: James Almer > --- > doc/ffmpeg.texi | 64 - > 1 file changed, 32 insertions(+), 32 deletions(-) > LGTM (mabye one of documentation maintainers als

Re: [FFmpeg-devel] matroskadec: support S_TEXT/WEBVTT

2024-12-26 Thread Wang Bin
Leo Izen 于2024年12月26日周四 00:45写道: > On 12/25/24 3:46 AM, Wang Bin wrote: > > On 12/19/24 3:59 AM, Wang Bin wrote: > >>> based on Hendrik Leppkes's fork > >>> > >>> > >>> ___ > >>> ffmpeg-devel mailing list > >>> ffmpeg-devel@ffmpeg.org > >>> https://ffmp

Re: [FFmpeg-devel] Fwd: Your message to ffmpeg-devel awaits moderator approval

2024-12-26 Thread Nicolas George
Anton Khirnov (12024-12-24): > So boiling down your verbal vomit, I get > * you are delusional This kind of is unacceptable. Especially from somebody who recently volunteered to judge over other people's civility. -- Nicolas George ___ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 1/4] avformat/vqf: Check avio_read() in add_metadata()

2024-12-26 Thread Marton Balint
On Thu, 26 Dec 2024, Michael Niedermayer wrote: Fixes: use of uninitialized data Fixes: 383825642/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5380168801124352 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael

Re: [FFmpeg-devel] [PATCH] ffmpeg_sched: return better error code

2024-12-26 Thread Gyan Doshi
On 2024-12-25 09:27 am, Gyan Doshi wrote: On 2024-12-21 09:55 am, Gyan Doshi wrote: The existing code of 'No space left on device' leaves end users confused since the issue isn't of disk space. Plan to push tomorrow. Pushed as fe04b93afae27351d421bf0b1bf1a6b702adc3c6 Regards, Gyan ___

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Fix precedence issue in abs_start_seek calculation

2024-12-26 Thread Gyan Doshi
On 2024-12-26 09:34 am, Gyan Doshi wrote: On 2024-12-26 05:09 am, Pradeep Kumar Goudagunta wrote: This patch corrects a C operator precedence issue in fftools/ffmpeg_opt.c where the abs_start_seek calculation did not yield the expected result due to incorrect placement of parentheses. Ye