Re: [FFmpeg-devel] FFmpeg 3.1 name

2016-06-24 Thread Amancio Hasty
> On Jun 24, 2016, at 7:39 PM, Michael Niedermayer > wrote: > > On Fri, Jun 24, 2016 at 06:52:01PM -0700, Amancio Hasty wrote: >> >>> On Jun 24, 2016, at 6:31 PM, Michael Niedermayer >>> wrote: >>> >>> On Thu, Jun 23, 2016 at 11:00:48PM +0200, Michael Niedermayer wrote: Hi all >>

Re: [FFmpeg-devel] FFmpeg 3.1 name

2016-06-24 Thread Michael Niedermayer
On Fri, Jun 24, 2016 at 11:12:05PM -0300, James Almer wrote: > On 6/24/2016 10:31 PM, Michael Niedermayer wrote: > > On Thu, Jun 23, 2016 at 11:00:48PM +0200, Michael Niedermayer wrote: > >> Hi all > >> > >> what shall FFmpeg 3.1 be called ? > >> > >> I still have these ideas from past suggestions:

Re: [FFmpeg-devel] FFmpeg 3.1 name

2016-06-24 Thread Michael Niedermayer
On Fri, Jun 24, 2016 at 06:52:01PM -0700, Amancio Hasty wrote: > > > On Jun 24, 2016, at 6:31 PM, Michael Niedermayer > > wrote: > > > > On Thu, Jun 23, 2016 at 11:00:48PM +0200, Michael Niedermayer wrote: > >> Hi all > >> > >> what shall FFmpeg 3.1 be called ? > >> > >> I still have these id

Re: [FFmpeg-devel] FFmpeg 3.1 name

2016-06-24 Thread James Almer
On 6/24/2016 10:31 PM, Michael Niedermayer wrote: > On Thu, Jun 23, 2016 at 11:00:48PM +0200, Michael Niedermayer wrote: >> Hi all >> >> what shall FFmpeg 3.1 be called ? >> >> I still have these ideas from past suggestions: >> Von Neumann, Einstein, lorentz, poincaré, desitter, de broglie, Gauss,

[FFmpeg-devel] [PATCH v2] lavd/decklink_common: Fix error caused by -Werror=missing-prototypes

2016-06-24 Thread Rick Kern
decklink_common.cpp includes a .cpp file from the DeckLink API which fails to build because there are non-static functions in the included .cpp file. This disables the missing-prototypes error so the file can be included. Signed-off-by: Rick Kern --- configure | 3 ++- 1 file changed, 2 insertio

Re: [FFmpeg-devel] FFmpeg 3.1 name

2016-06-24 Thread Amancio Hasty
> On Jun 24, 2016, at 6:31 PM, Michael Niedermayer > wrote: > > On Thu, Jun 23, 2016 at 11:00:48PM +0200, Michael Niedermayer wrote: >> Hi all >> >> what shall FFmpeg 3.1 be called ? >> >> I still have these ideas from past suggestions: >> Von Neumann, Einstein, lorentz, poincaré, desitter, d

Re: [FFmpeg-devel] [ppc] fix broken build when compiling libavcodec with LLVM on PPC backend

2016-06-24 Thread Michael Niedermayer
On Thu, Jun 23, 2016 at 04:36:46PM -0700, Jing Yu wrote: > Hi, > > This patch fixes a broken build when compiling libavcodec with LLVM > compiler. These assembly files use non-standard format that is only > supported by GCC compiler. It would be nice to use a common standard > format. With this pa

Re: [FFmpeg-devel] FFmpeg 3.1 name

2016-06-24 Thread Michael Niedermayer
On Thu, Jun 23, 2016 at 11:00:48PM +0200, Michael Niedermayer wrote: > Hi all > > what shall FFmpeg 3.1 be called ? > > I still have these ideas from past suggestions: > Von Neumann, Einstein, lorentz, poincaré, desitter, de broglie, Gauss, > Galois, Viterbi, Darwin > > Are there other suggesti

Re: [FFmpeg-devel] [PATCH] avfilter/vf_rotate: add >8 bit depth support

2016-06-24 Thread Muhammad Faiz
On Sat, Jun 25, 2016 at 1:23 AM, Paul B Mahol wrote: > Hi, > > patch attached. > >From 5b55c9c44ea103cdff3c34882dbcca29902728a4 Mon Sep 17 00:00:00 2001 >From: Paul B Mahol >Date: Fri, 24 Jun 2016 20:16:22 +0200 >Subject: [PATCH] avfilter/vf_rotate: add >8 bit depth support > >Signed-off-by: Pau

