[FFmpeg-devel] [PATCH] fftools/ffmpeg_ffplay_ffprobe_cmdutils: add -safe to replace the user name and password in the protocol address

2022-12-16 Thread Wujian(Chin)
The Protocol address may contain the user name and password. The ps -ef command may expose the plaintext. The -safe parameter option is added to replace the user name and password in the command line with the asterisk (*). Signed-off-by: wujian_nanjing --- doc/ffmpeg.texi| 7 +++ doc/

Re: [FFmpeg-devel] fate-admin email address

2022-12-16 Thread Michael Niedermayer
Hi On Fri, Dec 16, 2022 at 06:49:58PM +, Kieran Kunhya wrote: > Hello, > > I have not received a reply from "fate-ad...@ffmpeg.org" and would like to > know which individuals are behind this email address? ATM there are 3: baptiste michael timothygu99 I did miss your mail in my inbox betwee

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

2022-12-16 Thread Michael Niedermayer
On Fri, Dec 16, 2022 at 12:26:58AM +0100, Lynne wrote: > 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

[FFmpeg-devel] fate-admin email address

2022-12-16 Thread Kieran Kunhya
Hello, I have not received a reply from "fate-ad...@ffmpeg.org" and would like to know which individuals are behind this email address? Regards, Kieran Kunhya ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmp

Re: [FFmpeg-devel] [PATCH 2/2] avfilter/vf_tinterlace: support full-range YUV

2022-12-16 Thread Thomas Mundt
Am Fr., 9. Dez. 2022 um 01:28 Uhr schrieb Niklas Haas : > From: Niklas Haas > > This filter, when used in the "pad" mode, currently makes the > distinction between limited and full range solely by testing for YUVJ > pixel formats at link setup time. This is deprecated and should be > improved to

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

2022-12-16 Thread Caleb Etemesi
Hi Andreas, thanks for the review, > Use "" instead of <>. Will do > I really don't like that you are adding a new bitreader here. Can you explain why this is supposed to be necessary? The reasons are: 1. The spec has some byte streams read from back to front,I didn't see that functionality pre

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

2022-12-16 Thread zhilizhao(赵志立)
> On Dec 15, 2022, at 23:25, Zhao Zhili wrote: > > 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 opt

Re: [FFmpeg-devel] [PATCH v2] libavfilter/dnn: fix openvino async mode

2022-12-16 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel On Behalf Of > Saliev, Rafik F > Sent: Friday, December 16, 2022 6:35 PM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH v2] libavfilter/dnn: fix openvino async mode > > Bugfix: The OpenVino DNN backend in the 'async' mode sets '

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

2022-12-16 Thread Saliev, Rafik F
yejun@intel.com: > There's a warning at > https://patchwork.ffmpeg.org/project/ffmpeg/patch/ph7pr11mb5887f1a68c19249217a6c09eda...@ph7pr11mb5887.namprd11.prod.outlook.com/, > > please fix and send v2 patch, thanks. The warning was reported against the 'context' field in the patch subject. A

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

2022-12-16 Thread Michael Niedermayer
On Thu, Dec 15, 2022 at 08:11:34PM +0100, 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

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

2022-12-16 Thread Michael Niedermayer
On Wed, Dec 14, 2022 at 02:06:09PM +, Derek Buitenhuis wrote: > Hello, > > I travelled to Barcelona for the developer meeting. > > I am only requesting for my flight, as I chose to stay in non-VideoLAN hotel. > > Flight: £111.98 - receipt available, of course. LGTM thx [...] -- Michael

[FFmpeg-devel] [PATCH v2] libavfilter/dnn: fix openvino async mode

2022-12-16 Thread Saliev, Rafik F
Bugfix: The OpenVino DNN backend in the 'async' mode sets 'task->inference_done' to 'complete' prior to data copy from OpenVino output buffer to task's output frame. This order causes task destroy in ff_dnn_get_result_common() prior to model output processing. Signed-off-by: Rafik Saliev --- lib

Re: [FFmpeg-devel] Fwd: Changing scan type (progressive<->interlaced) without reencoding.

2022-12-16 Thread Nicolas George
Steinar Apalnes (12022-12-16): > Did not get any response in the user list so trying here... Yes, you did. And even if you did not, that would not be an excuse to ask the question here. -- Nicolas George ___ ffmpeg-devel mailing list ffmpeg-devel@ff

[FFmpeg-devel] Fwd: Changing scan type (progressive<->interlaced) without reencoding.

2022-12-16 Thread Steinar Apalnes
Hi, Did not get any response in the user list so trying here... As the title says, is this at all possible? My concern is mostly with mpeg2 and h264 that have content of one type but encoded/marked as another. Most notably content that has progressive video but stored interlaced. So I'm probably ta

[FFmpeg-devel] [PATCH v2] libavfilter/dnn: fix openvino async mode

2022-12-16 Thread Saliev, Rafik F
Bugfix: The OpenVino DNN backend in the 'async' mode sets 'task->inference_done' to 'complete' prior to data copy from OpenVino output buffer to task's output frame. This order causes task destroy in ff_dnn_get_result_common() prior to model output processing. Signed-off-by: Rafik Saliev --- lib