diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-01-21 21:30:48 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-01-21 21:30:48 +0000 |
commit | b7a22d846b581bfd9eebf8710eeefa1948495db9 (patch) | |
tree | ef7c0114a5c82d1cd09663de5c12676da9ba81d7 /libavcodec/avcodec.h | |
parent | 68f593b48433842f3407586679fe07f3e5199ab9 (diff) | |
download | ffmpeg-b7a22d846b581bfd9eebf8710eeefa1948495db9.tar.gz |
cleanup
Originally committed as revision 1487 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index fee760c56c..61ce24e3dd 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1236,6 +1236,7 @@ void *av_mallocz(unsigned int size); void av_free(void *ptr); void __av_freep(void **ptr); #define av_freep(p) __av_freep((void **)(p)) +void *av_fast_realloc(void *ptr, int *size, int min_size); /* for static data only */ /* call av_free_static to release all staticaly allocated tables */ void av_free_static(void); |