Re: [FFmpeg-devel] [PATCH v2 5/5] avcodec/x86/hevc_mc: add qpel_h64_8_avx512icl

2022-04-24 Thread Xiang, Haihao
On Wed, 2022-04-20 at 15:13 +, Xiang, Haihao wrote: > On Thu, 2022-04-14 at 11:23 +, Wu Jianhua wrote: > > Ping! > > Wu Jianhua: > > > Henrik Gramner: > > > > Sent: Friday, March 11, 2022 10:51 PM > > > > To: FFmpeg development discussions and patches > > > devel at ffmpeg.org> > > > > Sub

Re: [FFmpeg-devel] FFmpeg 5.0 LTS vs 5.1 LTS

2022-04-24 Thread Gyan Doshi
On 2022-04-23 10:06 pm, Michael Niedermayer wrote: Hi all Do people prefer that 5.0 becomes LTS or the next (5.1) ? Or something else ? A LTS release should be prospectively designated. That way, devs can prioritze their efforts and enterprise users can plan a roadmap for deployment. So,

Re: [FFmpeg-devel] FFmpeg 5.0 LTS vs 5.1 LTS

2022-04-24 Thread Steven Liu
> 2022年4月24日 00:36,Michael Niedermayer 写道: > > Hi all > > Do people prefer that 5.0 becomes LTS or the next (5.1) ? > Or something else ? I think 5.0 or 5.1 is ok. Because LTS is just for stable, I am looking at maillist, There have lots of patch will change lots of code every version, So wha

Re: [FFmpeg-devel] proposal for a minor change in the behavior of the drawtext filter

2022-04-24 Thread Nicolas George
Francesco Carusi (12022-04-22): > I'm working on an enhanced version of the drawtext filter and would like to > discuss with you about a minor change in its behavior related to line > spacing management. > In the current implementation the space between two lines of text is set > equal to the heigh

Re: [FFmpeg-devel] [PATCH] libavcodec/videotoolboxenc.c: add option to hevc encoder to prioritize speed.

2022-04-24 Thread Thilo Borgmann
Am 23.04.22 um 22:51 schrieb Simone Karin Lehmann: Am 23.04.2022 um 21:56 schrieb Thilo Borgmann : Am 23.04.22 um 17:42 schrieb Simone Karin Lehmann: Am 23.04.2022 um 17:07 schrieb Thilo Borgmann : If that works I'd be happy. Does not apply for me anymore (on HEAD), though? hhmm, the pa

[FFmpeg-devel] [PATCH v2 0/7] Add UUID functionality to libavutil

