diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-02-23 00:20:39 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-02-23 00:20:39 +0000 |
commit | 5dad0282b5a1576884fd86ec65b57de2f1b4df28 (patch) | |
tree | 901bcf34ab1434a2ec0394d315fff637495d7623 /libavcodec/utils.c | |
parent | beebfdb1e83c7759a658ba8b18d429c3a0a5de0a (diff) | |
download | ffmpeg-5dad0282b5a1576884fd86ec65b57de2f1b4df28.tar.gz |
av_realloc_static() is an internal function and therefore should use the ff_ prefix instead of av_.
Originally committed as revision 8089 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 5058420ee4..8855934802 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -87,7 +87,7 @@ void *av_mallocz_static(unsigned int size) return ptr; } -void *av_realloc_static(void *ptr, unsigned int size) +void *ff_realloc_static(void *ptr, unsigned int size) { int i; if(!ptr) |