diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2006-09-25 15:23:40 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2006-09-25 15:23:40 +0000 |
commit | 79e47000c8847cc70acf6b7debac10add2e88a81 (patch) | |
tree | cc10b5acc1a3d175444e45d948aa831993073122 /libavcodec/avcodec.h | |
parent | 10aa27db712fce3a3c8e67a66ff72fcd879bcddf (diff) | |
download | ffmpeg-79e47000c8847cc70acf6b7debac10add2e88a81.tar.gz |
move memory functions from avcodec to avutil
Originally committed as revision 6330 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4518d34a29..c1fbc38aa0 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -35,8 +35,8 @@ extern "C" { #define AV_STRINGIFY(s) AV_TOSTRING(s) #define AV_TOSTRING(s) #s -#define LIBAVCODEC_VERSION_INT ((51<<16)+(14<<8)+0) -#define LIBAVCODEC_VERSION 51.14.0 +#define LIBAVCODEC_VERSION_INT ((51<<16)+(15<<8)+0) +#define LIBAVCODEC_VERSION 51.15.0 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) @@ -2633,9 +2633,6 @@ extern AVBitStreamFilter noise_bsf; /* memory */ -void *av_mallocz(unsigned int size); -char *av_strdup(const char *s); -void av_freep(void *ptr); void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size); /* for static data only */ /* call av_free_static to release all staticaly allocated tables */ |