Re: [FFmpeg-devel] [PATCH] avfilter/vf_transpose: rewrite for x86 SIMD

2017-08-16 Thread Paul B Mahol
On 8/16/17, James Almer wrote: > On 8/15/2017 5:25 PM, Paul B Mahol wrote: >> From f25f0022fbc675affd65b95f097fa62e55788a37 Mon Sep 17 00:00:00 2001 >> From: Paul B Mahol >> Date: Tue, 15 Aug 2017 20:12:32 +0200 >> Subject: [PATCH] avfilter/vf_transpose:

Re: [FFmpeg-devel] [PATCH] avcodec/zmbv: Check decomp_size

2017-08-16 Thread Tomas Härdin
On 2017-08-16 05:04, Michael Niedermayer wrote: Fixes: OOM Fixes: 2710/clusterfuzz-testcase-minimized-4750001420894208 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer ---

Re: [FFmpeg-devel] [WIP] libcodec2 wrapper + de/muxer in FFmpeg

2017-08-16 Thread Tomas Härdin
On 2017-08-15 21:15, Moritz Barsnick wrote: On Tue, Aug 08, 2017 at 23:49:45 +0200, Tomas Härdin wrote: Feel free to comment Don't forget to mention #1959 in the commit message. Huh, I didn't know there was a ticket for it. That audiobook guy popped up on [Freetel-codec2] too, and thus the

Re: [FFmpeg-devel] [PATCH V2] doc/examples: Add a qsv encoder example

2017-08-16 Thread Li, Zhong
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Steven Liu > Sent: Monday, August 7, 2017 11:49 AM > To: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] [PATCH V2] doc/examples: Add a qsv

[FFmpeg-devel] [PATCH 2/3] lavf/tls: use AV_OPT_TYPE_BOOL