[FFmpeg-devel] [PATCH 2/2] avfilter/vf_paletteuse: enable skip_initial_unpaired

2016-06-24 Thread Michael Niedermayer
Fixes crash due to unprocessed input being passed through This fixes the last segfault caused by mixing 3.0 and 3.1 libs and applications Signed-off-by: Michael Niedermayer --- libavfilter/vf_paletteuse.c |1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/vf_paletteuse.c b/libav

[FFmpeg-devel] [PATCH 1/2] avfilter/dualinput: Add support to skip initial unpaired frames

2016-06-24 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavfilter/dualinput.c |3 +++ libavfilter/dualinput.h |1 + 2 files changed, 4 insertions(+) diff --git a/libavfilter/dualinput.c b/libavfilter/dualinput.c index 1a078a2..4475097 100644 --- a/libavfilter/dualinput.c +++ b/libavfilter/dualinput.c @

Re: [FFmpeg-devel] [PATCH] libopusenc: Add channel mapping family argument

2016-06-24 Thread Michael Graczyk
I fixed a comment typo and slightly modified an error message in the second patch. I attached updated versions. Please let me know if you have any thoughts on these patches. On Mon, Jun 20, 2016 at 3:48 PM, Michael Graczyk wrote: > Hello, > > I have fixed the problems Mark pointed out and attach

[FFmpeg-devel] [PATCH] avfilter/vf_rotate: add >8 bit depth support

2016-06-24 Thread Paul B Mahol
Hi, patch attached. From 5b55c9c44ea103cdff3c34882dbcca29902728a4 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 24 Jun 2016 20:16:22 +0200 Subject: [PATCH] avfilter/vf_rotate: add >8 bit depth support Signed-off-by: Paul B Mahol --- libavfilter/vf_rotate.c | 171 +

[FFmpeg-devel] [PATCH] lavd/avfoundation: Fix skewed video output

2016-06-24 Thread Rick Kern
Fixes #5654. The linesize can be greater than the minimum required. This copies the frame taking linesize into account. Signed-off-by: Rick Kern --- libavdevice/avfoundation.m | 56 -- 1 file changed, 49 insertions(+), 7 deletions(-) diff --git a/liba

[FFmpeg-devel] [PATCH] libavcodec/mmaldec.c: add interlaced_frame and format struct to AVFrame for deinterlacing

2016-06-24 Thread Jens Ziller
Hello, deinterlacing need frame->interlaced_frame and format struct. This patch added this to AVFrame. Regards Jens.From 8a8961a4fab0da2bd98ef6cbfaf55462a00d3450 Mon Sep 17 00:00:00 2001 From: Jens Ziller Date: Fri, 24 Jun 2016 18:18:12 +0200 Subject: [PATCH] for deinterlacing needed --- libav

Re: [FFmpeg-devel] [PATCH] lavc/mediacodec: add hwaccel support

2016-06-24 Thread Michael Niedermayer
On Fri, Jun 24, 2016 at 11:17:41AM +0200, Matthieu Bouron wrote: > On Thu, Apr 07, 2016 at 02:51:44PM +0200, Matthieu Bouron wrote: > > On Wed, Mar 23, 2016 at 6:16 PM, Matthieu Bouron > > wrote: > > > > > > > > > > > On Tue, Mar 22, 2016 at 10:04 AM, Matthieu Bouron < > > > matthieu.bou...@gmail

Re: [FFmpeg-devel] FFmpeg 3.1 name

2016-06-24 Thread Kyle Swanson
On Thu, Jun 23, 2016 at 4:00 PM, Michael Niedermayer wrote: > Hi all > > what shall FFmpeg 3.1 be called ? > > I still have these ideas from past suggestions: > Von Neumann, Einstein, lorentz, poincaré, desitter, de broglie, Gauss, > Galois, Viterbi, Darwin > > Are there other suggestions? > Is s

[FFmpeg-devel] [GSoC] mid term evaluations reminder

2016-06-24 Thread Michael Niedermayer
Hi everyone @students, dont forget to fill out the mid term eval ! @mentors, dont forget to fill out the mid term eval ! if either isnt filled out then the student is failed by google -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB It is what and why we do it tha

Re: [FFmpeg-devel] [PATCH 02/10] diracdsp: add dequantization SIMD

2016-06-24 Thread James Almer
On 6/24/2016 8:43 AM, Rostislav Pehlivanov wrote: > From 154e4312b09f568108dd97089e394c10bb3c28a9 Mon Sep 17 00:00:00 2001 > From: Rostislav Pehlivanov > Date: Thu, 23 Jun 2016 18:06:56 +0100 > Subject: [PATCH 2/2] diracdsp: add dequantization SIMD > > Currently unused, to be used in the followin