2022-04-24 Thread Zane van Iperen
This patchset adds functions for handling UUIDs to libavutil, under the av_uuid_* prefix, and refactors the various ad-hoc handling to use it. This was proposed in [1]. This is _heavily_ based off libuuid with various parts of the code simplified to remove unnecessary functionality (e.g. generati

[FFmpeg-devel] [PATCH v2 6/7] avformat/imf: refactor to use avutil/uuid

2022-04-24 Thread Zane van Iperen
From: Pierre-Anthony Lemieux --- libavformat/imf.h | 18 - libavformat/imf_cpl.c | 60 +++-- libavformat/imfdec.c| 34 +++ libavformat/tests/imf.c | 18 ++--- 4 files changed, 52 insertions(+), 78 deletions(-

[FFmpeg-devel] [PATCH v2 2/7] avutil/tests/uuid: add uuid tests

2022-04-24 Thread Zane van Iperen
From: Pierre-Anthony Lemieux --- libavutil/Makefile | 1 + libavutil/tests/.gitignore | 1 + libavutil/tests/uuid.c | 139 + tests/fate/libavutil.mak | 5 ++ 4 files changed, 146 insertions(+) create mode 100644 libavutil/tests/uuid.c dif

[FFmpeg-devel] [PATCH v2 4/7] avformat/smoothstreamingenc: refactor to use avutil/uuid

2022-04-24 Thread Zane van Iperen
From: Pierre-Anthony Lemieux --- libavformat/smoothstreamingenc.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libavformat/smoothstreamingenc.c b/libavformat/smoothstreamingenc.c index c67f0cba43..3d857b932e 100644 --- a/libavformat/smoothstreamingenc.c +++ b/libavf

[FFmpeg-devel] [PATCH v2 3/7] avformat/mov: refactor to use avutil/uuid

2022-04-24 Thread Zane van Iperen
From: Pierre-Anthony Lemieux --- libavformat/mov.c| 25 + libavformat/movenc.c | 9 + 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 3e83e54a77..cb6b49d98e 100644 --- a/libavformat/mov.c +++ b/liba

[FFmpeg-devel] [PATCH v2 7/7] avfilter/showinfo: refactor to use avutil/uuid

2022-04-24 Thread Zane van Iperen
From: Pierre-Anthony Lemieux --- libavfilter/vf_showinfo.c | 17 + 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c index 12d39310ef..0d6f2805bb 100644 --- a/libavfilter/vf_showinfo.c +++ b/libavfilter/vf_showinf

[FFmpeg-devel] [PATCH v2 1/7] avutil/uuid: add utility library for manipulating UUIDs as specified in RFC 4122

2022-04-24 Thread Zane van Iperen
Co-authored-by: Pierre-Anthony Lemieux Signed-off-by: Zane van Iperen --- libavutil/Makefile | 2 + libavutil/uuid.c | 155 + libavutil/uuid.h | 137 +++ 3 files changed, 294 insertions(+) create mode 100644 l

[FFmpeg-devel] [PATCH v2 5/7] avcodec/cbs_sei: refactor to use avutil/uuid

2022-04-24 Thread Zane van Iperen
From: Pierre-Anthony Lemieux --- libavcodec/cbs_sei.h | 3 ++- libavcodec/vaapi_encode_h264.c | 8 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/libavcodec/cbs_sei.h b/libavcodec/cbs_sei.h index c7a7a95be0..67c6e6cbbd 100644 --- a/libavcodec/cbs_sei.h +++ b/li

[FFmpeg-devel] [PATCH] avfilter: add ambisonic decoder

2022-04-24 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/Makefile |1 + libavfilter/af_ambisonic.c | 2292 libavfilter/allfilters.c |1 + 3 files changed, 2294 insertions(+) create mode 100644 libavfilter/af_ambisonic.c diff --git a/libavfilter/Makefile b

Re: [FFmpeg-devel] [PATCH 7/7] avcodec/xfacedec: Add AV_CODEC_CAP_DR1

2022-04-24 Thread Paul B Mahol
lgtm ___ 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 "unsubscribe".

Re: [FFmpeg-devel] [PATCH 4/7] avcodec/pgxdec: Fix issue with negative linesizes

2022-04-24 Thread Paul B Mahol
lgtm ___ 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 "unsubscribe".

Re: [FFmpeg-devel] [PATCH 6/7] avcodec/pgxdec: Use unsigned types for unsigned values

2022-04-24 Thread Paul B Mahol
lgtm ___ 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 "unsubscribe".

Re: [FFmpeg-devel] [PATCH 5/7] avcodec/pgxdec: Hoist branch out of loop

2022-04-24 Thread Paul B Mahol
lgtm ___ 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 "unsubscribe".

Re: [FFmpeg-devel] [PATCH 3/7] avcodec/pgxdec: Remove pointless checks

2022-04-24 Thread Paul B Mahol
probably fine ___ 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 "unsubscribe".

Re: [FFmpeg-devel] [PATCH 1/7] avcodec/pgxdec: Make better use of size check

2022-04-24 Thread Paul B Mahol
lgtm if tested ___ 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 "unsubscribe".

Re: [FFmpeg-devel] [PATCH 2/7] avcodec/pgxdec: Avoid always-false checks

2022-04-24 Thread Paul B Mahol
lgtm ___ 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 "unsubscribe".

Re: [FFmpeg-devel] [PATCH v11 1/6] libavutil/wchar_filename.h: Add whcartoutf8, wchartoansi and utf8toansi

2022-04-24 Thread nil-admirari
> 1. Patch 3/6 - Replace LoadLibraryExA with LoadLibraryExW > What's the point in making changes to library loading? What does it fix? From the commit https://ffmpeg.org/pipermail/ffmpeg-devel/2022-April/295571.html: ... the path length limitation is only lifted for file APIs that pass paths a

Re: [FFmpeg-devel] 2nd ping

2022-04-24 Thread James Almer
On 4/21/2022 10:55 AM, MCC CS wrote: It would be great if anyone who reads this could review this small patch (original: https://ffmpeg.org/pipermail/ffmpeg-devel/2022-April/295351.html): This is a repost of the patch by Chris Snowhill who originally sent this patch on 31 December - which didn'

Re: [FFmpeg-devel] [PATCH v2 1/2] doc/examples/transcode_aac: Don't ignore last encoded frame

2022-04-24 Thread Andreas Unterweger
Am 11.04.2022 um 08:46 schrieb Paul B Mahol: On Tue, Mar 22, 2022 at 6:47 PM Andreas Unterweger wrote: The last encoded frame is now fetched on EOF. It was previously left in the encoder and caused a "1 frame left in queue" warning. Signed-off-by: Andreas Unterweger --- doc/examples/trans

Re: [FFmpeg-devel] [PATCH v2 1/2] doc/examples/transcode_aac: Don't ignore last encoded frame

2022-04-24 Thread James Almer
On 4/24/2022 9:36 AM, Andreas Unterweger wrote: Am 11.04.2022 um 08:46 schrieb Paul B Mahol: On Tue, Mar 22, 2022 at 6:47 PM Andreas Unterweger wrote: The last encoded frame is now fetched on EOF. It was previously left in the encoder and caused a "1 frame left in queue" warning. Signed-off-

Re: [FFmpeg-devel] [PATCH v2 1/2] doc/examples/transcode_aac: Don't ignore last encoded frame

2022-04-24 Thread Andreas Unterweger
Am 24.04.2022 um 14:38 schrieb James Almer: On 4/24/2022 9:36 AM, Andreas Unterweger wrote: Am 11.04.2022 um 08:46 schrieb Paul B Mahol: On Tue, Mar 22, 2022 at 6:47 PM Andreas Unterweger wrote: The last encoded frame is now fetched on EOF. It was previously left in the encoder and caused a

Re: [FFmpeg-devel] [PATCH 2/2] lavfi: Add blurriness filter

2022-04-24 Thread Thilo Borgmann
Am 23.04.22 um 15:32 schrieb Thilo Borgmann: Hi, v3 updated to current HEAD. Named blurdetect filter now. Minor fixes on allocation and removed -f option. Please make this per plane filtering, with default to measure only first plane. done in v4. (Will add Changelog, version.h and fate t

Re: [FFmpeg-devel] [PATCH] avdevice/dshow: reuse unused variables.

2022-04-24 Thread Diederick C. Niehorster
Ping for the below. On Tue, Apr 19, 2022 at 10:13 AM Diederick Niehorster wrote: > > Fix for f125c504d8fece6420bb97767f9e72414c26312a, requested_sample_rate > and such should be used. > > Signed-off-by: Diederick Niehorster > --- > libavdevice/dshow.c | 6 +++--- > 1 file changed, 3 insertions(

[FFmpeg-devel] [PATCH] avformat/mov: Only read the primary item for AVIF

2022-04-24 Thread Vignesh Venkatasubramanian
Update the still AVIF parser to only read the primary item. With this patch, AVIF still images with exif/icc/alpha channel will no longer fail to parse. For example, this patch enables parsing of files in: https://github.com/AOMediaCodec/av1-avif/tree/master/testFiles/Microsoft Partially fixes tr

[FFmpeg-devel] [PATCH] avformat/mov: Add avif to list of supported extensions

2022-04-24 Thread Vignesh Venkatasubramanian
AVIF still and animations are now supported by the MOV parser. Add the "avif" extension to the list of supported extensions to AVInputFormat. Signed-off-by: Vignesh Venkatasubramanian --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/li

Re: [FFmpeg-devel] [PATCH] avformat/mov: Add support for still image AVIF parsing

2022-04-24 Thread Vignesh Venkatasubramanian
On Sat, Apr 23, 2022 at 1:14 AM Gyan Doshi wrote: > > Removed some trailing whitespace, edited commit msg and pushed as > 499e245b856733c3bbcd3ba23b406729343ed5fe > Thanks for merging! > Consider adding avif to extensions in the AVInputFormat Sorry this was an oversight. I thought I had already

Re: [FFmpeg-devel] [PATCH] avformat/mov: Add support for still image AVIF parsing

2022-04-24 Thread Vignesh Venkatasubramanian
On Thu, Apr 21, 2022 at 9:16 AM Vignesh Venkatasubramanian wrote: > > On Thu, Apr 21, 2022 at 2:08 AM Gyan Doshi wrote: > > > > > > > > On 2022-04-20 09:54 am, Gyan Doshi wrote: > > > > > > > > > On 2022-04-20 02:49 am, Paul B Mahol wrote: > > >> On Tue, Apr 19, 2022 at 10:57 PM Vignesh Venkatasu

Re: [FFmpeg-devel] [PATCH 2/2] lavfi: Add blurriness filter

2022-04-24 Thread Thilo Borgmann
Am 24.04.22 um 19:28 schrieb Thilo Borgmann: Am 23.04.22 um 15:32 schrieb Thilo Borgmann: Hi, v3 updated to current HEAD. Named blurdetect filter now. Minor fixes on allocation and removed -f option. Please make this per plane filtering, with default to measure only first plane. done in

Re: [FFmpeg-devel] [PATCH v11 1/6] libavutil/wchar_filename.h: Add whcartoutf8, wchartoansi and utf8toansi

2022-04-24 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of nil- > admir...@mailo.com > Sent: Sunday, April 24, 2022 2:08 PM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH v11 1/6] > libavutil/wchar_filename.h: Add whcartoutf8, wchartoansi and > utf8toansi > > > 1. Patch 3/

Re: [FFmpeg-devel] [PATCH] avdevice/dshow: reuse unused variables.

2022-04-24 Thread James Almer
On 4/19/2022 5:13 AM, Diederick Niehorster wrote: Fix for f125c504d8fece6420bb97767f9e72414c26312a, requested_sample_rate and such should be used. Signed-off-by: Diederick Niehorster --- libavdevice/dshow.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavdevice

Re: [FFmpeg-devel] [PATCH 2/2] lavfi: Add blurriness filter

2022-04-24 Thread Thilo Borgmann
Am 25.04.22 um 00:03 schrieb Thilo Borgmann: Am 24.04.22 um 19:28 schrieb Thilo Borgmann: Am 23.04.22 um 15:32 schrieb Thilo Borgmann: Hi, v3 updated to current HEAD. Named blurdetect filter now. Minor fixes on allocation and removed -f option. Please make this per plane filtering, with d

Re: [FFmpeg-devel] [PATCH] avcodec/audiotoolboxdec: Properly fill out_format

2022-04-24 Thread James Almer
On 12/31/2021 2:23 AM, Christopher Snowhill wrote: Monterey needs mBytesPerFrame and mBytesPerPacket to be set, and I'm surprised this didn't break any previous system versions. Fixes bug #9564: Cannot decode xHE-AAC with audiotoolbox (aac_at) on Mac OS Monterey. Fixes likely bug that none of th

Re: [FFmpeg-devel] [PATCH] lavf/tls_mbedtls: add support for mbedtls version 3

2022-04-24 Thread Timo Rothenpieler
On 24.04.2022 01:32, Timo Rothenpieler wrote: - certs.h is gone. Only contains test data, and was not used at all. - config.h is renamed. Was seemingly not used, so can be removed. - MBEDTLS_ERR_SSL_NO_USABLE_CIPHERSUITE is gone, instead MBEDTLS_ERR_SSL_HANDSHAKE_FAILURE will be thrown. - mbed

Re: [FFmpeg-devel] FFmpeg 5.0 LTS vs 5.1 LTS

2022-04-24 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of > Michael Niedermayer > Sent: Saturday, April 23, 2022 6:36 PM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: [FFmpeg-devel] FFmpeg 5.0 LTS vs 5.1 LTS > > Hi all > > Do people prefer that 5.0 become

Re: [FFmpeg-devel] 2nd ping

2022-04-24 Thread Bang He
look good for me On Thu, Apr 21, 2022 at 9:55 PM MCC CS wrote: > It would be great if anyone who reads this could review this small patch > (original: > https://ffmpeg.org/pipermail/ffmpeg-devel/2022-April/295351.html): > > This is a repost of the patch by Chris Snowhill who originally sent this