User Tools

Site Tools


ffmpeg:av_freep

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Last revisionBoth sides next revision
ffmpeg:av_freep [2009/07/21 12:05] devaffmpeg:av_freep [2009/07/21 12:10] deva
Line 13: Line 13:
 <code c>void *ptr</code> <code c>void *ptr</code>
 Pointer to the pointer to the memory block which should be freed. Pointer to the pointer to the memory block which should be freed.
 +NOTE: ptr should be declared as a void **, eg. it should be used as in the following example:
 +<code c>
 +void *p = av_malloc(42);
 +av_freep(&p);
 +// Now the memory is freed, and p has the value NULL.
 +</code>
  
 ====Return value==== ====Return value====
ffmpeg/av_freep.txt · Last modified: 2009/07/21 12:12 by deva