2017-08-16 Thread Rodger Combs
--- libavformat/tls.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/tls.h b/libavformat/tls.h index 0326ef7924..53d0634f49 100644 --- a/libavformat/tls.h +++ b/libavformat/tls.h @@ -47,10 +47,10 @@ typedef struct TLSShared { #define

[FFmpeg-devel] [PATCH 1/3] lavf/tls_openssl: add support for verifying the server hostname on >=1.1.0

2017-08-16 Thread Rodger Combs
--- libavformat/tls_openssl.c | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/libavformat/tls_openssl.c b/libavformat/tls_openssl.c index 38af8a21c0..50361d30e2 100644 --- a/libavformat/tls_openssl.c +++ b/libavformat/tls_openssl.c @@ -256,8 +256,6 @@ static

[FFmpeg-devel] [PATCH 3/3] lavf/tls: verify TLS connections by default whenever possible

2017-08-16 Thread Rodger Combs
This makes a reasonable effort to set the default configuration to behave securely, while maintaining the ability for consumers to produce builds using the old behavior without making changes to their runtime code. On Secure Transport and Secure Channel, we use a system-provided trust store, so

Re: [FFmpeg-devel] [PATCH 3/3] lavf/tls: verify TLS connections by default whenever possible

2017-08-16 Thread wm4
On Wed, 16 Aug 2017 02:19:18 -0500 Rodger Combs wrote: > This makes a reasonable effort to set the default configuration to behave > securely, while maintaining the ability for consumers to produce builds using > the old behavior without making changes to their runtime

Re: [FFmpeg-devel] [PATCH] avcodec/zmbv: Check decomp_size

2017-08-16 Thread Michael Niedermayer
On Wed, Aug 16, 2017 at 09:48:43AM +0200, Tomas Härdin wrote: > On 2017-08-16 05:04, Michael Niedermayer wrote: > >Fixes: OOM > >Fixes: 2710/clusterfuzz-testcase-minimized-4750001420894208 > > > >Found-by: continuous fuzzing process >

Re: [FFmpeg-devel] [PATCH] ffprobe: fix use of uninitialized variable

2017-08-16 Thread Zhao Zhili
Ping. On Wed, Aug 9, 2017 at 1:05 PM, Zhao Zhili wrote: > > > On Wed, Aug 9, 2017 at 1:23 AM, Michael Niedermayer < > mich...@niedermayer.cc> wrote: > >> On Sun, Aug 06, 2017 at 03:39:07PM +0800, Zhao Zhili wrote: >> > --- >> > ffprobe.c | 4 +++- >> > 1 file changed, 3

Re: [FFmpeg-devel] [PATCH] avcodec/zmbv: Check decomp_size

2017-08-16 Thread Tomas Härdin
On 2017-08-16 14:35, Michael Niedermayer wrote: On Wed, Aug 16, 2017 at 09:48:43AM +0200, Tomas Härdin wrote: On 2017-08-16 05:04, Michael Niedermayer wrote: Fixes: OOM Fixes: 2710/clusterfuzz-testcase-minimized-4750001420894208 Found-by: continuous fuzzing process

[FFmpeg-devel] [PATCH v2] libavformat/mov: fix multiple stsd handling of files with edit list, fix #6584

2017-08-16 Thread zhangjiejun1992
From: Jiejun Zhang When an edit list exists in a MOV file, counting by stscs no longer works because stscs' order is different from the actual timeline. This commit adds stsd-change markers to the actual timeline and changes stsd according to these markers. ---

[FFmpeg-devel] [PATCH] avcodec/zmbv: Check decomp_size

2017-08-16 Thread Michael Niedermayer
Fixes: OOM Fixes: 2710/clusterfuzz-testcase-minimized-4750001420894208 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/zmbv.c | 5 + 1 file changed, 5 insertions(+)

Re: [FFmpeg-devel] [PATCH v2] libavformat/mov: fix multiple stsd handling of files with edit list, fix #6584

2017-08-16 Thread Steven Liu
2017-08-16 20:11 GMT+08:00 : > From: Jiejun Zhang > > When an edit list exists in a MOV file, counting by stscs no longer > works because stscs' order is different from the actual timeline. This > commit adds stsd-change markers to the actual

Re: [FFmpeg-devel] [PATCH] fate: add overlay filter tests with alpha

2017-08-16 Thread Michael Niedermayer
On Wed, Aug 16, 2017 at 01:03:46AM +0200, Marton Balint wrote: > > On Wed, 16 Aug 2017, Michael Niedermayer wrote: > > >On Sun, Aug 13, 2017 at 10:00:04PM +0200, Marton Balint wrote: > >>Signed-off-by: Marton Balint > >>--- > >> tests/fate/filter-video.mak | 19

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/diracdec: Check perspective_exp and zrs_exp.

2017-08-16 Thread Michael Niedermayer
On Tue, Aug 15, 2017 at 03:32:43AM +0200, Michael Niedermayer wrote: > Fixes: undefined shift > Fixes: runtime error: shift exponent 264 is too large for 32-bit type 'int' > Fixes: 2860/clusterfuzz-testcase-minimized-4672811689836544 > > Found-by: continuous fuzzing process >

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/rangecoder: Do not increase the pointer beyond the buffer

2017-08-16 Thread Michael Niedermayer
On Mon, Aug 14, 2017 at 11:30:06PM -0300, James Almer wrote: > On 8/14/2017 8:07 PM, Michael Niedermayer wrote: > > On Sun, Aug 13, 2017 at 07:18:11PM -0300, James Almer wrote: > >> On 8/13/2017 7:15 PM, Michael Niedermayer wrote: > >>> Fixes: undefined behavior > >>> > >>> Signed-off-by: Michael

[FFmpeg-devel] [PATCH 1/2] avcodec/pixlet: fixes integer overflow in read_highpass()

2017-08-16 Thread Michael Niedermayer
Fixes: runtime error: negation of -2147483648 cannot be represented in type 'int32_t' (aka 'int'); cast to an unsigned type to negate this value to itself Fixes: 2879/clusterfuzz-testcase-minimized-6317542639403008 Found-by: continuous fuzzing process

[FFmpeg-devel] [PATCH 2/2] avcodec/h264idct_template: Fix integer overflow in ff_h264_idct8_add()

2017-08-16 Thread Michael Niedermayer
Fixes: 2891/clusterfuzz-testcase-minimized-5881795457318912 Fixes: runtime error: signed integer overflow: 1551827968 - -775913984 cannot be represented in type 'int' Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael

[FFmpeg-devel] [PATCH v3] libavformat/mov: fix multiple stsd handling of files with edit list, fix #6584

2017-08-16 Thread zhangjiejun1992
From: Jiejun Zhang When an edit list exists in a MOV file, counting by stscs no longer works because stscs' order is different from the actual timeline. This commit adds stsd-change markers to the actual timeline and changes stsd according to these markers. ---

Re: [FFmpeg-devel] [PATCH] libavfilter/af_ambisonic.c Added File for Ambisonic Filter

2017-08-16 Thread Michael Niedermayer
On Thu, Aug 17, 2017 at 04:35:13AM +0530, Sanchit Sinha wrote: > On Thu, Aug 17, 2017 at 1:32 AM, Michael Niedermayer > wrote: > > > On Tue, Aug 15, 2017 at 11:57:18PM +0530, Sanchit Sinha wrote: > > > On Tue, Aug 15, 2017 at 4:46 PM, Paul B Mahol

Re: [FFmpeg-devel] [PATCH] avformat/utils: always av_reduce r_frame_rate

2017-08-16 Thread Michael Niedermayer
On Thu, Aug 17, 2017 at 12:22:19AM +0200, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > libavformat/utils.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Re: [FFmpeg-devel] [PATCH] ffprobe: fix use of uninitialized variable

2017-08-16 Thread Zhao Zhili
On Thu, Aug 17, 2017 at 3:24 AM, Michael Niedermayer wrote: > On Wed, Aug 09, 2017 at 01:05:11PM +0800, Zhao Zhili wrote: > > On Wed, Aug 9, 2017 at 1:23 AM, Michael Niedermayer > > > wrote: > > > > > On Sun, Aug 06, 2017 at 03:39:07PM +0800,

[FFmpeg-devel] [PATCH] avformat/utils: always av_reduce r_frame_rate

2017-08-16 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 58283616dc..23865c88c4 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3943,8 +3943,8 @@

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/diracdec: Check perspective_exp and zrs_exp.

2017-08-16 Thread Ronald S. Bultje
Hi, On Aug 15, 2017 3:32 AM, "Michael Niedermayer" wrote: Fixes: undefined shift Fixes: runtime error: shift exponent 264 is too large for 32-bit type 'int' Fixes: 2860/clusterfuzz-testcase-minimized-4672811689836544 Found-by: continuous fuzzing process

Re: [FFmpeg-devel] [PATCH] fate: add overlay filter tests with alpha

2017-08-16 Thread Michael Niedermayer
On Wed, Aug 16, 2017 at 09:21:36PM +0200, Marton Balint wrote: > > On Wed, 16 Aug 2017, Michael Niedermayer wrote: > > >On Wed, Aug 16, 2017 at 01:03:46AM +0200, Marton Balint wrote: > >> > >>On Wed, 16 Aug 2017, Michael Niedermayer wrote: > >> > >>>On Sun, Aug 13, 2017 at 10:00:04PM +0200,

[FFmpeg-devel] filters.texi: explain audio upsampling in loudnorm

2017-08-16 Thread Werner Robitza
Explains that audio in the loudnorm filter will be upsampled to 192 kHz, which some users were confused about. Addresses issues mentioned in issue 6570. Please CC for responses, as I'm not subscribing to the list. Thanks, Werner 0001-filters.texi-explain-audio-upsampling-in-loudnorm.patch

[FFmpeg-devel] [PATCH] avfilter: add Audio Video Sync Test filter

2017-08-16 Thread Paul B Mahol
Hi, patch attached. 0001-avfilter-add-Audio-Video-Sync-Test-filter.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] fate: add overlay filter tests with alpha

