comparison avcodec.h @ 4574:a9388782b9b0 libavcodec

Doxygenize the comments for the av_fast_realloc() function.
author takis
date Thu, 22 Feb 2007 19:14:07 +0000
parents 58afae0471ae
children ad02fe65f45a
comparison
equal deleted inserted replaced
4573:58afae0471ae 4574:a9388782b9b0
2893 2893
2894 2894
2895 /* memory */ 2895 /* memory */
2896 2896
2897 /** 2897 /**
2898 * realloc which does nothing if the block is large enough 2898 * Reallocates the given block if it is not large enough, otherwise it
2899 * does nothing.
2900 *
2901 * @see av_realloc
2899 */ 2902 */
2900 void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size); 2903 void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size);
2901 2904
2902 /* for static data only */ 2905 /* for static data only */
2903 2906