Re: [FFmpeg-devel] [PATCH v8 1/1] avformat: Add IPFS protocol support.

2022-03-09 Thread Michael Niedermayer
On Wed, Mar 09, 2022 at 01:30:30AM +0100, Mark Gaiser wrote: > On Wed, Mar 9, 2022 at 12:45 AM Michael Niedermayer > wrote: > > > On Tue, Mar 08, 2022 at 01:49:22PM +0100, Mark Gaiser wrote: > > > On Fri, Mar 4, 2022 at 7:09 PM Michael Niedermayer < > > mich...@niedermayer.cc> > > > wrote: > > >

[FFmpeg-devel] [PATCH] avformat/flvdec: fix mismatch on timestamp wrap point

2022-03-09 Thread Zhao Zhili
Change the wrap point to 2^31 to match flvenc muxer. For other flv muxers which treat timestamp as uint32_t, it should be handled by wrap_timestamp(). For muxers which treat timestamp as int32_t and create negative timestamp, they are broken before the patch. --- libavformat/flvdec.c | 8 ++--

Re: [FFmpeg-devel] [PATCH] avfilter/vf_blend_vulkan: add addition blend mode

2022-03-09 Thread Wu Jianhua
Ping. >From: Wu, Jianhua >Sent: 2022年2月25日 21:11 >To: ffmpeg-devel@ffmpeg.org >Subject: [FFmpeg-devel] [PATCH] avfilter/vf_blend_vulkan: add addition blend >mode > >[PATCH 01/10] avfilter/vf_blend_vulkan: add addition blen

[FFmpeg-devel] [PATCH] aarch64: Only emit the PAC/BTI note section when targeting ELF

