diff utils.c @ 4577:88cf097ebe75 libavcodec

av_realloc_static() is an internal function and therefore should use the ff_ prefix instead of av_.
author takis
date Fri, 23 Feb 2007 00:20:39 +0000
parents f0138063c568
children 006563b9ab27
line wrap: on
line diff
--- a/utils.c	Thu Feb 22 20:21:33 2007 +0000
+++ b/utils.c	Fri Feb 23 00:20:39 2007 +0000
@@ -87,7 +87,7 @@
     return ptr;
 }
 
-void *av_realloc_static(void *ptr, unsigned int size)
+void *ff_realloc_static(void *ptr, unsigned int size)
 {
     int i;
     if(!ptr)