Re: [FFmpeg-devel] [PATCH V2 2/2] vf_dnn_processing.c: add dnn backend openvino

2020-06-23 Thread Guo, Yejun
> -Original Message- > From: Guo, Yejun > Sent: 2020年6月11日 21:01 > To: ffmpeg-devel@ffmpeg.org > Cc: Guo, Yejun > Subject: [PATCH V2 2/2] vf_dnn_processing.c: add dnn backend openvino > > We can try with the srcnn model from sr filter. > 1) get srcnn.pb model file, see filter sr > 2) c

Re: [FFmpeg-devel] [PATCH v2 2/4] avcodec/hevcdec: create AVFrame side data from HEVC timecodes like H.264

2020-06-23 Thread lance . lmwang
On Tue, Jun 23, 2020 at 10:18:55PM +0100, Josh de Kock wrote: > On 17/06/2020 17:07, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavcodec/hevcdec.c | 44 > > 1 file changed, 44 insertions(+) >

Re: [FFmpeg-devel] [PATCH 2/2] avformat/subtitles: Check for NOPTS in ff_subtitles_queue_finalize()

2020-06-23 Thread Michael Niedermayer
On Tue, Jun 23, 2020 at 02:08:44PM +0200, Nicolas George wrote: > Michael Niedermayer (12020-06-23): > > Fixes; signed integer overflow: 1 - -9223372036854775808 cannot be > > represented in type 'long' > > Fixes: > > 23490/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5133490093031424 > >

Re: [FFmpeg-devel] [PATCH 4/5] libavcodec/jpeg2000dec.c: Enable image offsets

2020-06-23 Thread Michael Niedermayer
On Mon, Jun 22, 2020 at 11:29:44PM +0200, Carl Eugen Hoyos wrote: > Am Mo., 22. Juni 2020 um 23:16 Uhr schrieb Michael Niedermayer > : > > > > On Mon, Jun 22, 2020 at 12:12:07AM +0530, gautamr...@gmail.com wrote: > > > From: Gautam Ramakrishnan > > > > > > This patch enables support for image offs

Re: [FFmpeg-devel] [PATCH v2 2/4] avcodec/hevcdec: create AVFrame side data from HEVC timecodes like H.264

2020-06-23 Thread Josh de Kock
On 17/06/2020 17:07, lance.lmw...@gmail.com wrote: From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/hevcdec.c | 44 1 file changed, 44 insertions(+) diff --git a/libavcodec/hevcdec.c b/libavcodec/hevcdec.c index c9e28f5..39abbb9 100644

Re: [FFmpeg-devel] [VOTE] General Assembly extra members

2020-06-23 Thread Jean-Baptiste Kempf
Hello again, This is just a reminder: the vote will close tomorrow, Wed 24th. Please vote before the vote closes. Best, On Thu, Jun 18, 2020, at 16:45, Jean-Baptiste Kempf wrote: > Hello fellow geeks, > > If you are eligible to vote in the General Assembly of FFmpeg > developers, you should h

Re: [FFmpeg-devel] [PATCH]lavc: Lower MediaFoundation encoder priority

2020-06-23 Thread Carl Eugen Hoyos
Am Di., 23. Juni 2020 um 18:56 Uhr schrieb James Almer : > > > From 43e8ac3e391bfa49cc426158750aed8af4252c7c Mon Sep 17 00:00:00 2001 > > From: Carl Eugen Hoyos > > Date: Tue, 23 Jun 2020 18:45:08 +0200 > > Subject: [PATCH] lavc: Lower MediaFoundation encoder priority. > > > > The actual encoders

Re: [FFmpeg-devel] [PATCH]lavc: Lower MediaFoundation encoder priority

2020-06-23 Thread James Almer
> From 43e8ac3e391bfa49cc426158750aed8af4252c7c Mon Sep 17 00:00:00 2001 > From: Carl Eugen Hoyos > Date: Tue, 23 Jun 2020 18:45:08 +0200 > Subject: [PATCH] lavc: Lower MediaFoundation encoder priority. > > The actual encoders may not be available. > Fixes ticket #8699. > --- > libavcodec/allcod

Re: [FFmpeg-devel] [PATCH] lavf/movenc: Use a dynamic buffer when writing the mfra box

2020-06-23 Thread Derek Buitenhuis
On 23/06/2020 16:59, Andreas Rheinhardt wrote: > Use avio_get_dyn_buf in combination with ffio_free_dyn_buf. That way you > save an allocation+copy in case the data fits into the dynamic buffer's > write buffer (it has a size of 1024 bytes; I don't know how common it is > for this box to be smaller

