[FFmpeg-devel] [PATCH] Fix unnecessary buffer reallocotion in ffio_ensure_seekback().
Artyom Lebedev
vagran.ast at gmail.com
Thu Dec 20 11:11:45 EET 2018
On 12/19/18 8:49 PM, Michael Niedermayer wrote:
> On Wed, Dec 19, 2018 at 02:33:49PM +0200, Artyom Lebedev wrote:
>> It was reallocated even if the exisiting buffer is larger than needed one,
>> thus unnecessary shrinking it.
>> aviobuf.c | 3 +++
>> 1 file changed, 3 insertions(+)
>> 17a6a27b38d8fc7336d7177338b915b507a69033 0001-Fix-unnecessary-buffer-reallocotion-in-ffio_ensure_s.patch
>> From 2b8cea72a69abe6564367fb2149be936d2ffb916 Mon Sep 17 00:00:00 2001
>> From: Artyom Lebedev <vagran.ast at gmail.com>
>> Date: Wed, 19 Dec 2018 11:49:22 +0200
>> Subject: [PATCH] Fix unnecessary buffer reallocotion in
>> ffio_ensure_seekback().
>> To: ffmpeg-devel at ffmpeg.org
>>
>> ---
>> libavformat/aviobuf.c | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
>> index 5a33f82..b867fdd 100644
>> --- a/libavformat/aviobuf.c
>> +++ b/libavformat/aviobuf.c
>> @@ -1063,6 +1063,9 @@ int ffio_ensure_seekback(AVIOContext *s, int64_t buf_size)
>> return 0;
>> av_assert0(!s->write_flag);
>>
>> + if (s->buffer_size >= buf_size)
>> + return 0;
> Theres a check which returns out for unnecessary reallocation
> a few lines above
> if that is incorrect that should be corrected
> also theres a typo in the commit message
>
> thx
>
> [...]
>
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
Which check do you mean? "buf_size < filled"? This only checks if
currently filled size is less than required (I do not know why, may be
there was intended to do "buf_size < s->buffer_size" check)?
More information about the ffmpeg-devel
mailing list