Re: [FFmpeg-devel] [PATCH 4/4] avformat/psxstr: basic FPS detection instead of fixed value

2024-01-08 Thread aybe aybe
Let's see if I've got it right: pasting patch down there should make patchwork pick it up automatically and do its magic :) Signed-off-by: aybe mailto:a...@users.noreply.github.com>> --- tests/ref/fate/psx-str-demux | 162 +-- 1 file changed, 81 insertions(+), 81

[FFmpeg-devel] [PATCH] avutil/pixfmt: fix AV_PIX_FMT_RGB8 description

2024-01-08 Thread Jeffrey Knockel
Previously the description was partially mistaken, explaining the format as RGB 3:3:2, (msb)2R 3G 3B(lsb). While the RGB 3:3:2 part is correct, the latter part should be: (msb)3R 3G 2B(lsb). The corresponding bit masks are red: 0xE0, green: 0x1C, blue: 0x03. Signed-off-by: Jeffrey Knockel --- l

Re: [FFmpeg-devel] [PATCH 04/35] avcodec/proresenc_anatoliy: move run/lev to codebook LUT to shared proresdata

2024-01-08 Thread Clément Bœsch
On Tue, Dec 12, 2023 at 09:02:23AM +0100, Stefano Sabatini wrote: > On date Monday 2023-12-11 02:35:05 +0100, Clément Bœsch wrote: > > This is going to be shared with proresenc_kostya in the upcoming commit. > > --- > > libavcodec/proresdata.c | 6 ++ > > libavcodec/proresdata.h

[FFmpeg-devel] [PATCH] MAINTAINERS: add my new PGP key

2024-01-08 Thread Leo Izen
Patch attached, this email signed with my previous key. - Leo Izen (Traneptora) From 09ee68f816d1d2c39097515cedca69031251aa4f Mon Sep 17 00:00:00 2001 From: Leo Izen Date: Mon, 8 Jan 2024 14:01:59 -0500 Subject: [PATCH] MAINTAINERS: add my new PGP key Adding my new gpg key that I will be using

[FFmpeg-devel] [PATCH 1/2] doc/muxers: add argo_cvg

2024-01-08 Thread Stefano Sabatini
--- doc/muxers.texi | 21 + 1 file changed, 21 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index 813dfbb4a9..c5a9b11f9c 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -712,6 +712,27 @@ Embed file name into file, if not specified use the output file na

[FFmpeg-devel] [PATCH 2/2] doc/muxers/asf: extend and apply consistency fixes

2024-01-08 Thread Stefano Sabatini
Mention asf_stream variant, and clarify the unit used for the packet_size option. --- doc/muxers.texi | 18 -- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index c5a9b11f9c..db359916fe 100644 --- a/doc/muxers.texi +++ b/doc/muxer

Re: [FFmpeg-devel] [PATCH v2] doc/faq: Use texi's @tie instead of 0xA0 for non-breaking space

2024-01-08 Thread Stefano Sabatini
On date Sunday 2024-01-07 09:29:24 -0600, Marth64 wrote: > Nice find! Updated. Looks good here when rendered to HTML. > > Signed-off-by: Marth64 > --- > doc/faq.texi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doc/faq.texi b/doc/faq.texi > index 5998e0d000..477cc605

[FFmpeg-devel] [PATCH] doc/muxers: add ass

2024-01-08 Thread Stefano Sabatini
--- doc/muxers.texi | 13 + 1 file changed, 13 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index db359916fe..949b55c593 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -751,6 +751,19 @@ source. Default value is @code{3200}, minimum is @code{100}, maximum is @c

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/proresenc_anatoliy: use a compatible bitstream version

2024-01-08 Thread Stefano Sabatini
On date Sunday 2024-01-07 19:16:43 +0100, Clément Bœsch wrote: > Quoting SMPTE RDD 36:2015: > A decoder shall abort if it encounters a bitstream with an unsupported > bitstream_version value. If 0, the value of the chroma_format syntax > element shall be 2 (4:2:2 sampling) and the value of th

Re: [FFmpeg-devel] [PATCH 2/5] avcodec/proresenc_kostya: use a compatible bitstream version

2024-01-08 Thread Stefano Sabatini
On date Sunday 2024-01-07 19:16:44 +0100, Clément Bœsch wrote: > Quoting SMPTE RDD 36:2015: > A decoder shall abort if it encounters a bitstream with an unsupported > bitstream_version value. If 0, the value of the chroma_format syntax > element shall be 2 (4:2:2 sampling) and the value of th