Re: [FFmpeg-devel] [PATCH 01/10] diracdsp: add SIMD for the 10 bit version of put_signed_rect_clamped

2016-06-24 Thread James Almer
On 6/24/2016 8:44 AM, Rostislav Pehlivanov wrote: > From 86ecebfe70509329d6f5b8a587ae79d19f9c8154 Mon Sep 17 00:00:00 2001 > From: Rostislav Pehlivanov > Date: Thu, 23 Jun 2016 18:06:55 +0100 > Subject: [PATCH 1/2] diracdsp: add SIMD for the 10 bit version of > put_signed_rect_clamped > > Signed

Re: [FFmpeg-devel] FFmpeg 3.1 name

2016-06-24 Thread Gregory J Wolfe
> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On > Behalf Of Wang Bin > Sent: Thursday, June 23, 2016 10:02 PM > Subject: Re: [FFmpeg-devel] FFmpeg 3.1 name > > What about choosing a scientist who was born in FFmpeg release > month? Don't want it to look like I'm trying to steal s

Re: [FFmpeg-devel] FFmpeg 3.1 name

2016-06-24 Thread Gregory J Wolfe
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On > Behalf Of Michael Niedermayer > Sent: Thursday, June 23, 2016 5:01 PM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: [FFmpeg-devel] FFmpeg 3.1 name > > Hi all > > what s

Re: [FFmpeg-devel] [PATCH 01/10] diracdsp: add SIMD for the 10 bit version of put_signed_rect_clamped

2016-06-24 Thread Michael Niedermayer
On Fri, Jun 24, 2016 at 12:44:21PM +0100, Rostislav Pehlivanov wrote: > On 23 June 2016 at 20:57, James Almer wrote: > > > On 6/23/2016 2:06 PM, Rostislav Pehlivanov wrote: > > > Signed-off-by: Rostislav Pehlivanov > > > --- > > > libavcodec/x86/diracdsp.asm| 47 > >

Re: [FFmpeg-devel] why ffmpeg doesn't support vp9 svc?

2016-06-24 Thread Ronald S. Bultje
Hi, On Fri, Jun 24, 2016 at 4:45 AM, qw wrote: > Hi, > > I have one question about vp9. vp9 supports svc encoding/decoding. Why > ffmpeg doesn't support vp9 svc? FFmpeg (both through libvpx as well as through ffvp9) does support scalable decoding (that is: decoding of frames using references o

Re: [FFmpeg-devel] [PATCH] fate: add anequalizer test

2016-06-24 Thread Michael Niedermayer
On Fri, Jun 24, 2016 at 11:45:12AM +, Petru Rares Sincraian wrote: > Hi there, > > > Here is a patch for anequalizer. Soon I will improve the coverage for this > test. > > > > Regards, > > Petru Rares. > fate/filter-audio.mak |6 + > filtergraphs/anequalizer|1 > ref

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: drop people who do not appear in git history > 2013

