[FFmpeg-devel] [PATCH] avfilter/alimiter: Add "flush_buffer" option to flush the remaining valid data to the output

2022-03-26 Thread Wang Cao
The change in the commit will add some samples to the end of the audio stream. The intention is to add a "zero_delay" option eventually to not have the delay in the begining the output from alimiter due to lookahead. Signed-off-by: Wang Cao --- doc/filters.texi | 5 libavfilter/af

Re: [FFmpeg-devel] web/consulting: add myself

2022-03-26 Thread Gyan Doshi
On 2022-03-27 05:15 am, Michael Niedermayer wrote: On Thu, Mar 24, 2022 at 03:53:56PM +0100, Tomas Härdin wrote: consulting | 12 1 file changed, 12 insertions(+) 901f8f38d654798a4fcb579ac2e50c0a443f5843 0001-web-consulting-add-myself.patch From 446777e4333726cb05843ff16ac7

Re: [FFmpeg-devel] web/consulting: add myself

2022-03-26 Thread Michael Niedermayer
On Thu, Mar 24, 2022 at 03:53:56PM +0100, Tomas Härdin wrote: > > consulting | 12 > 1 file changed, 12 insertions(+) > 901f8f38d654798a4fcb579ac2e50c0a443f5843 0001-web-consulting-add-myself.patch > From 446777e4333726cb05843ff16ac76e9eb83a5e57 Mon Sep 17 00:00:00 2001 > From: =

Re: [FFmpeg-devel] web/consulting: add myself

2022-03-26 Thread Michael Niedermayer
On Thu, Mar 24, 2022 at 03:53:56PM +0100, Tomas Härdin wrote: > > consulting | 12 > 1 file changed, 12 insertions(+) > 901f8f38d654798a4fcb579ac2e50c0a443f5843 0001-web-consulting-add-myself.patch > From 446777e4333726cb05843ff16ac76e9eb83a5e57 Mon Sep 17 00:00:00 2001 > From: =

[FFmpeg-devel] [PATCH] test: tiny_ssim: Don't include config.h

2022-03-26 Thread Martin Storsjö
tiny_ssim is built for the build host, not for the target platform. Therefore, it mustn't include the config.h header, which is set up specifically for the target platform and compiler. This fixes cross building for older WinStore platforms, where config.h contains "#define getenv(x) NULL". Signe

Re: [FFmpeg-devel] [EXT] [PATCH v5 7/7] avcodec/v4l2_m2m_dec: setup capture queue before enqueue the first frame

2022-03-26 Thread Andriy Gelman
Hi Ming, On Mon, 21. Mar 07:27, Ming Qian wrote: > Hi Andriy, > > What do you think of this patch? > > The Initialization flow defined in > linux/Documentation/userspace-api/media/v4l/dev-decoder.rst > 1. Set the coded format on OUTPUT via VIDIOC_S_FMT(). > 2. Allocate source (bytestrea

Re: [FFmpeg-devel] [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize

2022-03-26 Thread Andriy Gelman
On Wed, 23. Mar 08:51, Wang, Fei W wrote: > > -Original Message- > > From: Wang, Fei W > > Sent: Tuesday, March 22, 2022 10:11 PM > > To: ffmpeg-devel@ffmpeg.org > > Cc: Linjie Fu ; Wang, Fei W > > Subject: [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize > > > > From: Linj

[FFmpeg-devel] Suggestions on best way to add capture timestamp functionality over RTSP

2022-03-26 Thread Rūdolfs Bundulis
Hi, I was looking for some advice on how to best add capture timestamp support to ffmpeg (namely RTP muxer) so that it would be accepted as a patch. I'll try to explain the rationale and what I see as an mvp and would like to get some feedback. Currently, a lot of live streaming stacks use rtmp o

Re: [FFmpeg-devel] [PATCH 2/2] avformat: Do not search through the AVOption table for a option not in it repeatedly on each packet

2022-03-26 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 2/2] avformat: Do not search through the AVOption table for a option not in it repeatedly on each packet

2022-03-26 Thread Michael Niedermayer
On Sat, Mar 26, 2022 at 12:06:50AM +0100, Michael Niedermayer wrote: > This search takes alot of time especially when compared with small packets > > Signed-off-by: Michael Niedermayer > --- > libavformat/demux.c| 15 +-- > libavformat/internal.h | 5 + > 2 files changed, 14