Re: [libav-devel] [PATCH] buffer: fix av_buffer_pool_init2() documentation

2016-08-03 Thread Timothy Gu
On Wed, Aug 3, 2016 at 12:54 AM Anton Khirnov wrote: > A non-existent av_buffer_pool_can_uninit() function is mentioned instead > of av_buffer_pool_uninit(). Also, this function is to be called by the > caller, not the pool itself. > --- > libavutil/buffer.h | 7 --- > 1 file changed, 4 inse

Re: [libav-devel] [PATCH 2/6] vaapi_mpeg2: Constify pointers

2016-08-03 Thread Diego Biurrun
On Tue, Aug 02, 2016 at 10:19:32PM +0100, Mark Thompson wrote: > --- > The same as the previous patch, for MPEG-2. > > libavcodec/vaapi_mpeg2.c | 20 > 1 file changed, 12 insertions(+), 8 deletions(-) > > --- a/libavcodec/vaapi_mpeg2.c > +++ b/libavcodec/vaapi_mpeg2.c > @@ -

Re: [libav-devel] [PATCH 1/6] vaapi_h264: Constify pointers

2016-08-03 Thread Diego Biurrun
On Tue, Aug 02, 2016 at 10:18:31PM +0100, Mark Thompson wrote: > --- > Split from the conversion to follow, as suggested by Diego. > > libavcodec/vaapi_h264.c | 36 ++-- > 1 file changed, 18 insertions(+), 18 deletions(-) > > diff --git a/libavcodec/vaapi_h264.c b

[libav-devel] [PATCH] Drop memalign hack

2016-08-03 Thread Diego Biurrun
It no longer serves a useful purpose. --- Amended to also remove the simd_align variable in configure, which is no longer needed. configure | 7 --- libavutil/mem.c | 29 +++-- 2 files changed, 3 insertions(+), 33 deletions(-) diff --git a/configure b/configur

Re: [libav-devel] [PATCH 10/11] vp9mc/x86: sse2 MC assembly.

2016-08-03 Thread Diego Biurrun
On Sat, Jul 30, 2016 at 10:02:52PM +0200, Anton Khirnov wrote: > From: "Ronald S. Bultje" > > Also a slight change to the ssse3 code, which prevents a theoretical > overflow in the sharp filter. > > Signed-off-by: Anton Khirnov > --- > libavcodec/x86/vp9dsp_init.c | 184 +--

Re: [libav-devel] [PATCH 10/26] aac: Drop broken cruft

2016-08-03 Thread Luca Barbato
On 02/08/16 12:28, Diego Biurrun wrote: > --- > libavcodec/aacsbr.c | 6 -- > 1 file changed, 6 deletions(-) > > diff --git a/libavcodec/aacsbr.c b/libavcodec/aacsbr.c > index 3e3432c..fc08079 100644 > --- a/libavcodec/aacsbr.c > +++ b/libavcodec/aacsbr.c > @@ -918,14 +918,8 @@ static void re

Re: [libav-devel] [PATCH] buffer: fix av_buffer_pool_init2() documentation

2016-08-03 Thread Luca Barbato
On 03/08/16 09:53, Anton Khirnov wrote: > A non-existent av_buffer_pool_can_uninit() function is mentioned instead > of av_buffer_pool_uninit(). Also, this function is to be called by the > caller, not the pool itself. > --- > libavutil/buffer.h | 7 --- > 1 file changed, 4 insertions(+), 3 de

Re: [libav-devel] [PATCH 06/26] pnm_parser: Drop broken disabled cruft

2016-08-03 Thread Luca Barbato
On 02/08/16 12:27, Diego Biurrun wrote: > --- > libavcodec/pnm_parser.c | 9 - > 1 file changed, 9 deletions(-) > Yes. ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

[libav-devel] [PATCH] buffer: fix av_buffer_pool_init2() documentation

2016-08-03 Thread Anton Khirnov
A non-existent av_buffer_pool_can_uninit() function is mentioned instead of av_buffer_pool_uninit(). Also, this function is to be called by the caller, not the pool itself. --- libavutil/buffer.h | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libavutil/buffer.h b/libavu