[FFmpeg-devel] [DEVEL][PATCH] ffmpeg: fix channel_layout bug on non-default layout

2017-09-30 Thread pkv.stream
Hello the submitted patch addresses the regression discussed in ticket #6706. The -channel_layout option is not working when the channel layout is not a default one (ex: for 4 channels, quad is interpreted as 4.0 which is the default layout for 4

Re: [FFmpeg-devel] [PATCH 2/3] avcodec/v4l2_context: Reduce spelling variations

2017-09-30 Thread Michael Niedermayer
On Thu, Sep 28, 2017 at 04:32:48PM -0800, Lou Logan wrote: > On Thu, Sep 28, 2017, at 04:28 PM, Michael Niedermayer wrote: > > Signed-off-by: Michael Niedermayer > > --- > > libavcodec/v4l2_context.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > LGTM

Re: [FFmpeg-devel] [PATCH 3/3] avcodec/x86/lossless_videoencdsp: Fix warning: signed dword value exceeds bounds

2017-09-30 Thread Henrik Gramner
On Sat, Sep 30, 2017 at 12:58 AM, Michael Niedermayer wrote: > -andi, -2 * regsize > +andi, -(2 * regsize) regsize is defined to mmsize / 2 in the relevant case so the expression resolves to -2 * 16 / 2 In nasm integers are 64-bit

Re: [FFmpeg-devel] [PATCH 3/3] avcodec/x86/lossless_videoencdsp: Fix warning: signed dword value exceeds bounds

2017-09-30 Thread Michael Niedermayer
On Sat, Sep 30, 2017 at 08:50:57AM -0400, Ronald S. Bultje wrote: > Hi, > > On Fri, Sep 29, 2017 at 6:58 PM, Michael Niedermayer > wrote: > > > Signed-off-by: Michael Niedermayer > > --- > > libavcodec/x86/lossless_videoencdsp.asm | 2 +- > > 1

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: change the decklink maintainer to myself

2017-09-30 Thread Deti Fliegl
Thanks. On 30.09.17 23:39, Marton Balint wrote: Signed-off-by: Marton Balint --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 412680abac..9027ed5846 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -282,7 +282,7

Re: [FFmpeg-devel] [PATCH]lavf/bit: Fix the G.729 bit auto-detection

2017-09-30 Thread Michael Niedermayer
On Sat, Sep 30, 2017 at 08:46:28PM +0200, Carl Eugen Hoyos wrote: > 2017-09-30 3:19 GMT+02:00 Michael Niedermayer : > > On Fri, Sep 29, 2017 at 07:23:17PM +0200, Carl Eugen Hoyos wrote: > >> Hi! > >> > >> The G.729 bit auto-detection has never worked, patch attached. > >> >

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: change the decklink maintainer to myself

2017-09-30 Thread Lou Logan
On Sat, Sep 30, 2017, at 01:39 PM, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > MAINTAINERS | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Fine with me if you don't hear from Deti for a week or so. Otherwise, just add yourself as a co-maintainer and push

[FFmpeg-devel] [PATCH] MAINTAINERS: change the decklink maintainer to myself

2017-09-30 Thread Marton Balint
Signed-off-by: Marton Balint --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 412680abac..9027ed5846 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -282,7 +282,7 @@ libavdevice avfoundation.m

Re: [FFmpeg-devel] [PATCH 4/4] livavdevice/decklink: Don't allow any codecs but V210 and UYVY422

2017-09-30 Thread Marton Balint
On Tue, 26 Sep 2017, Devin Heitmueller wrote: Make sure that codecs other than V210 or wrapped avframes with uyvy422 video are passed to decklink output (which would result in undefined behavior). Signed-off-by: Devin Heitmueller --- libavdevice/decklink_enc.cpp

Re: [FFmpeg-devel] [PATCH 3/4] Add support for 10-bit output for Decklink SDI

2017-09-30 Thread Marton Balint
On Tue, 26 Sep 2017, Devin Heitmueller wrote: From: Devin Heitmueller Can be tested via the following command: ./ffmpeg -i foo.ts -f decklink -vcodec v210 'DeckLink Duo (1)' Note that the 8-bit support works as it did before, and setting the pix_fmt isn't

Re: [FFmpeg-devel] [PATCH 2/4] libavdevice/decklink: add support for -sources and -sinks arguments

2017-09-30 Thread Marton Balint
On Tue, 26 Sep 2017, Devin Heitmueller wrote: Add support for enumerating the sources/sinks via the ffmpeg command line options, as opposed to having to create a real pipeline and use the "-list_devices" option which does exit() after dumping out the options. Note that this patch preserves