Re: [FFmpeg-devel] [PATCH 3/5] avcodec/proresenc_kostya: do not write into alpha reserved bitfields

2024-01-08 Thread Stefano Sabatini
On date Sunday 2024-01-07 19:16:45 +0100, Clément Bœsch wrote: > This byte represents 4 reserved bits followed by 4 alpha_channel_type bits. > > alpha_channel_type currently has 3 differents defined values: 0 (no > alpha), 1 (8b alpha), and 2 (16b alpha), all the other values are > reserved. This

Re: [FFmpeg-devel] [PATCH 4/5] avcodec/proresenc_anatoliy: do not write into alpha reserved bitfields

2024-01-08 Thread Stefano Sabatini
On date Sunday 2024-01-07 19:16:46 +0100, Clément Bœsch wrote: > This byte represents 4 reserved bits followed by 4 alpha_channel_type bits. > > alpha_channel_type currently has 3 differents defined values: 0 (no > alpha), 1 (8b alpha), and 2 (16b alpha), all the other values are > reserved. The 4

Re: [FFmpeg-devel] [PATCH 3/5] avcodec/proresenc_kostya: do not write into alpha reserved bitfields

2024-01-08 Thread Clément Bœsch
On Mon, Jan 08, 2024 at 09:10:09PM +0100, Stefano Sabatini wrote: > On date Sunday 2024-01-07 19:16:45 +0100, Clément Bœsch wrote: > > This byte represents 4 reserved bits followed by 4 alpha_channel_type bits. > > > > alpha_channel_type currently has 3 differents defined values: 0 (no > > alpha),

Re: [FFmpeg-devel] [PATCH 4/5] avcodec/proresenc_anatoliy: do not write into alpha reserved bitfields

2024-01-08 Thread Clément Bœsch
On Mon, Jan 08, 2024 at 09:23:05PM +0100, Stefano Sabatini wrote: > On date Sunday 2024-01-07 19:16:46 +0100, Clément Bœsch wrote: > > This byte represents 4 reserved bits followed by 4 alpha_channel_type bits. > > > > alpha_channel_type currently has 3 differents defined values: 0 (no > > alpha),

[FFmpeg-devel] [PATCH] web/index: fix invalid line-break (BR) tags

2024-01-08 Thread Marth64
Signed-off-by: Marth64 --- src/index | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/index b/src/index index 98cc516..a949270 100644 --- a/src/index +++ b/src/index @@ -113,11 +113,11 @@ Internally, we have had a number of changes too. The FFT,

[FFmpeg-devel] [PATCH] web/index: fix dangling/improper paragraph (P) tag

2024-01-08 Thread Marth64
--- src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index b/src/index index a949270..1d74e8c 100644 --- a/src/index +++ b/src/index @@ -147,7 +147,7 @@ The functionality will be included in stable branches with the release of version 6.1, due to be rele

[FFmpeg-devel] [PATCH] web/index: fix dangling/improper paragraph (P) tag (2)

2024-01-08 Thread Marth64
Signed-off-by: Marth64 --- src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index b/src/index index 1d74e8c..4b01f55 100644 --- a/src/index +++ b/src/index @@ -146,7 +146,7 @@ https://git.videolan.org/?p=ffmpeg.git;a=summary";>repository is required. Th

[FFmpeg-devel] [PATCH] web/index: fix unclosed SMALL tag

2024-01-08 Thread Marth64
Signed-off-by: Marth64 --- src/template_footer1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/template_footer1 b/src/template_footer1 index 4fce551..6722421 100644 --- a/src/template_footer1 +++ b/src/template_footer1 @@ -1,5 +1,5 @@ - Hosting provided by http

[FFmpeg-devel] [PATCH] web/template_head2: fix broken anchor on 'Contribute' link

2024-01-08 Thread Marth64
Signed-off-by: Marth64 --- src/template_head2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/template_head2 b/src/template_head2 index 7ba634b..102fac0 100644 --- a/src/template_head2 +++ b/src/template_head2 @@ -34,7 +34,7 @@ Developers

[FFmpeg-devel] [PATCH] web/README: add missing dependency clean-css

2024-01-08 Thread Marth64
Signed-off-by: Marth64 --- README | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index 5076719..4b1ce67 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ ffmpeg.org official website GENERATE THE WEBSITE -`lessc` is required to gen

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/vvcdec: deblock, fix uninitialized values

