Re: [libav-devel] [PATCH 6/9] checkasm: add tests for audiodsp

2016-09-07 Thread Anton Khirnov
Quoting Diego Biurrun (2016-09-07 09:57:43) > On Wed, Sep 07, 2016 at 09:45:31AM +0200, Anton Khirnov wrote: > > Quoting Diego Biurrun (2016-09-07 09:41:31) > > > On Wed, Sep 07, 2016 at 09:35:55AM +0200, Anton Khirnov wrote: > > > > Quoting Diego Biurrun (2016-09-07 09:26:20) > > > > > On Tue,

Re: [libav-devel] [PATCH 6/9] checkasm: add tests for audiodsp

2016-09-07 Thread Diego Biurrun
On Wed, Sep 07, 2016 at 09:45:31AM +0200, Anton Khirnov wrote: > Quoting Diego Biurrun (2016-09-07 09:41:31) > > On Wed, Sep 07, 2016 at 09:35:55AM +0200, Anton Khirnov wrote: > > > Quoting Diego Biurrun (2016-09-07 09:26:20) > > > > On Tue, Sep 06, 2016 at 09:11:09PM +0200, Anton Khirnov wrote: >

Re: [libav-devel] [PATCH 6/9] checkasm: add tests for audiodsp

2016-09-07 Thread Anton Khirnov
Quoting Diego Biurrun (2016-09-07 09:41:31) > On Wed, Sep 07, 2016 at 09:35:55AM +0200, Anton Khirnov wrote: > > Quoting Diego Biurrun (2016-09-07 09:26:20) > > > On Tue, Sep 06, 2016 at 09:11:09PM +0200, Anton Khirnov wrote: > > > > Quoting Diego Biurrun (2016-09-06 15:54:08) > > > > > On Mon,

Re: [libav-devel] [PATCH 6/9] checkasm: add tests for audiodsp

2016-09-07 Thread Diego Biurrun
On Wed, Sep 07, 2016 at 09:35:55AM +0200, Anton Khirnov wrote: > Quoting Diego Biurrun (2016-09-07 09:26:20) > > On Tue, Sep 06, 2016 at 09:11:09PM +0200, Anton Khirnov wrote: > > > Quoting Diego Biurrun (2016-09-06 15:54:08) > > > > On Mon, Sep 05, 2016 at 01:02:40PM +0200, Anton Khirnov wrote: >

Re: [libav-devel] [PATCH 6/9] checkasm: add tests for audiodsp

2016-09-07 Thread Anton Khirnov
Quoting Diego Biurrun (2016-09-07 09:26:20) > On Tue, Sep 06, 2016 at 09:11:09PM +0200, Anton Khirnov wrote: > > Quoting Diego Biurrun (2016-09-06 15:54:08) > > > On Mon, Sep 05, 2016 at 01:02:40PM +0200, Anton Khirnov wrote: > > > > --- /dev/null > > > > +++ b/tests/checkasm/audiodsp.c > > > > @@

Re: [libav-devel] [PATCH 6/9] checkasm: add tests for audiodsp

2016-09-07 Thread Diego Biurrun
On Tue, Sep 06, 2016 at 09:11:09PM +0200, Anton Khirnov wrote: > Quoting Diego Biurrun (2016-09-06 15:54:08) > > On Mon, Sep 05, 2016 at 01:02:40PM +0200, Anton Khirnov wrote: > > > --- /dev/null > > > +++ b/tests/checkasm/audiodsp.c > > > @@ -0,0 +1,139 @@ > > > + > > > +#include > > > +#include

Re: [libav-devel] [PATCH 6/9] checkasm: add tests for audiodsp

2016-09-06 Thread Anton Khirnov
Quoting Diego Biurrun (2016-09-06 15:54:08) > On Mon, Sep 05, 2016 at 01:02:40PM +0200, Anton Khirnov wrote: > > --- /dev/null > > +++ b/tests/checkasm/audiodsp.c > > @@ -0,0 +1,139 @@ > > + > > +#include > > +#include > > +#include > > +#include > > nit: order > > > +#include

Re: [libav-devel] [PATCH 6/9] checkasm: add tests for audiodsp

2016-09-06 Thread Diego Biurrun
On Mon, Sep 05, 2016 at 01:02:40PM +0200, Anton Khirnov wrote: > --- /dev/null > +++ b/tests/checkasm/audiodsp.c > @@ -0,0 +1,139 @@ > + > +#include > +#include > +#include > +#include nit: order > +#include "libavcodec/audiodsp.h" > + > +#include "libavutil/common.h" > +#include

[libav-devel] [PATCH 6/9] checkasm: add tests for audiodsp

2016-09-05 Thread Anton Khirnov
--- tests/checkasm/Makefile | 1 + tests/checkasm/audiodsp.c | 139 ++ tests/checkasm/checkasm.c | 3 + tests/checkasm/checkasm.h | 1 + 4 files changed, 144 insertions(+) create mode 100644 tests/checkasm/audiodsp.c diff --git