2017-08-16 Thread Marton Balint
On Wed, 16 Aug 2017, Michael Niedermayer wrote: On Wed, Aug 16, 2017 at 01:03:46AM +0200, Marton Balint wrote: On Wed, 16 Aug 2017, Michael Niedermayer wrote: On Sun, Aug 13, 2017 at 10:00:04PM +0200, Marton Balint wrote: Signed-off-by: Marton Balint ---

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/diracdec: Check perspective_exp and zrs_exp.

2017-08-16 Thread Michael Niedermayer
On Wed, Aug 16, 2017 at 01:47:55PM -0400, Ronald S. Bultje wrote: > Hi, > > On Aug 15, 2017 3:32 AM, "Michael Niedermayer" > wrote: > > Fixes: undefined shift > Fixes: runtime error: shift exponent 264 is too large for 32-bit type 'int' > Fixes:

Re: [FFmpeg-devel] [PATCH] ffprobe: fix use of uninitialized variable

2017-08-16 Thread Michael Niedermayer
On Wed, Aug 09, 2017 at 01:05:11PM +0800, Zhao Zhili wrote: > On Wed, Aug 9, 2017 at 1:23 AM, Michael Niedermayer > wrote: > > > On Sun, Aug 06, 2017 at 03:39:07PM +0800, Zhao Zhili wrote: > > > --- > > > ffprobe.c | 4 +++- > > > 1 file changed, 3 insertions(+), 1

