mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
deprecate av_mallocz_static()
Originally committed as revision 8388 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
85e7386ae0
commit
ca2a0c938e
@ -3001,7 +3001,7 @@ void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size);
|
||||
* Frees all static arrays and reset their pointers to 0.
|
||||
* Call this function to release all statically allocated tables.
|
||||
*/
|
||||
void av_free_static(void);
|
||||
attribute_deprecated void av_free_static(void);
|
||||
|
||||
/**
|
||||
* Allocation of static arrays.
|
||||
@ -3011,7 +3011,7 @@ void av_free_static(void);
|
||||
* @param[in] size The amount of memory you need in bytes.
|
||||
* @return Block of memory of the requested size.
|
||||
*/
|
||||
void *av_mallocz_static(unsigned int size);
|
||||
attribute_deprecated void *av_mallocz_static(unsigned int size);
|
||||
|
||||
/**
|
||||
* Copy image 'src' to 'dst'.
|
||||
|
Loading…
Reference in New Issue
Block a user