Re: [FFmpeg-devel] [ANNOUNCE] upcoming vote: extra members for GA v2

2023-11-18 Thread Anton Khirnov
Reminder that the vote starts tomorrow. Quoting Anton Khirnov (2023-11-17 10:40:06) > The list of candidates I have so far is: > * Ronald Bultje > * Alexander Strasser > * Hendrik Leppkes > * Reimar Döffinger > * Baptiste Coudurier > (hope I haven't missed anyone, please tell me if I did) > > If

[FFmpeg-devel] [PATCH] lavfilter/af_loudnorm: fix loudnorm limiter invalid at final frame

2023-11-18 Thread shu coon
Signed-off-by: 萧辰琨 --- libavfilter/af_loudnorm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavfilter/af_loudnorm.c b/libavfilter/af_loudnorm.c index d83398ae2a..b8c10285ca 100644 --- a/libavfilter/af_loudnorm.c +++ b/libavfilter/af_loudnorm.c @@ -570,10 +570,10 @@

Re: [FFmpeg-devel] [PATCH] avformat: add MMTP parser and MMT/TLV demuxer

2023-11-18 Thread SuperFashi
Hi, is there anything I could do to push this forward? On Sun, Nov 12, 2023 at 19:02 SuperFashi wrote: > This patch adds an MPEG Media Transport Protocol (MMTP) parser, as defined > in ISO/IEC 23008-1, and an MMT protocol over TLV packets (MMT/TLV) demuxer, > as defined in ARIB STD-B32.

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/qsv: add sps pps header whenframe->key_frame is true

2023-11-18 Thread Reito via ffmpeg-devel
Hi, I'm new to here, what else should I do to finish this patch? Also, does another patch (PATCH 2/2 avcodec/amf) also need your signature? Thanks 发自我的iPhone -- Original -- From: Michael Niedermayer https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To

Re: [FFmpeg-devel] [PATCH] checkasm: add test for dcmul_add

2023-11-18 Thread flow gg
From 2785ce57f68dbb2373c951b9432afa73796f7cc1 Mon Sep 17 00:00:00 2001 From: sunyuechi Date: Sat, 18 Nov 2023 10:58:17 +0800 Subject: [PATCH] checkasm: test for dcmul_add --- tests/checkasm/af_afir.c | 141 +++ 1 file changed, 98 insertions(+), 43

[FFmpeg-devel] [PATCH 2/2] riscv: add hwprobe() for CPU detection

2023-11-18 Thread Rémi Denis-Courmont
This adds the Linux-specific system call to detect CPU features. Unlike the auxillary vector, this supports extension other than single lettered ones. (The API is kind of a mess though.) At the moment, we need this to detect Zba and Zbb at run-time. --- configure | 5 +

[FFmpeg-devel] [PATCH 1/2] riscv: indent code

2023-11-18 Thread Rémi Denis-Courmont
This reindents code to prepare for the next changeset. No functional changes. --- libavutil/riscv/cpu.c | 28 +++- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/libavutil/riscv/cpu.c b/libavutil/riscv/cpu.c index 460d3e9f91..984293aef0 100644 ---

Re: [FFmpeg-devel] [PATCH] lavfi/Makefile: fix vf_cropdetect missed edge_common

2023-11-18 Thread Stefano Sabatini
On date Saturday 2023-11-18 10:26:07 +0800, Jun Zhao wrote: > fix #10664 > > vf_cropdetect depends on edge_common, it's missing in Makefile > > Signed-off-by: Jun Zhao > --- > libavfilter/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks.

Re: [FFmpeg-devel] [PATCH] treewide: Spelling fixes

2023-11-18 Thread Stefano Sabatini
On date Friday 2023-11-10 16:41:54 +0100, ffmpeg-devel Mailing List wrote: > Fix spelling issue as reported by Debian's lintian tool: > accomodate -> accommodate > addtional -> additional > auxillary -> auxiliary > bellow -> below > betweeen -> between > Calulate -> Calculate > coefficents ->

[FFmpeg-devel] Vote Investigation of "GA voters list updates E_029f7195fed7aadf"

2023-11-18 Thread Michael Niedermayer
Hi all This are the results of my investigation of issues in "Poll: GA voters list updates E_029f7195fed7aadf" This has been reviewed by Alexander and Anton and comments from them have been incorporated. It has also been shown to jb and Thilo at the same time as Alexander and Anton, but no

[FFmpeg-devel] [PATCH] avformat/movenc: fix safari cannot play generated hls due to empty sdtp atom

2023-11-18 Thread Jay Zhang
This issue can be reproduced by command 'ffmpeg -i small_bunny_1080p_60fps.mp4 -an -c:v libx265 -tag:v hvc1 -f hls -hls_segment_type fmp4 out.m3u8'. After remove the empty sdtp atom, safari can play the out.m3u8 properly. Signed-off-by: Jay Zhang --- libavformat/movenc.c | 2 +- 1 file

Re: [FFmpeg-devel] [PATCH 2/2] avformat/flvenc: add extract_extradata bsf for new video codecs

2023-11-18 Thread Steven Liu
> 在 2023年11月18日,16:03,Zhao Zhili 写道: > > From: Zhao Zhili > > When encoders don't support global header like MediaCodec, FLV > muxer needs to add extract_extradata bsf automatically. The codec > list doesn't include VP9 since it's not supported by > extract_extradata. > > Signed-off-by:

[FFmpeg-devel] [PATCH 2/2] avformat/flvenc: add extract_extradata bsf for new video codecs

2023-11-18 Thread Zhao Zhili
From: Zhao Zhili When encoders don't support global header like MediaCodec, FLV muxer needs to add extract_extradata bsf automatically. The codec list doesn't include VP9 since it's not supported by extract_extradata. Signed-off-by: Zhao Zhili --- libavformat/flvenc.c | 2 ++ 1 file changed,

[FFmpeg-devel] [PATCH 1/2] avcodec/mediacodecdec: fix return EAGAIN after EOF

2023-11-18 Thread Zhao Zhili
From: Zhao Zhili Signed-off-by: Zhao Zhili --- libavcodec/mediacodecdec_common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/mediacodecdec_common.c b/libavcodec/mediacodecdec_common.c index 1151bb71f9..d6f91e6e89 100644 --- a/libavcodec/mediacodecdec_common.c +++