[FFmpeg-devel] [PATCH] avutil/hwcontext_videotoolbox: implement hwupload to convert AVFrame to CVPixelBuffer

2021-06-29 Thread Aman Karmani
From: Aman Karmani Teach AV_HWDEVICE_TYPE_VIDEOTOOLBOX to be able to create AVFrames of type AV_PIX_FMT_VIDEOTOOLBOX. This can be used to hwupload a regular AVFrame into its CVPixelBuffer equivalent. ffmpeg -init_hw_device videotoolbox -f lavfi -i color=black:640x480 -vf hwupload -c:v

Re: [FFmpeg-devel] Compensating for mistakes of video encoder rtsp server implementations

2021-06-29 Thread Michael Niedermayer
On Mon, Jun 28, 2021 at 08:37:57PM +, Hayden Myers wrote: > How does one approach the problem of an encoder's incorrect implementation of > the rtsp protocol? My non-working example here is a Coretec mpeg-4 encoder. > I'm not sure the manufacturer is still in business, but they're still in

[FFmpeg-devel] [PATCH v3] avformat: add a concat protocol that takes a line break delimited list of resources

2021-06-29 Thread James Almer
Suggested-by: ffm...@fb.com Signed-off-by: James Almer --- Now using the standard quoting and escaping syntax. doc/protocols.texi | 32 libavformat/Makefile| 1 + libavformat/concat.c| 109 libavformat/protocols.c | 1 + 4

Re: [FFmpeg-devel] [PATCH] libavformat/movenc: Support encryption of H265 stream in AnnexB format

2021-06-29 Thread Gyan Doshi
Pushed as b74beba9a9a317caa7ac973cb76cc6ab0ade7667 On 2021-06-29 13:11, Gyan Doshi wrote: On 2021-06-29 12:25, Вадим Бездушный wrote: Ping. This patch will allow to encrypt streams, which were produced by hevc_mp4toannexb or movenc muxer. Currently, encryption doesn't work for HEVC AnnexB.

Re: [FFmpeg-devel] [PATCH] avfilter/vf_guided: support single input

2021-06-29 Thread Steven Liu
Steven Liu 于2021年6月14日周一 下午6:14写道: > > > > > 在 2021年6月14日,10:08,Xuewei Meng <928826...@qq.com> 写道: > > > > From: Xuewei Meng > > > > Support single input for guided filter by adding guidance mode. > > If the guidance mode is off, single input is required. And > > edge-preserving smoothing is

Re: [FFmpeg-devel] [PATCH] libavformat/movenc: Support encryption of H265 stream in AnnexB format

2021-06-29 Thread Gyan Doshi
On 2021-06-29 12:25, Вадим Бездушный wrote: Ping. This patch will allow to encrypt streams, which were produced by hevc_mp4toannexb or movenc muxer. Currently, encryption doesn't work for HEVC AnnexB. The resulting mp4 is not written correctly and can't be played. The patch is quite small and

Re: [FFmpeg-devel] [PATCH] libavformat/movenc: Support encryption of H265 stream in AnnexB format

2021-06-29 Thread Вадим Бездушный
Ping. This patch will allow to encrypt streams, which were produced by hevc_mp4toannexb or movenc muxer. Currently, encryption doesn't work for HEVC AnnexB. The resulting mp4 is not written correctly and can't be played. The patch is quite small and it contains tests, which will allow checking