[FFmpeg-devel] [PATCH] lavfi: add tblend filter

2014-12-26 Thread Stefano Sabatini
On date Wednesday 2014-12-10 19:03:10 +0100, Clément Bœsch encoded: Oups, sorry about the delay, I forgot that one. On Thu, Dec 04, 2014 at 12:36:43PM +0100, Stefano Sabatini wrote: [...] From c805460ceb04ec2da3f607e69067f4cc710c0613 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini

Re: [FFmpeg-devel] [PATCH] lavfi: add tdiff filter

2014-12-26 Thread Stefano Sabatini
On date Thursday 2014-12-11 10:18:51 +, Paul B Mahol encoded: On 12/10/14, Clement Boesch u...@pkh.me wrote: Oups, sorry about the delay, I forgot that one. On Thu, Dec 04, 2014 at 12:36:43PM +0100, Stefano Sabatini wrote: [...] From 65455601f502dd148bcd140f8d70eef104b1bdbe Mon Sep 17

Re: [FFmpeg-devel] [PATCH] x86/vf_fspp: port inline asm to yasm

2014-12-26 Thread Michael Niedermayer
On Fri, Dec 26, 2014 at 01:58:11AM -0300, James Almer wrote: Signed-off-by: James Almer jamr...@gmail.com --- Checksum of output is the same as far as i could test, but as mentioned in the other thread it's still different than the output of the C versions. libavfilter/vf_fspp.c

Re: [FFmpeg-devel] Parallelization of FFmpeg

2014-12-26 Thread Carl Eugen Hoyos
Dtison.net systemadmin at dtison.net writes: If anything comes to mind - someone make a suggestion and I'll take a look at it. The vc1 decoder could need frame parallelization. That being said, what normally happens is that you decide on which part of FFmpeg you would like to work on and

Re: [FFmpeg-devel] [PATCH] avfilter/vf_boxblur: generate supported pixfmt list instead of hardcoding

2014-12-26 Thread Michael Niedermayer
On Sun, Dec 21, 2014 at 06:27:26PM +0100, Michael Niedermayer wrote: This adds support for several more 8bit planar formats Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavfilter/vf_boxblur.c | 26 -- 1 file changed, 12 insertions(+), 14 deletions(-)

[FFmpeg-devel] [PATCH] swscale: Pass through chroma positions in sws_getCachedContext

2014-12-26 Thread Kieran Kunhya
--- libswscale/utils.c | 13 + 1 file changed, 13 insertions(+) diff --git a/libswscale/utils.c b/libswscale/utils.c index ab494ed..601e7bf 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -1960,6 +1960,8 @@ struct SwsContext *sws_getCachedContext(struct SwsContext

Re: [FFmpeg-devel] [PATCH] swscale: Pass through chroma positions in sws_getCachedContext

2014-12-26 Thread Michael Niedermayer
On Fri, Dec 26, 2014 at 02:46:02PM +, Kieran Kunhya wrote: --- libswscale/utils.c | 13 + 1 file changed, 13 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Freedom in capitalist society always remains about the

[FFmpeg-devel] [PATCH] x86/vf_fspp: port inline asm to yasm

2014-12-26 Thread James Almer
Signed-off-by: James Almer jamr...@gmail.com --- libavfilter/vf_fspp.c | 12 +- libavfilter/vf_fspp.h |6 +- libavfilter/x86/Makefile |3 +- libavfilter/x86/vf_fspp.asm | 727 +

Re: [FFmpeg-devel] [PATCH] x86/vf_fspp: port inline asm to yasm

2014-12-26 Thread Michael Niedermayer
On Fri, Dec 26, 2014 at 02:15:32PM -0300, James Almer wrote: Signed-off-by: James Almer jamr...@gmail.com --- libavfilter/vf_fspp.c | 12 +- libavfilter/vf_fspp.h |6 +- libavfilter/x86/Makefile |3 +-

Re: [FFmpeg-devel] [PATCH] x86/vf_fspp: port inline asm to yasm

2014-12-26 Thread James Almer
On 26/12/14 3:09 PM, Michael Niedermayer wrote: On Fri, Dec 26, 2014 at 02:15:32PM -0300, James Almer wrote: Signed-off-by: James Almer jamr...@gmail.com --- libavfilter/vf_fspp.c | 12 +- libavfilter/vf_fspp.h |6 +-

Re: [FFmpeg-devel] [PATCH] x86/vf_fspp: port inline asm to yasm

2014-12-26 Thread James Almer
On 26/12/14 5:31 AM, Christophe Gisquet wrote: Is m7 overwritten anywhere in those slice functions? It's not. I made a couple changes to these two functions compared to the inline asm version (all the setup before the loops), but didn't bother checking the simd much while porting it so i didn't

[FFmpeg-devel] [PATCH]Do not store more than 30 bit for r10k

2014-12-26 Thread Carl-Eugen Hoyos
Hi! Attached patch makes the output of r10k more predictable. Please comment, Carl Eugendiff --git a/libavcodec/r210enc.c b/libavcodec/r210enc.c index d61cd75..4cbebd7 100644 --- a/libavcodec/r210enc.c +++ b/libavcodec/r210enc.c @@ -62,7 +62,7 @@ static int encode_frame(AVCodecContext *avctx,

Re: [FFmpeg-devel] [PATCH]Do not store more than 30 bit for r10k

2014-12-26 Thread Michael Niedermayer
On Sat, Dec 27, 2014 at 12:41:12AM +0100, Carl-Eugen Hoyos wrote: Hi! Attached patch makes the output of r10k more predictable. Please comment, Carl Eugen this is probably ok [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Let us carefully observe those

[FFmpeg-devel] [PATCH 1/2] avfilter/vf_cropdetect: Factorize duplicated code using a macro

2014-12-26 Thread Michael Niedermayer
This simplifies subsequent changes Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavfilter/vf_cropdetect.c | 34 ++ 1 file changed, 10 insertions(+), 24 deletions(-) diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c index

[FFmpeg-devel] [PATCH 2/2] avfilter/vf_cropdetect: add max_outliers parameter

2014-12-26 Thread Michael Niedermayer
Fixes Ticket3030 Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavfilter/vf_cropdetect.c | 23 +++ 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c index fd2286d..8d45491 100644 ---