Re: [libav-devel] Some avplay refactoring and an useful option

2016-01-24 Thread Anton Khirnov
Quoting Luca Barbato (2016-01-25 05:49:22) > On 02/01/16 12:19, Luca Barbato wrote: > > Since I want to compare codecs from time to time and avconv isn't always > > the best tool. > > > > Beside the patch 1/6 any opinion on the set? > Looks ok I guess. -- Anton Khirnov ___

Re: [libav-devel] Some avplay refactoring and an useful option

2016-01-24 Thread Luca Barbato
On 02/01/16 12:19, Luca Barbato wrote: > Since I want to compare codecs from time to time and avconv isn't always > the best tool. > Beside the patch 1/6 any opinion on the set? lu ___ libav-devel mailing list libav-devel@libav.org https://lists.libav

Re: [libav-devel] [Website PATCH 2/2] about: update link to ffmpeg-mt to point to the archived Gitorious repository.

2016-01-24 Thread Luca Barbato
On 24/01/16 20:12, Diego Elio Pettenò wrote: > Signed-off-by: Diego Elio Pettenò > --- > src/about | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/about b/src/about > index e5665ba..b1c43e4 100644 > --- a/src/about > +++ b/src/about > @@ -73,7 +73,7 @@ might lead to

Re: [libav-devel] [Website PATCH 1/2] download: remove gitorious mirror, since it's no longer forkable.

2016-01-24 Thread Luca Barbato
On 24/01/16 20:12, Diego Elio Pettenò wrote: > The current archived copy of gitorious.org does not get synced, so there is > no reason to have it listed. > > Signed-off-by: Diego Elio Pettenò > --- > src/download | 6 -- > 1 file changed, 6 deletions(-) > > diff --git a/src/download b/src/

[libav-devel] [PATCHv3] avcodec: Cineform HD Decoder

2016-01-24 Thread Kieran Kunhya
Decodes YUV 4:2:2 10-bit and RGB 12-bit files. Older files with more subbands, skips, Bayer, alpha not supported. Alpha requires addition of GBRAP12 pixel format. --- libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/avcodec.h| 1 + libavcodec/cfhd.c | 744 ++

[libav-devel] [Website PATCH 2/2] about: update link to ffmpeg-mt to point to the archived Gitorious repository.

2016-01-24 Thread Diego Elio Pettenò
Signed-off-by: Diego Elio Pettenò --- src/about | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/about b/src/about index e5665ba..b1c43e4 100644 --- a/src/about +++ b/src/about @@ -73,7 +73,7 @@ might lead to new interesting outcomes. lead FFmpeg to merge important and lo

[libav-devel] [Website PATCH 1/2] download: remove gitorious mirror, since it's no longer forkable.

2016-01-24 Thread Diego Elio Pettenò
The current archived copy of gitorious.org does not get synced, so there is no reason to have it listed. Signed-off-by: Diego Elio Pettenò --- src/download | 6 -- 1 file changed, 6 deletions(-) diff --git a/src/download b/src/download index 904a556..e14624c 100644 --- a/src/download +++ b

Re: [libav-devel] [PATCH] v210: x86: Add the correct guards around the asm code

2016-01-24 Thread Luca Barbato
On 24/01/16 16:58, Luca Barbato wrote: > --- > > As done in ac3 > And with this patch the v210 set passes the tests on travis as well. lu ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

[libav-devel] [PATCH] v210: x86: Add the correct guards around the asm code

2016-01-24 Thread Luca Barbato
--- As done in ac3 libavcodec/x86/v210enc.asm | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavcodec/x86/v210enc.asm b/libavcodec/x86/v210enc.asm index 595c890..bdefcdb 100644 --- a/libavcodec/x86/v210enc.asm +++ b/libavcodec/x86/v210enc.asm @@ -82,8 +82,10 @@ cglobal v210_planar_

Re: [libav-devel] [PATCH 2/2] configure: add missing avx2 support check

2016-01-24 Thread Timothy Gu
Hi, On Sun, Jan 24, 2016 at 08:15:27AM +0100, Luca Barbato wrote: > > Travis seems still unhappy, does it ring any bell? > > libavcodec/x86/v210enc.asm:95: error: undefined symbol > `vinserti128.loop' (first use) It's probably because the v210 patch doesn't use the guards yet. Timothy