Re: [FFmpeg-devel] [PATCH] libavfilter/dnn/dnn_backend_openvino.c: fix openvino async mode

2022-12-15 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel On Behalf Of > Saliev, Rafik F > Sent: Monday, December 12, 2022 6:31 PM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH] libavfilter/dnn/dnn_backend_openvino.c: > fix openvino async mode > > Bugfix: The OpenVino DNN backend in t

[FFmpeg-devel] [PATCH] avcodec/mediacodec_wrapper: include stdbool.h

2022-12-15 Thread Zhao Zhili
From: Zhao Zhili Since NDK failed to do that: https://github.com/android/ndk/issues/1281 --- libavcodec/mediacodec_wrapper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/mediacodec_wrapper.c b/libavcodec/mediacodec_wrapper.c index 7ddf93ccc7..4d6e9487b8 100644 --- a/libavcodec/

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/jpeg2000dec: Add support for High Throughput HTJ2K decoding.

2022-12-15 Thread Andreas Rheinhardt
etemesica...@gmail.com: > From: caleb > > This is a revised patch with suggested changes from earlier and satisfies the > Google Summer of > Code 2022 FFmpeg project to add a HTJ2K decoder to FFmpeg. > > --- > libavcodec/Makefile|2 +- > libavcodec/jpeg2000.h |3 + > libav

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: add a separate list for those with push access

2022-12-15 Thread Lynne
Dec 15, 2022, 20:34 by mich...@niedermayer.cc: > On Thu, Dec 15, 2022 at 02:13:49AM +0100, Lynne wrote: > >> This list is incomplete, and just contains those I could see >> while looking at the recent git log. If it looks like I've forgotten you, I >> definitely haven't! >> We may complete the li

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/jpeg2000dec: Move decoder structs to header files

2022-12-15 Thread Andreas Rheinhardt
etemesica...@gmail.com: > From: caleb > > This should pave way for HTJ2K decoding > > --- > libavcodec/jpeg2000dec.c | 96 + > libavcodec/jpeg2000dec.h | 126 +++ > 2 files changed, 127 insertions(+), 95 deletions(-) > create mod

Re: [FFmpeg-devel] [REFUND-REQUEST] Dec 2 developer meeting

2022-12-15 Thread Stefano Sabatini
On Thu, Dec 15, 2022 at 8:11 PM Niklas Haas wrote: > > As alluded to by my previous email: > > Flight: 180.32 EUR > Hotel (3 nights + breakfast): 287.40 EUR > Shuttle bus: 5.90 EUR > > I unfortunately can't find receipts for the metro tickets and second bus > ride back to the airport, so I've had

Re: [FFmpeg-devel] GSoC 2023

2022-12-15 Thread Pierre-Anthony Lemieux
I have updated the page with the HTJ2K project. This is a good opportunity to ask for help completing the review of the patchset: https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8078 All known issues have been resolved and it would be good to merge soon, i.e. beat the iron while it is h

Re: [FFmpeg-devel] [PATCH v6] lavc: convert frame threading to the receive_frame() pattern

2022-12-15 Thread Michael Niedermayer
On Wed, Dec 14, 2022 at 02:50:59AM +0100, Timo Rothenpieler wrote: > From: Anton Khirnov > > Reorganize the code such that the frame threading code does not call the > decoders directly, but instead calls back into the generic decoding > code. This avoids duplicating the logic that wraps the deco

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: add a separate list for those with push access

2022-12-15 Thread Michael Niedermayer
On Thu, Dec 15, 2022 at 02:13:49AM +0100, Lynne wrote: > This list is incomplete, and just contains those I could see > while looking at the recent git log. If it looks like I've forgotten you, I > definitely haven't! > We may complete the list at a later date. > > This makes it such that those w

Re: [FFmpeg-devel] [PATCH v14 9/9] avcodec/evc: Changes in Changelog and MAINTAINERS files

2022-12-15 Thread Michael Niedermayer
On Thu, Dec 15, 2022 at 10:14:40AM +0100, Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff Engineer/Samsung Electronics wrote: > > > > > -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: środa, 14 grudnia 2022 22:36 > To: FFmpeg development discussions and

Re: [FFmpeg-devel] [PATCH v14 9/9] avcodec/evc: Changes in Changelog and MAINTAINERS files

2022-12-15 Thread Michael Niedermayer
On Thu, Dec 15, 2022 at 02:11:28AM +0100, Lynne wrote: > Dec 14, 2022, 22:45 by mich...@niedermayer.cc: > > > On Tue, Dec 13, 2022 at 07:42:23PM +0100, Lynne wrote: > > > >> Dec 13, 2022, 13:22 by d.kozin...@samsung.com: > >> > >> > We made some changes in our EVC wrapper implementation and would

[FFmpeg-devel] [REFUND-REQUEST] Dec 2 developer meeting

2022-12-15 Thread Niklas Haas
As alluded to by my previous email: Flight: 180.32 EUR Hotel (3 nights + breakfast): 287.40 EUR Shuttle bus: 5.90 EUR I unfortunately can't find receipts for the metro tickets and second bus ride back to the airport, so I've had to remove them from my refund request. That brings the total down to

[FFmpeg-devel] [PATCH 2/2] avcodec/jpeg2000dec: Add support for High Throughput HTJ2K decoding.

2022-12-15 Thread etemesicaleb
From: caleb This is a revised patch with suggested changes from earlier and satisfies the Google Summer of Code 2022 FFmpeg project to add a HTJ2K decoder to FFmpeg. --- libavcodec/Makefile|2 +- libavcodec/jpeg2000.h |3 + libavcodec/jpeg2000dec.c | 69 +- libavcodec/

[FFmpeg-devel] [PATCH 1/2] avcodec/jpeg2000dec: Move decoder structs to header files

