[libav-devel] [PATCH 08/11] tests: Convert lavf image tests away from legacy test scripts

2019-02-04 Thread Diego Biurrun
Rename some tests in the process for consistency and simplicity. --- tests/Makefile| 1 + tests/fate-run.sh | 11 tests/fate/avformat.mak | 13 -- tests/fate/lavf-image.mak | 25 ++ tests/lavf-regression.sh | 65

[libav-devel] [PATCH 05/11] tests: Use a predefined function for lavf-rm test

2019-02-04 Thread Diego Biurrun
--- tests/lavf-regression.sh | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/lavf-regression.sh b/tests/lavf-regression.sh index 326319c6db..4161e375ee 100755 --- a/tests/lavf-regression.sh +++ b/tests/lavf-regression.sh @@ -15,7 +15,8 @@ do_lavf() {

[libav-devel] [PATCH 09/11] tests: Convert lavf pixfmt conversion tests away from legacy test scripts

2019-02-04 Thread Diego Biurrun
Also split monolithic lavf-pixfmt test into individual tests. --- tests/Makefile| 1 + tests/fate-run.sh | 11 +++ tests/fate/avformat.mak | 1 - tests/fate/pixfmt.mak | 28 tests/lavf-regression.sh | 16

[libav-devel] [PATCH 04/11] tests: Enable CRC test for yuv4mpeg

2019-02-04 Thread Diego Biurrun
--- tests/lavf-regression.sh | 2 +- tests/ref/lavf/yuv4mpeg | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/lavf-regression.sh b/tests/lavf-regression.sh index 6a8919bdc2..326319c6db 100755 --- a/tests/lavf-regression.sh +++ b/tests/lavf-regression.sh @@ -130,7 +130,7

[libav-devel] [PATCH 02/11] tests: Unify output directory creation

2019-02-04 Thread Diego Biurrun
--- tests/Makefile| 5 +++-- tests/fate-run.sh | 2 -- tests/lavf-regression.sh | 1 - tests/regression-funcs.sh | 3 --- 4 files changed, 3 insertions(+), 8 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index c3dd5879bf..8d9a42433f 100644 --- a/tests/Makefile

[libav-devel] [PATCH 06/11] tests: Convert image2pipe tests away from legacy test scripts

2019-02-04 Thread Diego Biurrun
--- tests/Makefile | 1 + tests/fate-run.sh | 45 ++ tests/fate/avformat.mak| 3 --- tests/fate/lavf-image2pipe.mak | 12 +++ tests/lavf-regression.sh | 19 -- tests/ref/lavf/pbmpipe

[libav-devel] [PATCH 03/11] tests: Drop duplicate variable declaration

2019-02-04 Thread Diego Biurrun
--- tests/fate-run.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/fate-run.sh b/tests/fate-run.sh index b9b3d9763e..8c6adf11cf 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -162,7 +162,6 @@ video_filter(){ filters=$1 shift label=${test#filter-} -

[libav-devel] [v2] the great lavf-tests cleanup

2019-02-04 Thread Diego Biurrun
I was at FOSDEM and finishing this is what I used to keep myself occupied :) It is currently running through Oracle and I expect it to pass all the instances (an initial Oracle run already turned up a mistake). The patchset is considerably cleaned up compared to the initial version. Vittorio's

[libav-devel] [PATCH 11/11] tests: Add a convenience function for video-only lavf tests

2019-02-04 Thread Diego Biurrun
Rename a test in the process for consistency and simplicity and remove the remnants of the now-unused lavf regression test scripts. --- tests/Makefile | 2 +- tests/fate-run.sh | 8 ++-- tests/fate/avformat.mak| 10 -

[libav-devel] [PATCH 10/11] tests: Convert lavf container tests away from legacy test scripts

2019-02-04 Thread Diego Biurrun
Rename some tests in the process for consistency and simplicity. --- tests/Makefile| 1 + tests/fate-run.sh | 9 + tests/fate/avformat.mak | 14 --- tests/fate/lavf-container.mak | 37 +

[libav-devel] [PATCH 01/11] build: Rename OBJDIRS variable to OUTDIRS

2019-02-04 Thread Diego Biurrun
These directories are not just for object files. --- Makefile| 2 +- avbuild/common.mak | 2 +- avtools/Makefile| 2 +- doc/examples/Makefile | 2 +- tests/Makefile | 2 +- tests/checkasm/Makefile | 2 +- tools/Makefile | 2 +- 7 files changed, 7

[libav-devel] [PATCH 07/11] tests: Convert audio-only lavf tests away from legacy test scripts

2019-02-04 Thread Diego Biurrun
Rename some tests in the process for consistency and simplicity. --- tests/Makefile | 1 + tests/fate-run.sh | 9 ++ tests/fate/avformat.mak| 11 --- tests/fate/lavf-audio.mak | 24 +++

Re: [libav-devel] [PATCH 01/19] libavcodec: vp8 neon optimizations for aarch64

2019-02-04 Thread Diego Biurrun
On Fri, Feb 01, 2019 at 11:12:40AM +0200, Martin Storsjö wrote: > --- a/libavcodec/aarch64/Makefile > +++ b/libavcodec/aarch64/Makefile > @@ -44,6 +44,8 @@ NEON-OBJS-$(CONFIG_MPEGAUDIODSP)+= > aarch64/mpegaudiodsp_neon.o > NEON-OBJS-$(CONFIG_DCA_DECODER) += aarch64/dcadsp_neon.o

Re: [libav-devel] [PATCH 02/19] aarch64: vp8: Fix the include guard

2019-02-04 Thread Diego Biurrun
On Fri, Feb 01, 2019 at 11:12:41AM +0200, Martin Storsjö wrote: > From: Carl Eugen Hoyos > > --- > libavcodec/aarch64/vp8dsp.h | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) I suggest squashing this into 01/19. The change is OK, obviously. Diego