mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-28 03:13:08 +08:00
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
Originally committed as revision 4532 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Michael Niedermayer
parent
1cd89f276a
commit
32fbf33e61
@@ -143,6 +143,17 @@ void av_free_static(void)
|
|||||||
av_freep(&array_static);
|
av_freep(&array_static);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Call av_free_static automatically before it's too late
|
||||||
|
*/
|
||||||
|
|
||||||
|
static void do_free() __attribute__ ((destructor));
|
||||||
|
|
||||||
|
static void do_free()
|
||||||
|
{
|
||||||
|
av_free_static();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Frees memory and sets the pointer to NULL.
|
* Frees memory and sets the pointer to NULL.
|
||||||
* @param arg pointer to the pointer which should be freed
|
* @param arg pointer to the pointer which should be freed
|
||||||
|
|||||||
Reference in New Issue
Block a user