Re: [FFmpeg-devel] [PATCH 2/3] lavf/tls: use AV_OPT_TYPE_BOOL

2017-08-16 Thread Michael Niedermayer
On Wed, Aug 16, 2017 at 02:19:17AM -0500, Rodger Combs wrote: > --- > libavformat/tls.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The greatest way to live with honor in this world is

Re: [FFmpeg-devel] [PATCH] avfilter: add Audio Video Sync Test filter

2017-08-16 Thread Alex Giladi
Hi Paul, Can you please point me to some information how this filter works? Best, Alex. On Wed, Aug 16, 2017 at 12:08 PM, Paul B Mahol wrote: > Hi, > > patch attached. > > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org >

Re: [FFmpeg-devel] [PATCH] libavfilter/af_ambisonic.c Added File for Ambisonic Filter

2017-08-16 Thread Michael Niedermayer
On Tue, Aug 15, 2017 at 11:57:18PM +0530, Sanchit Sinha wrote: > On Tue, Aug 15, 2017 at 4:46 PM, Paul B Mahol wrote: > > > Hi, > > > > subject of patch file is wrong. > > > > Why is code for rotation so limited? One should be able to rotate by > > all 3 directions at once. > >

Re: [FFmpeg-devel] [PATCH] fate: add overlay filter tests with alpha

2017-08-16 Thread Marton Balint
On Wed, 16 Aug 2017, Michael Niedermayer wrote: On Wed, Aug 16, 2017 at 09:21:36PM +0200, Marton Balint wrote: On Wed, 16 Aug 2017, Michael Niedermayer wrote: On Wed, Aug 16, 2017 at 01:03:46AM +0200, Marton Balint wrote: On Wed, 16 Aug 2017, Michael Niedermayer wrote: On Sun, Aug 13,

Re: [FFmpeg-devel] [PATCH] libavfilter/af_ambisonic.c Added File for Ambisonic Filter

2017-08-16 Thread Sanchit Sinha
On Thu, Aug 17, 2017 at 1:32 AM, Michael Niedermayer wrote: > On Tue, Aug 15, 2017 at 11:57:18PM +0530, Sanchit Sinha wrote: > > On Tue, Aug 15, 2017 at 4:46 PM, Paul B Mahol wrote: > > > > > Hi, > > > > > > subject of patch file is wrong. > > > > > >