# HG changeset patch # User michael # Date 1173823266 0 # Node ID bda54c0d67662fe5c849b7de8772a6d1686d2729 # Parent 1d88da25349bbb010bde805af51d5f7c5679d2b8 deprecate av_mallocz_static() diff -r 1d88da25349b -r bda54c0d6766 avcodec.h --- a/avcodec.h Tue Mar 13 19:44:02 2007 +0000 +++ b/avcodec.h Tue Mar 13 22:01:06 2007 +0000 @@ -3001,7 +3001,7 @@ * 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 @@ * @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'.