Re: [libav-devel] [PATCH 09/14] svq3: Change type of array stride parameters to ptrdiff_t

2016-09-29 Thread Martin Storsjö
On Tue, 20 Sep 2016, Diego Biurrun wrote: ptrdiff_t is the correct type for array strides and similar. --- libavcodec/svq3.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) Ok // Martin ___ libav-devel mailing list

Re: [libav-devel] [PATCH 09/14] svq3: Change type of array stride parameters to ptrdiff_t

2016-09-22 Thread Luca Barbato
On 22/09/16 19:24, Diego Biurrun wrote: > On Tue, Sep 20, 2016 at 10:21:40PM +0100, Mark Thompson wrote: >> On 20/09/16 22:07, Diego Biurrun wrote: >>> On Tue, Sep 20, 2016 at 09:22:06PM +0100, Mark Thompson wrote: On 20/09/16 19:36, Diego Biurrun wrote: > ptrdiff_t is the correct type

Re: [libav-devel] [PATCH 09/14] svq3: Change type of array stride parameters to ptrdiff_t

2016-09-22 Thread Diego Biurrun
On Tue, Sep 20, 2016 at 10:21:40PM +0100, Mark Thompson wrote: > On 20/09/16 22:07, Diego Biurrun wrote: > > On Tue, Sep 20, 2016 at 09:22:06PM +0100, Mark Thompson wrote: > >> On 20/09/16 19:36, Diego Biurrun wrote: > >>> ptrdiff_t is the correct type for array strides and similar. > >>> ---

Re: [libav-devel] [PATCH 09/14] svq3: Change type of array stride parameters to ptrdiff_t

2016-09-20 Thread Mark Thompson
On 20/09/16 22:07, Diego Biurrun wrote: > On Tue, Sep 20, 2016 at 09:22:06PM +0100, Mark Thompson wrote: >> On 20/09/16 19:36, Diego Biurrun wrote: >>> ptrdiff_t is the correct type for array strides and similar. >>> --- a/libavcodec/svq3.c >>> +++ b/libavcodec/svq3.c >>> @@ -118,8 +118,8 @@

Re: [libav-devel] [PATCH 09/14] svq3: Change type of array stride parameters to ptrdiff_t

2016-09-20 Thread Diego Biurrun
On Tue, Sep 20, 2016 at 09:22:06PM +0100, Mark Thompson wrote: > On 20/09/16 19:36, Diego Biurrun wrote: > > ptrdiff_t is the correct type for array strides and similar. > > --- a/libavcodec/svq3.c > > +++ b/libavcodec/svq3.c > > @@ -118,8 +118,8 @@ typedef struct SVQ3Context { > > int mb_x,

Re: [libav-devel] [PATCH 09/14] svq3: Change type of array stride parameters to ptrdiff_t

2016-09-20 Thread Mark Thompson
On 20/09/16 19:36, Diego Biurrun wrote: > ptrdiff_t is the correct type for array strides and similar. > --- > libavcodec/svq3.c | 18 +- > 1 file changed, 9 insertions(+), 9 deletions(-) > > diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c > index aa85e7c..bd83731 100644 > ---

[libav-devel] [PATCH 09/14] svq3: Change type of array stride parameters to ptrdiff_t

2016-09-20 Thread Diego Biurrun
ptrdiff_t is the correct type for array strides and similar. --- libavcodec/svq3.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index aa85e7c..bd83731 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -118,8