Re: [FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-09-30 Thread Carl Eugen Hoyos
2017-09-30 20:30 GMT+02:00 Ronald S. Bultje : > Hi Carl, > > On Sat, Sep 30, 2017 at 2:19 PM, Carl Eugen Hoyos > wrote: > >> 2017-09-30 19:47 GMT+02:00 Ronald S. Bultje : >> > Hi Carl, >> > >> > On Sat, Sep 30, 2017 at 1:31 PM, Carl

Re: [FFmpeg-devel] [PATCH]lavf/bit: Fix the G.729 bit auto-detection

2017-09-30 Thread Carl Eugen Hoyos
2017-09-30 3:19 GMT+02:00 Michael Niedermayer : > On Fri, Sep 29, 2017 at 07:23:17PM +0200, Carl Eugen Hoyos wrote: >> Hi! >> >> The G.729 bit auto-detection has never worked, patch attached. >> >> Please comment, Carl Eugen > >> bit.c | 23 +-- >> 1

Re: [FFmpeg-devel] [PATCH]fate: Add a test for latm-in-dvb autodetection

2017-09-30 Thread Carl Eugen Hoyos
2017-09-27 17:12 GMT+02:00 Carl Eugen Hoyos : > Hi! > > Attached patch adds a test for ticket #6657. New patch attached. Carl Eugen From cc022fb1c6398e4dac3ce43b0205908481c07a08 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 30 Sep 2017

Re: [FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-09-30 Thread Ronald S. Bultje
Hi Carl, On Sat, Sep 30, 2017 at 2:19 PM, Carl Eugen Hoyos wrote: > 2017-09-30 19:47 GMT+02:00 Ronald S. Bultje : > > Hi Carl, > > > > On Sat, Sep 30, 2017 at 1:31 PM, Carl Eugen Hoyos > > wrote: > > > >> Hi! > >> > >> 2017-09-15

Re: [FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-09-30 Thread Carl Eugen Hoyos
2017-09-30 19:47 GMT+02:00 Ronald S. Bultje : > Hi Carl, > > On Sat, Sep 30, 2017 at 1:31 PM, Carl Eugen Hoyos > wrote: > >> Hi! >> >> 2017-09-15 22:47 GMT+02:00 Ashish Pratap Singh : >> >> > +static int query_formats(AVFilterContext

Re: [FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-09-30 Thread Ronald S. Bultje
Hi Carl, On Sat, Sep 30, 2017 at 1:31 PM, Carl Eugen Hoyos wrote: > Hi! > > 2017-09-15 22:47 GMT+02:00 Ashish Pratap Singh : > > > +static int query_formats(AVFilterContext *ctx) > > +{ > > +static const enum AVPixelFormat pix_fmts[] = { > > +

Re: [FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-09-30 Thread Carl Eugen Hoyos
Hi! 2017-09-15 22:47 GMT+02:00 Ashish Pratap Singh : > +static int query_formats(AVFilterContext *ctx) > +{ > +static const enum AVPixelFormat pix_fmts[] = { > +AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, > AV_PIX_FMT_YUV420P, > +AV_PIX_FMT_YUV444P10,

[FFmpeg-devel] [PATCH 2/3] avcodec/truemotion2: Fix integer overflows in tm2_high_chroma()

2017-09-30 Thread Michael Niedermayer
Fixes: runtime error: signed integer overflow: -1408475220 + -1408475220 cannot be represented in type 'int' Fixes: 3336/clusterfuzz-testcase-minimized-5656839179993088 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael

[FFmpeg-devel] [PATCH 1/3] avcodec/aacdec_template: Clear tns present flag on error

2017-09-30 Thread Michael Niedermayer
Fixes: 3444/clusterfuzz-testcase-minimized-6270352105668608 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/aacdec_template.c | 44

[FFmpeg-devel] [PATCH 3/3] avcodec/dxv: Check for end of input in dxv_decompress_dxt5()

2017-09-30 Thread Michael Niedermayer
Fixes: Timeout Fixes: 3291/clusterfuzz-testcase-4630024655208448 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/dxv.c | 2 ++ 1 file changed, 2 insertions(+) diff

Re: [FFmpeg-devel] [PATCH] avfilter: add vmafmotion filter

2017-09-30 Thread Ronald S. Bultje
Hi, On Fri, Sep 29, 2017 at 9:39 AM, Ronald S. Bultje wrote: > Hi, > > On Fri, Sep 15, 2017 at 4:47 PM, Ashish Pratap Singh > wrote: > >> From: Ashish Singh >> >> Hi, this patch addresses the previous issues and changes it to a

Re: [FFmpeg-devel] [PATCH 3/3] avcodec/x86/lossless_videoencdsp: Fix warning: signed dword value exceeds bounds

2017-09-30 Thread Ronald S. Bultje
Hi, On Fri, Sep 29, 2017 at 6:58 PM, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libavcodec/x86/lossless_videoencdsp.asm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git