2016-06-24 Thread Benoit Fouet
Hi, [just BCC'ing the removed people, if they have something to say] On 24/06/2016 12:31, Clément Bœsch wrote: From: Clément Bœsch --- MAINTAINERS | 113 +--- 1 file changed, 8 insertions(+), 105 deletions(-) diff --git a/MAINTAINER

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: drop people who do not appear in git history > 2013

2016-06-24 Thread Michael Niedermayer
On Fri, Jun 24, 2016 at 01:35:01PM +0200, Clément Bœsch wrote: > On Fri, Jun 24, 2016 at 01:30:42PM +0200, Michael Niedermayer wrote: > > On Fri, Jun 24, 2016 at 12:31:46PM +0200, Clément Bœsch wrote: > > > From: Clément Bœsch > > [...] > > > @@ -500,16 +416,10 @@ Resamplers: > > > Operating syst

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: drop people who do not appear in git history > 2013

2016-06-24 Thread Michael Niedermayer
On Fri, Jun 24, 2016 at 12:31:46PM +0200, Clément Bœsch wrote: > From: Clément Bœsch > > --- > MAINTAINERS | 113 > +--- > 1 file changed, 8 insertions(+), 105 deletions(-) > > diff --git a/MAINTAINERS b/MAINTAINERS > index fd87db5..e908def

[FFmpeg-devel] [PATCH] fate: add anequalizer test

2016-06-24 Thread Petru Rares Sincraian
Hi there, Here is a patch for anequalizer. Soon I will improve the coverage for this test. Regards, Petru Rares. From fe6fbe3a218b8a3eeffa0b6fd64e0f8c8aa2b78d Mon Sep 17 00:00:00 2001 From: Petru Rares Sincraian Date: Wed, 22 Jun 2016 12:58:14 +0200 Subject: [PATCH] fate: add anequalizer tes

Re: [FFmpeg-devel] [PATCH 01/10] diracdsp: add SIMD for the 10 bit version of put_signed_rect_clamped

2016-06-24 Thread Rostislav Pehlivanov
On 23 June 2016 at 20:57, James Almer wrote: > On 6/23/2016 2:06 PM, Rostislav Pehlivanov wrote: > > Signed-off-by: Rostislav Pehlivanov > > --- > > libavcodec/x86/diracdsp.asm| 47 > ++ > > libavcodec/x86/diracdsp_init.c | 6 ++ > > 2 files chan

Re: [FFmpeg-devel] [PATCH 02/10] diracdsp: add dequantization SIMD

2016-06-24 Thread Rostislav Pehlivanov
On 23 June 2016 at 21:01, James Almer wrote: > On 6/23/2016 2:06 PM, Rostislav Pehlivanov wrote: > > Currently unused, to be used in the following commits. > > > > Signed-off-by: Rostislav Pehlivanov > > --- > > libavcodec/diracdsp.c | 24 > > libavcodec/diracd

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: drop people who do not appear in git history > 2013

2016-06-24 Thread Clément Bœsch
On Fri, Jun 24, 2016 at 01:30:42PM +0200, Michael Niedermayer wrote: > On Fri, Jun 24, 2016 at 12:31:46PM +0200, Clément Bœsch wrote: > > From: Clément Bœsch > [...] > > @@ -500,16 +416,10 @@ Resamplers: > > Operating systems / CPU architectures > > = > > >

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: drop people who do not appear in git history > 2013

2016-06-24 Thread Michael Niedermayer
On Fri, Jun 24, 2016 at 12:31:46PM +0200, Clément Bœsch wrote: > From: Clément Bœsch [...] > @@ -500,16 +416,10 @@ Resamplers: > Operating systems / CPU architectures > = > > -Alpha Falk Hueffner > MIPS

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: drop people who do not appear in git history > 2013

2016-06-24 Thread Michael Niedermayer
On Fri, Jun 24, 2016 at 12:31:46PM +0200, Clément Bœsch wrote: [...] > @@ -531,29 +441,22 @@ GnuPG Fingerprints of maintainers and contributors > Alexander Strasser1C96 78B7 83CB 8AA7 9AF5 D1EB A7D8 A57B A876 > E58F > Anssi Hannula 1A92 FF42 2DD9 8D2E 8AF7 65A9 4278 C

[FFmpeg-devel] [PATCH] MAINTAINERS: drop people who do not appear in git history > 2013

2016-06-24 Thread Clément Bœsch
From: Clément Bœsch --- MAINTAINERS | 113 +--- 1 file changed, 8 insertions(+), 105 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index fd87db5..e908def 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -35,17 +35,12 @@ ffserver: Comma

Re: [FFmpeg-devel] [PATCH] lavc/mediacodec: add hwaccel support

2016-06-24 Thread Matthieu Bouron
On Thu, Apr 07, 2016 at 02:51:44PM +0200, Matthieu Bouron wrote: > On Wed, Mar 23, 2016 at 6:16 PM, Matthieu Bouron > wrote: > > > > > > > On Tue, Mar 22, 2016 at 10:04 AM, Matthieu Bouron < > > matthieu.bou...@gmail.com> wrote: > > > >> > >> > >> On Fri, Mar 18, 2016 at 5:50 PM, Matthieu Bouron

[FFmpeg-devel] why ffmpeg doesn't support vp9 svc?

2016-06-24 Thread qw
Hi, I have one question about vp9. vp9 supports svc encoding/decoding. Why ffmpeg doesn't support vp9 svc? Thanks! B.R. Andrew ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] h264: make H264ParamSets sps const

2016-06-24 Thread Benoit Fouet
Hi, On 23/06/2016 22:37, Michael Niedermayer wrote: On Thu, Jun 23, 2016 at 03:28:10PM +0200, Benoit Fouet wrote: Hi, On 21/06/2016 16:42, Benoit Fouet wrote: Hi, On 21/06/2016 16:29, Hendrik Leppkes wrote: On Tue, Jun 21, 2016 at 4:20 PM, Benoit Fouet wrote: Hi, On 21/06/2016 14:52, H