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

2016-08-08 Thread Anton Khirnov
Quoting Timothy Gu (2016-08-04 00:00:53) > 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. > > --- > > l

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] 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

[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