[Ffmpeg-cvslog] r8388 - trunk/libavcodec/avcodec.h

michael subversion
Tue Mar 13 23:01:06 CET 2007


Author: michael
Date: Tue Mar 13 23:01:06 2007
New Revision: 8388

Modified:
   trunk/libavcodec/avcodec.h

Log:
deprecate av_mallocz_static()


Modified: trunk/libavcodec/avcodec.h
==============================================================================
--- trunk/libavcodec/avcodec.h	(original)
+++ trunk/libavcodec/avcodec.h	Tue Mar 13 23:01:06 2007
@@ -3001,7 +3001,7 @@ void *av_fast_realloc(void *ptr, unsigne
  * 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'.




More information about the ffmpeg-cvslog mailing list