Re: [FFmpeg-devel] [PATCH] avcodec/xpmdec: Fix multiple pointer/memory issues

2017-05-13 Thread Michael Niedermayer
On Sat, May 13, 2017 at 08:38:52AM +0200, wm4 wrote: > On Fri, 12 May 2017 20:55:13 +0200 > Michael Niedermayer wrote: > > > On Fri, May 12, 2017 at 03:29:52PM +0200, Paul B Mahol wrote: > > > On 5/12/17, Michael Niedermayer wrote: > > > > On Thu, May 11, 2017 at 11:17:33AM +0200, Michael Nied

Re: [FFmpeg-devel] [PATCH] configure: jni no longer requires -ldl

2017-05-13 Thread Matthieu Bouron
On Fri, May 12, 2017 at 12:14:20PM -0700, Aaron Levinson wrote: > On 5/12/2017 11:34 AM, Aman Gupta wrote: > > From: Aman Gupta > > > > this dependency was removed in 33d69a90085d30af8a292d9364b835a26565d6b9 > > --- > > configure | 3 +-- > > 1 file changed, 1 insertion(+), 2 deletions(-) > > >

Re: [FFmpeg-devel] [PATCH] avcodec/wavpack: Fix runtime error: signed integer overflow: 2147483642 + 512 cannot be represented in type 'int'

2017-05-13 Thread Michael Niedermayer
On Wed, May 10, 2017 at 11:28:21PM +0200, Michael Niedermayer wrote: > Fixed: 1453/clusterfuzz-testcase-minimized-5024976874766336 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg > Signed-off-by: Michael Niedermayer > --- > libavcodec/wav

Re: [FFmpeg-devel] [PATCH] avcodec/aacsbr_template: Do not change bs_num_env before its checked

2017-05-13 Thread Michael Niedermayer
On Fri, May 12, 2017 at 04:12:15AM +0200, Michael Niedermayer wrote: > Fixes: 1489/clusterfuzz-testcase-minimized-5075102901207040 > Fixes: out of array access > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg > Signed-off-by: Michael Niederm

[FFmpeg-devel] [PATCH] avfilter: add multiband compand filter

2017-05-13 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 16 ++ libavfilter/Makefile | 1 + libavfilter/af_mcompand.c | 672 ++ libavfilter/allfilters.c | 1 + 4 files changed, 690 insertions(+) create mode 100644 libavfilter/af_mcompand.

Re: [FFmpeg-devel] Patch libavformat/aviobuf.c fixes data loss on named pipe reads

2017-05-13 Thread Moritz Barsnick
On Fri, May 12, 2017 at 19:13:21 +, Rob Meyers wrote: > Attaching the output of "git diff -p". That will work, but $ git format-patch --signoff is recommended: https://ffmpeg.org/developer.html#Submitting-patches Your method lost the commit message (which was incorrectly worded anyway ;-)).

Re: [FFmpeg-devel] Patch libavformat/aviobuf.c fixes data loss on named pipe reads

2017-05-13 Thread James Almer
On 5/13/2017 6:00 PM, Moritz Barsnick wrote: > On Fri, May 12, 2017 at 19:13:21 +, Rob Meyers wrote: >> Attaching the output of "git diff -p". > > That will work, but > $ git format-patch --signoff > is recommended: > https://ffmpeg.org/developer.html#Submitting-patches git format-patch is a

[FFmpeg-devel] FFmpeg 3.3.1

2017-05-13 Thread Michael Niedermayer
Hi all ill make 3.3.1 soon (likely within 24h) and releases from other maintained branches after that (if nothing unexpected happens) If you want to backport something, do it now thx -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB It is what and why we do it that ma

Re: [FFmpeg-devel] [PATCH] avfilter: add multiband compand filter

2017-05-13 Thread Michael Niedermayer
On Sat, May 13, 2017 at 10:05:35PM +0200, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 16 ++ > libavfilter/Makefile | 1 + > libavfilter/af_mcompand.c | 672 > ++ > libavfilter/allfilters.c | 1 + >

Re: [FFmpeg-devel] [PATCH 3/3] avfilter/scale_cuda: add CUDA scale filter

2017-05-13 Thread Michael Niedermayer
On Fri, May 12, 2017 at 09:40:16PM +0200, Timo Rothenpieler wrote: > From: Yogender Gupta > > --- > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/vf_scale_cuda.c | 555 > +++ > libavfilter/vf_scale_cuda.cu |

[FFmpeg-devel] [PATCH V3] lavc/vaapi_encode_h264: Enable MB rate control.

2017-05-13 Thread Jun Zhao
V3: - Fix build error with old VAAPI version. V2: - Refine the name/value type to mb_rate_control/bool. - Only supported GEN9+ (SKL/APL/KBL/...) - i965 driver default use frame-level rate control algorithm (generate the QP for each frame), when enable mb_rate_control, it's will enab