2024-01-08 Thread Nuo Mi
On Sun, Jan 7, 2024 at 12:43 PM Nuo Mi wrote: > see > https://fate.ffmpeg.org/report.cgi?slot=x86_64-archlinux-gcc-valgrind&time=20240105201935 > > If tc is zero, the max_len_q, max_len_p are uninitialized. > > Reported-by: James Almer > Hi James, Could you help try and review this? Thank you >

Re: [FFmpeg-devel] [PATCH v2 4/4] vvcdec: reuse h26x/h2656_deblock_template.c

2024-01-08 Thread Nuo Mi
On Sat, Jan 6, 2024 at 6:52 PM Nuo Mi wrote: > --- > libavcodec/vvc/vvc_filter_template.c | 82 +--- > 1 file changed, 3 insertions(+), 79 deletions(-) > > diff --git a/libavcodec/vvc/vvc_filter_template.c > b/libavcodec/vvc/vvc_filter_template.c > index 9418980c33..671ed

Re: [FFmpeg-devel] [PATCH v2 4/4] vvcdec: reuse h26x/h2656_deblock_template.c

2024-01-08 Thread Ronald S. Bultje
Hi, On Mon, Jan 8, 2024 at 8:03 PM Nuo Mi wrote: > On Sat, Jan 6, 2024 at 6:52 PM Nuo Mi wrote: > > > --- > > libavcodec/vvc/vvc_filter_template.c | 82 +--- > > 1 file changed, 3 insertions(+), 79 deletions(-) > > > > diff --git a/libavcodec/vvc/vvc_filter_template.c >

Re: [FFmpeg-devel] [PATCH] configure: autodetect libdrm

2024-01-08 Thread Xiang, Haihao
On Vr, 2024-01-05 at 15:58 +0800, Zhao Zhili wrote: > > > > On Dec 29, 2023, at 12:23, Xiang, Haihao > > wrote: > > > > From: Haihao Xiang > > > > option kernel_driver for vaapi device creation can be used to choose the > > desired device on Linux, which is more convenient than DRM render nod

[FFmpeg-devel] [PATCH] avutil/eval: Use even better PRNG

2024-01-08 Thread Michael Niedermayer
This is the 64bit version of Chris Doty-Humphreys SFC64 Compared to the LCGs these produce much better quality numbers. Compared to LFGs this needs less state. (our LFG has 224 byte state for its 32bit version) this has 32byte state Also the initialization for our LFG is slower. This is also much

Re: [FFmpeg-devel] [PATCH v2 4/4] vvcdec: reuse h26x/h2656_deblock_template.c

2024-01-08 Thread Nuo Mi
On Tue, Jan 9, 2024 at 9:23 AM Ronald S. Bultje wrote: > Hi, > > On Mon, Jan 8, 2024 at 8:03 PM Nuo Mi wrote: > > > On Sat, Jan 6, 2024 at 6:52 PM Nuo Mi wrote: > > > > > --- > > > libavcodec/vvc/vvc_filter_template.c | 82 +--- > > > 1 file changed, 3 insertions(+), 79

Re: [FFmpeg-devel] [PATCH] lavu/thread: add support for setting thread name on *bsd and solaris

2024-01-08 Thread Brad Smith
On 2024-01-06 12:27 p.m., Michael Niedermayer wrote: On Wed, Jan 03, 2024 at 11:19:56PM -0500, Brad Smith wrote: lavu/thread: add support for setting thread name on *bsd and solaris FreeBSD/DragonFly/Solaris use pthread_setname_np(). OpenBSD uses pthread_set_name_np(). Signed-off-by: Brad Smi

[FFmpeg-devel] [PATCH 2/2] fftools/ffplay_renderer: Add device selection support

2024-01-08 Thread Zhao Zhili
From: Zhao Zhili The device can be selected by GPU name or index. For example, ffplay -hwaccel cuda \ -vulkan_params device="NVIDIA GeForce RTX 3060" \ foo.mp4 ffplay -hwaccel cuda -vulkan_params device="0" foo.mp4 Please note that select device by index only supported by hwcon

[FFmpeg-devel] [PATCH 1/2] fftools/ffplay: fix missing hw_frames_ctx when config avfilter

2024-01-08 Thread Zhao Zhili
From: Zhao Zhili --- fftools/ffplay.c | 9 + 1 file changed, 9 insertions(+) diff --git a/fftools/ffplay.c b/fftools/ffplay.c index 17861e60be..3c378bca2c 100644 --- a/fftools/ffplay.c +++ b/fftools/ffplay.c @@ -1858,6 +1858,10 @@ static int configure_video_filters(AVFilterGraph *graph,