Re: [libav-devel] [PATCH/release/11] travis: Add travis support for release/11

2017-04-19 Thread Sean McGovern
On Wed, Apr 19, 2017 at 4:40 PM, Sean McGovern wrote: > Hi Luca, > > > On Apr 17, 2017 6:37 PM, "Luca Barbato" wrote: > > --- > > As requested by Sean. > > .travis.yml | 26 ++ > 1 file changed, 26 insertions(+) > create mode 100644 .travis.yml > > diff --git a/.travis.y

Re: [libav-devel] [PATCH/release/11] travis: Add travis support for release/11

2017-04-19 Thread Sean McGovern
Hi Luca, On Apr 17, 2017 6:37 PM, "Luca Barbato" wrote: --- As requested by Sean. .travis.yml | 26 ++ 1 file changed, 26 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00..6f9647a701 --- /dev/nu

Re: [libav-devel] [PATCH 1/2] Add ClearVideo decoder

2017-04-19 Thread Diego Biurrun
On Mon, Apr 17, 2017 at 12:00:59PM -0400, Vittorio Giovara wrote: > On Sat, Apr 15, 2017 at 6:31 AM, Diego Biurrun wrote: > > --- /dev/null > > +++ b/libavcodec/clearvideo.c > > @@ -0,0 +1,385 @@ > > + > > +#include "avcodec.h" > > +#include "bytestream.h" > > +#include "get_bits.h" > > shouldn't

Re: [libav-devel] [PATCH] travis: Exclude gcc for the osx target

2017-04-19 Thread Diego Biurrun
On Wed, Apr 19, 2017 at 11:26:16AM +0300, Martin Storsjö wrote: > On Wed, 19 Apr 2017, Diego Biurrun wrote: > > >On Tue, Apr 18, 2017 at 08:26:16PM +0200, Luca Barbato wrote: > >>`gcc` there is still clang so it is unneded to run it twice. > > > >I cannot parse this sentence, thus I wonder what yo

Re: [libav-devel] [PATCH] travis: Exclude gcc for the osx target

2017-04-19 Thread Vittorio Giovara
On Wed, Apr 19, 2017 at 6:56 AM, Luca Barbato wrote: > On 19/04/2017 10:21, Diego Biurrun wrote: >> On Tue, Apr 18, 2017 at 08:26:16PM +0200, Luca Barbato wrote: >>> `gcc` there is still clang so it is unneded to run it twice. >> >> I cannot parse this sentence, thus I wonder what you are trying t

Re: [libav-devel] [PATCH] travis: Exclude gcc for the osx target

2017-04-19 Thread Luca Barbato
On 19/04/2017 10:21, Diego Biurrun wrote: > On Tue, Apr 18, 2017 at 08:26:16PM +0200, Luca Barbato wrote: >> `gcc` there is still clang so it is unneded to run it twice. > > I cannot parse this sentence, thus I wonder what you are trying to say.. > the gcc command, there, is still clang. __

Re: [libav-devel] [PATCH] hevc: Add NEON add_residual for bitdepth 8

2017-04-19 Thread Martin Storsjö
On Wed, 19 Apr 2017, Martin Storsjö wrote: On Tue, 18 Apr 2017, Alexandra Hájková wrote: From: Seppo Tomperi Signed-off-by: Alexandra Hájková --- libavcodec/arm/hevc_idct.S| 71 +++ libavcodec/arm/hevcdsp_init_arm.c | 15 + 2 files change

[libav-devel] [PATCH] swscale-test: const correctness

2017-04-19 Thread Diego Biurrun
--- The casts are somewhat ugly, but probably unavoidable... libswscale/tests/swscale.c | 24 ++-- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/libswscale/tests/swscale.c b/libswscale/tests/swscale.c index 364e2a7..ece0757 100644 --- a/libswscale/tests/swsc

Re: [libav-devel] [PATCH] travis: Exclude gcc for the osx target

2017-04-19 Thread Martin Storsjö
On Wed, 19 Apr 2017, Diego Biurrun wrote: On Tue, Apr 18, 2017 at 08:26:16PM +0200, Luca Barbato wrote: `gcc` there is still clang so it is unneded to run it twice. I cannot parse this sentence, thus I wonder what you are trying to say.. On a normal osx setup, 'gcc' is a symlink to clang. T

Re: [libav-devel] [PATCH] travis: Exclude gcc for the osx target

2017-04-19 Thread Diego Biurrun
On Tue, Apr 18, 2017 at 08:26:16PM +0200, Luca Barbato wrote: > `gcc` there is still clang so it is unneded to run it twice. I cannot parse this sentence, thus I wonder what you are trying to say.. Diego ___ libav-devel mailing list libav-devel@libav.or

Re: [libav-devel] [PATCH] hevc: Add NEON add_residual for bitdepth 8

2017-04-19 Thread Martin Storsjö
On Tue, 18 Apr 2017, Alexandra Hájková wrote: From: Seppo Tomperi Signed-off-by: Alexandra Hájková --- libavcodec/arm/hevc_idct.S| 71 +++ libavcodec/arm/hevcdsp_init_arm.c | 15 + 2 files changed, 86 insertions(+) diff --git a/libavcodec/arm

Re: [libav-devel] [PATCH] checkasm: hevc: Add a hevc_ prefix to the add_residual functions

2017-04-19 Thread Luca Barbato
On 19/04/2017 09:43, Martin Storsjö wrote: > This makes it easier to group them with the rest when running e.g. > --bench=hevc. > --- > tests/checkasm/hevc_add_res.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/checkasm/hevc_add_res.c b/tests/checkasm/hevc_add_re

[libav-devel] [PATCH] [RFC] checkasm: Group all the hevc tests under one hevcdsp group

2017-04-19 Thread Martin Storsjö
Contrary to e.g. h264pred and h264qpel, all of these are within the same HEVCDSPContext. --- This IMO makes the checkasm output look less cluttered and more consistent with the rest. Before: - h264dsp.idct [OK] - h264pred.pred8x8 [OK] - h264pred.pred16x16[OK] - h2

[libav-devel] [PATCH] checkasm: hevc: Add a hevc_ prefix to the add_residual functions

2017-04-19 Thread Martin Storsjö
This makes it easier to group them with the rest when running e.g. --bench=hevc. --- tests/checkasm/hevc_add_res.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/checkasm/hevc_add_res.c b/tests/checkasm/hevc_add_res.c index 2cd97ea..c9ed86b 100644 --- a/tests/checkasm/he

Re: [libav-devel] [PATCH 2/2] hevc: Add support for bitdepth 10 for IDCT DC

2017-04-19 Thread Martin Storsjö
On Mon, 17 Apr 2017, Alexandra Hájková wrote: --- libavcodec/arm/hevc_idct.S| 50 --- libavcodec/arm/hevcdsp_init_arm.c | 21 +++- 2 files changed, 56 insertions(+), 15 deletions(-) diff --git a/libavcodec/arm/hevc_idct.S b/libavcodec/arm/he

Re: [libav-devel] [PATCH 1/2] hevc: Add NEON IDCT DC functions for bitdepth 8

2017-04-19 Thread Martin Storsjö
On Mon, 17 Apr 2017, Alexandra Hájková wrote: From: Seppo Tomperi Signed-off-by: Alexandra Hájková --- Indent operands. libavcodec/arm/hevc_idct.S| 78 +++ libavcodec/arm/hevcdsp_init_arm.c | 14 +-- 2 files changed, 89 insertions(+), 3 deletion