Commit 4943c424 authored by michael's avatar michael

deprecate av_mallocz_static()


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8388 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2ac99942
...@@ -3001,7 +3001,7 @@ void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size); ...@@ -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. * Frees all static arrays and reset their pointers to 0.
* Call this function to release all statically allocated tables. * 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. * Allocation of static arrays.
...@@ -3011,7 +3011,7 @@ void av_free_static(void); ...@@ -3011,7 +3011,7 @@ void av_free_static(void);
* @param[in] size The amount of memory you need in bytes. * @param[in] size The amount of memory you need in bytes.
* @return Block of memory of the requested size. * @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'. * Copy image 'src' to 'dst'.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment