Re: [FFmpeg-devel] [PATCH 05/35] lavu/fifo: add a new FIFO grow function

2022-01-13 Thread James Almer
On 1/11/2022 5:45 PM, Anton Khirnov wrote: Consistently use size_t for sizes. Unlike av_fifo_grow(), which addds to the currently used size, this function adds to the allocated size. No new function is provided for a generic realloc, since the current code only supports increasing the FIFO

[FFmpeg-devel] [PATCH 05/35] lavu/fifo: add a new FIFO grow function

2022-01-11 Thread Anton Khirnov
Consistently use size_t for sizes. Unlike av_fifo_grow(), which addds to the currently used size, this function adds to the allocated size. No new function is provided for a generic realloc, since the current code only supports increasing the FIFO size. --- doc/APIchanges | 3 ++-