2022-12-15 Thread etemesicaleb
From: caleb This should pave way for HTJ2K decoding --- libavcodec/jpeg2000dec.c | 96 + libavcodec/jpeg2000dec.h | 126 +++ 2 files changed, 127 insertions(+), 95 deletions(-) create mode 100644 libavcodec/jpeg2000dec.h diff --

Re: [FFmpeg-devel] [PATCH v2 0/7] MediaCodec encoder: Fix width/height alignment issue and add more options

2022-12-15 Thread Zhao Zhili
On Wed, 2022-12-07 at 17:31 +0800, Zhao Zhili wrote: > From: Zhao Zhili > > v2: > Reorder 1/7 and 2/7. > > Zhao Zhili (7): > avcodec/mediacodecenc: make each encoder has its own option > avcodec/mediacodecenc: add bitrate_mode option > avcodec/mediacodecenc: add level option > avcodec/me

Re: [FFmpeg-devel] [REFUND-REQUEST] Travel to Developer Meeting

2022-12-15 Thread Derek Buitenhuis
On 12/14/2022 11:32 PM, Stefano Sabatini wrote: > Approved on my side, pending Michael's approval. > > Please follow these instructions to prepare and send the reimbursement form: > https://www.spi-inc.org/treasurer/reimbursement-form/ > > and put me and Michael in CC: > > Let me know in private

Re: [FFmpeg-devel] GSoC 2023

2022-12-15 Thread Jean-Baptiste Kempf
Hello, Also, please don’t copy paste ideas from previous years. If the idea did not get picked up for years, it won’t be more useful this year. jb On Thu, 15 Dec 2022, at 15:42, Thilo Borgmann wrote: > Hi, > > as we figured during the last dev meeting on December 2nd we want to > apply again f

Re: [FFmpeg-devel] [PATCH] lavc/videotoolbox: validate vt context in the decoder callback

2022-12-15 Thread Zhao Zhili
> -Original Message- > From: ffmpeg-devel On Behalf Of Alessandro > Di Nepi > Sent: 2022年12月15日 22:16 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH] lavc/videotoolbox: validate vt context in > the decoder callback > > Ping on this, > Can I contr

[FFmpeg-devel] GSoC 2023

2022-12-15 Thread Thilo Borgmann
Hi, as we figured during the last dev meeting on December 2nd we want to apply again for GSoC 2023. I told mentors often enough already that it's a vital point in our applications to have a properly filled results page from the last GSoC we did. Last time no mentor cared about this - we can be

Re: [FFmpeg-devel] [PATCH] lavc/videotoolbox: validate vt context in the decoder callback

2022-12-15 Thread Alessandro Di Nepi
Ping on this, Can I contribute somehow either to fix calling `av_videotoolbox_default_init` or at least update the docs? Best Regards, Alessandro On 11 Dec 2022, 11:57 +0200, Alessandro Di Nepi , wrote: > On 9 Dec 2022, 6:45 +0200, FFmpeg development discussions and patches > , wrote: > > Did y

[FFmpeg-devel] [RFC PATCH 2/2] avcodec/x86: add avx512icl function for v210dec

2022-12-15 Thread James Darnley
Ice Lake (Xeon Silver 4316): 2.01x faster (1147±36.8 vs. 571±38.2 decicycles) compared with avx2 --- I think I can merge this with the existing macro without it being too ugly. That might allow a plain avx512 version too but I can't say if that would be any faster. libavcodec/x86/v210-init.c |

[FFmpeg-devel] [PATCH 1/2] avcodec/x86/v210: add some comments to the improved avx2 function

2022-12-15 Thread James Darnley
--- libavcodec/x86/v210.asm | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/x86/v210.asm b/libavcodec/x86/v210.asm index 3b9e0761df..600a4ddc5f 100644 --- a/libavcodec/x86/v210.asm +++ b/libavcodec/x86/v210.asm @@ -65,18 +65,18 @@ cglobal v210_planar_unp

Re: [FFmpeg-devel] [PATCH] configure: support lsan as toolchain

2022-12-15 Thread James Darnley
On 12/7/22 17:08, James Darnley wrote: --- configure | 5 + 1 file changed, 5 insertions(+) diff --git a/configure b/configure index f4eedfc207..eaa5ef6b20 100755 --- a/configure +++ b/configure @@ -4315,6 +4315,11 @@ case "$toolchain" in add_cflags -fsanitize=address

Re: [FFmpeg-devel] [PATCH v3] avformat/movenc: correct write_colr warning placement

2022-12-15 Thread Gyan Doshi
On 2022-12-14 08:03 pm, Zhao Zhili wrote: -Original Message- From: ffmpeg-devel On Behalf Of Gyan Doshi Sent: 2022年12月14日 20:49 To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH v3] avformat/movenc: correct write_colr warning placement On 2022-12-14 06:10 pm, "zhilizha

Re: [FFmpeg-devel] [PATCH v14 9/9] avcodec/evc: Changes in Changelog and MAINTAINERS files

2022-12-15 Thread Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff Engineer/Samsung Electronics
-Original Message- From: ffmpeg-devel On Behalf Of Michael Niedermayer Sent: środa, 14 grudnia 2022 22:36 To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH v14 9/9] avcodec/evc: Changes in Changelog and MAINTAINERS files On Tue, Dec 13, 2022 at 08:33:

Re: [FFmpeg-devel] [PATCH v1 00/11] Add support for H266/VVC

2022-12-15 Thread Thomas Siedel
On Tue, 13 Dec 2022 at 07:19, Nuo Mi wrote: > Hi Thomas, > Thank you for sending the patch set. > It seems the patchset is based on > https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=3487 > Please do not change the author's name. > > thank you > Some code regarding VVC parsing is based o