Re: [libav-devel] [PATCH] h264dsp: Change type of stride parameters to ptrdiff_t

2016-06-15 Thread Martin Storsjö
On Wed, 15 Jun 2016, Janne Grunau wrote: On 2016-06-13 21:04:15 +0300, Martin Storsjö wrote: On Mon, 13 Jun 2016, Diego Biurrun wrote: This avoids SIMD-optimized functions having to sign-extend their line size argument manually to be able to do pointer arithmetic. --- Added missing changes

Re: [libav-devel] [PATCH] h264dsp: Change type of stride parameters to ptrdiff_t

2016-06-14 Thread Janne Grunau
On 2016-06-13 21:04:15 +0300, Martin Storsjö wrote: > On Mon, 13 Jun 2016, Diego Biurrun wrote: > > >This avoids SIMD-optimized functions having to sign-extend their > >line size argument manually to be able to do pointer arithmetic. > >--- > > > >Added missing changes for h264idct. > > >

Re: [libav-devel] [PATCH] h264dsp: Change type of stride parameters to ptrdiff_t

2016-06-14 Thread Diego Biurrun
On Mon, Jun 13, 2016 at 09:04:15PM +0300, Martin Storsjö wrote: > On Mon, 13 Jun 2016, Diego Biurrun wrote: > > This avoids SIMD-optimized functions having to sign-extend their > > line size argument manually to be able to do pointer arithmetic. > > --- > > > > Added missing changes for h264idct.

Re: [libav-devel] [PATCH] h264dsp: Change type of stride parameters to ptrdiff_t

2016-06-13 Thread Martin Storsjö
On Mon, 13 Jun 2016, Diego Biurrun wrote: This avoids SIMD-optimized functions having to sign-extend their line size argument manually to be able to do pointer arithmetic. --- Added missing changes for h264idct. libavcodec/aarch64/h264dsp_init_aarch64.c | 37 +++

Re: [libav-devel] [PATCH] h264dsp: Change type of stride parameters to ptrdiff_t

2016-06-13 Thread Vittorio Giovara
On Mon, Jun 13, 2016 at 1:29 PM, Diego Biurrun wrote: > This avoids SIMD-optimized functions having to sign-extend their > line size argument manually to be able to do pointer arithmetic. > --- ok if oracle is happy -- Vittorio ___

[libav-devel] [PATCH] h264dsp: Change type of stride parameters to ptrdiff_t

2016-06-13 Thread Diego Biurrun
This avoids SIMD-optimized functions having to sign-extend their line size argument manually to be able to do pointer arithmetic. --- Added missing changes for h264idct. libavcodec/aarch64/h264dsp_init_aarch64.c | 37 +++ libavcodec/arm/h264dsp_init_arm.c | 37

Re: [libav-devel] [PATCH] h264dsp: Change type of stride parameters to ptrdiff_t

2016-06-13 Thread Luca Barbato
On 13/06/16 18:23, Diego Biurrun wrote: > This avoids SIMD-optimized functions having to sign-extend their > line size argument manually to be able to do pointer arithmetic. > --- > libavcodec/aarch64/h264dsp_init_aarch64.c | 37 +++ > libavcodec/arm/h264dsp_init_arm.c

[libav-devel] [PATCH] h264dsp: Change type of stride parameters to ptrdiff_t

2016-06-13 Thread Diego Biurrun
This avoids SIMD-optimized functions having to sign-extend their line size argument manually to be able to do pointer arithmetic. --- libavcodec/aarch64/h264dsp_init_aarch64.c | 37 +++ libavcodec/arm/h264dsp_init_arm.c | 37 +++