2022-03-09 Thread Martin Storsjö
This avoids build errors if such features are enabled while targeting another binary format. (Using such features on other platforms might require some other form of signaling/setup though, but the ELF specific .note section isn't applicable at least.) Signed-off-by: Martin Storsjö --- libavutil

[FFmpeg-devel] [PATCH] Allow to modify max qp configuration parameter in libvpx without reseting the encoder

2022-03-09 Thread Danil Chapovalov
Signed-off-by: Danil Chapovalov --- libavcodec/libvpxenc.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index 8f94ba15dc..45baeed435 100644 --- a/libavcodec/libvpxenc.c +++ b/libavcodec/libvpxenc.c @@ -1658,6 +1658,13 @@ static int vpx

Re: [FFmpeg-devel] [PATCH] arm64: Add Armv8.3-A PAC support to assembly files

2022-03-09 Thread Martin Storsjö
On Tue, 22 Feb 2022, Martin Storsjö wrote: On Mon, 14 Feb 2022, Andre Kempe wrote: This patch adds optional support for Arm Pointer Authentication Codes. PAC support is turned on or off at compile time using additional compiler flags. Unless any of these is enabled explicitly, no additional c

[FFmpeg-devel] [PATCH] avformat/flvenc: fix pts_wrap_bits

2022-03-09 Thread Zhao Zhili
put_timestamp() only use 31 bits. --- libavformat/flvenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index 66c530a2ff..ef3d3cd60f 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -673,7 +673,7 @@ static int flv_in

[FFmpeg-devel] [PATCH] Attach quantizer parameter to an encoded frame in libvpx wrapper

2022-03-09 Thread Danil Chapovalov
Signed-off-by: Danil Chapovalov --- libavcodec/libvpxenc.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index 8f94ba15dc..581282682c 100644 --- a/libavcodec/libvpxenc.c +++ b/libavcodec/libvpxenc.c @@ -1247,6 +1247,7 @

[FFmpeg-devel] [PATCH] avutil/hwcontext_vulkan: fix typo in undef

2022-03-09 Thread Zhao Zhili
--- libavutil/hwcontext_vulkan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index 0c942fbc96..237caa4bc0 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vulkan.c @@ -1054,7 +1054,7 @@ static in

[FFmpeg-devel] [PATCH] avfilter: add Audio Video Sync Test filter

2022-03-09 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/src_avsynctest.c | 399 +++ 3 files changed, 401 insertions(+) create mode 100644 libavfilter/src_avsynctest.c diff --git a/libavfilter/Makefil

Re: [FFmpeg-devel] [PATCH] avfilter: Added siti filter

2022-03-09 Thread Paul B Mahol
On 3/8/22, Thilo Borgmann wrote: > Am 07.03.22 um 20:06 schrieb Paul B Mahol: >> On 3/7/22, Thilo Borgmann wrote: >>> Am 06.03.22 um 22:25 schrieb Paul B Mahol: On 3/6/22, Thilo Borgmann wrote: > Am 22.02.22 um 12:30 schrieb Thilo Borgmann: >> Am 18.02.22 um 17:08 schrieb Paul B Mah

Re: [FFmpeg-devel] [PATCH] avfilter/vf_blend_vulkan: add addition blend mode

2022-03-09 Thread Lynne
9 Mar 2022, 12:57 by toq...@outlook.com: > Ping. > > >From: Wu, Jianhua > >Sent: 2022年2月25日 21:11 > >To: ffmpeg-devel@ffmpeg.org > >Subject: [FFmpeg-devel] [PATCH] avfilter/vf_blend_vulkan: add addition blend > >mode > >>

[FFmpeg-devel] [PATCH v2] avcodec: Add dv marker bsf

2022-03-09 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- doc/bitstream_filters.texi | 30 libavcodec/Makefile | 1 + libavcodec/bitstream_filters.c | 1 + libavcodec/dv_error_marker_bsf.c | 127 +++ 4 files changed, 159 insertions(+) create mode 10064

Re: [FFmpeg-devel] [PATCH] avfilter/vf_blend_vulkan: add addition blend mode

2022-03-09 Thread Wu Jianhua
Lynne: >Sent: 2022年3月10日 1:43 >To: FFmpeg development discussions and patches >Subject: Re: [FFmpeg-devel] [PATCH] avfilter/vf_blend_vulkan: add addition >blend mode > > >> Ping. >> >>>From: Wu, Jianhua

Re: [FFmpeg-devel] [PATCH 3/3] avformat/movenc: Add support for AVIF muxing

2022-03-09 Thread Vignesh Venkatasubramanian
On Fri, Mar 4, 2022 at 9:54 AM Vignesh Venkatasubramanian wrote: > > On Fri, Mar 4, 2022 at 3:24 AM James Almer wrote: > > > > On 3/3/2022 4:16 PM, Vignesh Venkatasubramanian wrote: > > > Add an AVIF muxer by re-using the existing the mov/mp4 muxer. > > > > > > AVIF Specifiation: https://aomediac

[FFmpeg-devel] [PATCH 1/2] avutil/hwcontext_videotoolbox: create real buffer pool

2022-03-09 Thread Zhao Zhili
vt_get_buffer shouldn't do buffer pool's job. --- libavutil/hwcontext_videotoolbox.c | 71 ++ 1 file changed, 34 insertions(+), 37 deletions(-) diff --git a/libavutil/hwcontext_videotoolbox.c b/libavutil/hwcontext_videotoolbox.c index 026127d412..e442a95007 100644 ---

[FFmpeg-devel] [PATCH 2/2] avutil/hwcontext_videotoolbox: fix declaration-after-statement

2022-03-09 Thread Zhao Zhili
--- libavutil/hwcontext_videotoolbox.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavutil/hwcontext_videotoolbox.c b/libavutil/hwcontext_videotoolbox.c index e442a95007..13f77a7692 100644 --- a/libavutil/hwcontext_videotoolbox.c +++ b/libavutil/hwcontext_videoto

[FFmpeg-devel] [PATCH] avfilter/video: fix shadowed variable

2022-03-09 Thread Zhao Zhili
--- libavfilter/video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/video.c b/libavfilter/video.c index fa3d588044..b2f0cdf88a 100644 --- a/libavfilter/video.c +++ b/libavfilter/video.c @@ -50,7 +50,7 @@ AVFrame *ff_default_get_video_buffer(AVFilterLink *link, i