User Tools

Site Tools


ffmpeg:av_freep

This is an old revision of the document!


av_freep

Overview

Defined in mem.h

Frees a memory block which has been allocated with av_malloc or av_realloc and set the pointer pointing to it to NULL.

void av_freep(void *ptr);

Parameters

ptr

void *ptr

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:

void *p = av_malloc(42);
av_freep(&p);
// Now the memory is freed, and p has the value NULL.

Return value

NONE

See also

ffmpeg/av_freep.1248171049.txt.gz · Last modified: 2009/07/21 12:10 by deva