Re: [FFmpeg-devel] [PATCH 2/2] add socks5 support for tcp clients

2020-06-23 Thread Carl Eugen Hoyos
Am Di., 23. Juni 2020 um 17:24 Uhr schrieb Moritz Barsnick : > > On Sat, Jun 13, 2020 at 23:17:41 +0800, leviz...@live.cn wrote: > > From: zhaoyi > > Is this the name you'd like to appear in the git log, asuming the patch > gets accepted? It is your (the author's) choice what you want to appear a

[FFmpeg-devel] [PATCH]lavc: Lower MediaFoundation encoder priority

2020-06-23 Thread Carl Eugen Hoyos
Hi! Attached patch intends to fix ticket #8699 (which I cannot reproduce). Please comment, Carl Eugen From 43e8ac3e391bfa49cc426158750aed8af4252c7c Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Tue, 23 Jun 2020 18:45:08 +0200 Subject: [PATCH] lavc: Lower MediaFoundation encoder priority.

Re: [FFmpeg-devel] [PATCH] lavf/movenc: Use a dynamic buffer when writing the mfra box

2020-06-23 Thread Andreas Rheinhardt
Derek Buitenhuis: > When doing streamed output, with e.g. +dash, if the mfra box ended > up being larger than the AVIOContext write buffer, the (unchecked) > seeking back to update the box size would silently fail and produce > an invalid mfra box. > > This is similar to how other boxes are writte

[FFmpeg-devel] [PATCH] lavf/movenc: Use a dynamic buffer when writing the mfra box

2020-06-23 Thread Derek Buitenhuis
When doing streamed output, with e.g. +dash, if the mfra box ended up being larger than the AVIOContext write buffer, the (unchecked) seeking back to update the box size would silently fail and produce an invalid mfra box. This is similar to how other boxes are written in fragmented mode. Signed-

Re: [FFmpeg-devel] [PATCH v3 5/5] avcodec/nvenc: support for HEVC timecode passthrough

2020-06-23 Thread Timo Rothenpieler
On 23.06.2020 16:44, lance.lmw...@gmail.com wrote: On Thu, Jun 18, 2020 at 12:32:57PM +0800, lance.lmw...@gmail.com wrote: From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/nvenc.c | 17 + libavcodec/nvenc.h | 1 + libavcodec/nvenc_hevc.c | 1 + 3 file

Re: [FFmpeg-devel] [PATCH 2/2] add socks5 support for tcp clients

2020-06-23 Thread Moritz Barsnick
On Sat, Jun 13, 2020 at 23:17:41 +0800, leviz...@live.cn wrote: > From: zhaoyi Is this the name you'd like to appear in the git log, asuming the patch gets accepted? It cannot be changed afterwards. (I'm saying: Most people use their "real name" here.) In your commit message, please also mention

Re: [FFmpeg-devel] [PATCH v3 5/5] avcodec/nvenc: support for HEVC timecode passthrough

2020-06-23 Thread lance . lmwang
On Thu, Jun 18, 2020 at 12:32:57PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavcodec/nvenc.c | 17 + > libavcodec/nvenc.h | 1 + > libavcodec/nvenc_hevc.c | 1 + > 3 files changed, 19 insertions(+) > > diff --gi

Re: [FFmpeg-devel] [PATCH 2/2] avformat/subtitles: Check for NOPTS in ff_subtitles_queue_finalize()

2020-06-23 Thread Nicolas George
Michael Niedermayer (12020-06-23): > Fixes; signed integer overflow: 1 - -9223372036854775808 cannot be > represented in type 'long' > Fixes: > 23490/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5133490093031424 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fu

Re: [FFmpeg-devel] [PATCH v2 1/4] lavc/aac_ac3_parser: improve the raw AAC file bit rate calculation

2020-06-23 Thread myp...@gmail.com
On Wed, May 27, 2020 at 12:57 AM Jun Zhao wrote: > > From: Jun Zhao > > Now we just use one ADTS raw frame to calculate the bit rate, it's > lead to a larger error when get the duration from bit rate, the > improvement cumulate Nth ADTS frames to get the average bit rate. > > e,g used the command

Re: [FFmpeg-devel] [Patch] vf_edgedetect: properly implement double_threshold()

2020-06-23 Thread Moritz Barsnick
On Mon, Jun 22, 2020 at 14:24:19 +0200, Valery Kot wrote: > On Mon, Jun 22, 2020 at 12:54 PM Moritz Barsnick wrote: > > NOT of a logical OR can be inverted, so this *may* be more readable as: > >if ((i && i != w - 1 && j && j != h - 1) && > Indeed, those three are equivalent. Compl