[Ffmpeg-devel] [PATCH 8/9] Doxygenize av_fast_realloc comments

Panagiotis Issaris takis.issaris
Fri Feb 23 13:55:57 CET 2007


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi,

Michael Niedermayer schreef:
> On Thu, Feb 22, 2007 at 10:32:31PM +0100, Panagiotis Issaris wrote:
>> Panagiotis Issaris schreef:
>>> Michael Niedermayer schreef:
>>>> On Thu, Feb 22, 2007 at 08:47:58PM +0100, Panagiotis Issaris wrote:
>> [...]
>>>>>> additionally, this function is a internal function of avcodec
>>>>>> and should not be used outside, it shouldnt have a av_ prefix  but ff_
>>>>>> and it should be droped if normal av_realloc() is as fast (benchmark a
>>>>>> large number of reallocs)
>>>>>>
>>>>>>      
>>>>> I?ll first prepare a patch for moving it and doing the s/av/ff/ 
>>>>> thing. Afterwards I'll post
>>>>> some benchmarking code so that others correct it and run the 
>>>>> benchmark too.
>>>>>    
>>>> hmm wouldnt it be better to benchmark it first before doing a possibly
>>>> redundant move/rename patch?
>>>>  
>>> Yes, but I thought it might take a while till consensus is reached on 
>>> whether it is faster or not, and
>>> that it might also take awhile before it gets benchmarked on enough 
>>> different architectures/CPUs.
>> A first attempt of some benchmarking code for av_fast_realloc() 
>> hideously embedded within FFmpeg's main function.
>>
>> I do not know if I'm benchmarking the correct type of usage of 
>> av_fast_realloc() vs av_realloc() nor if I am using
>> START_TIMER|STOP_TIMER in the way you had intended it...
>>
>> For each test of av_fast_realloc() I tested two runs, one with 
>> size<min_size and one with size>min_size, to test both
>> cases. (Besides the obvious av_realloc() run ofcourse.)
>>
>> _Obviously_ not intended for Subversion.
> 
> you change the internal size variable for av_fast_realloc() so the result
> is meaningless at least as far as i can see, the size variable is never
> ever chnanged by anything except av_fast_realloc() itself

Ah! You are right, I didn't really know what the min_size parameter was
about, which is also why I didn't enhance the doxygen documentation.

If I understand it correctly now, the idea is that you do an:
av_fast_realloc(ptr, &size, req_size);
Where the first time both size and req_size have the same value.
av_fast_realloc() increases the value of size a bit to get better
performance (I guess). If the requested size in subsequent calls to
av_fast_realloc() is smaller than the previous requested sizes, it will
just return the pointer and not reallocate it (not realloc a smaller
buffer). So, you might "waste" some memory, right?

int size = 40000;
int req_size = 40000;
ptr = av_fast_realloc(ptr, &size, req_size);

And the following code will be faster because no reallocation occurs:
req_size = 10;
ptr = av_fast_realloc(ptr, &size, req_size);

And the code below should be a lot faster with av_fast_realloc()
then with a plain av_realloc() because no reallocation occurs
because size is still > 40000, right?
req_size = 40000;
ptr = av_fast_realloc(ptr, &size, req_size);

*size= FFMAX(17*min_size/16 + 32, min_size);
Why is the maximum of both taken? Isn't the first part always bigger
than the second?

With friendly regards,
Takis
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFF3uRd9kOxLuzz4CkRAngJAJwOPlgpHIPo9V7Qpeg3D8XvDsVg7wCffbp6
TN4QVQy2oSvKzQ2Y4Hv+xUg=
=BCws
-----END PGP SIGNATURE-----




More information about the ffmpeg-devel mailing list