Mercurial > libavcodec.hg
comparison avcodec.h @ 1026:d6ba0641cc36 libavcodec
cleanup
| author | michaelni |
|---|---|
| date | Tue, 21 Jan 2003 21:30:48 +0000 |
| parents | ef905ded19fe |
| children | 19de1445beb2 |
comparison
equal
deleted
inserted
replaced
| 1025:1f9afd8b9131 | 1026:d6ba0641cc36 |
|---|---|
| 1234 void *av_malloc(unsigned int size); | 1234 void *av_malloc(unsigned int size); |
| 1235 void *av_mallocz(unsigned int size); | 1235 void *av_mallocz(unsigned int size); |
| 1236 void av_free(void *ptr); | 1236 void av_free(void *ptr); |
| 1237 void __av_freep(void **ptr); | 1237 void __av_freep(void **ptr); |
| 1238 #define av_freep(p) __av_freep((void **)(p)) | 1238 #define av_freep(p) __av_freep((void **)(p)) |
| 1239 void *av_fast_realloc(void *ptr, int *size, int min_size); | |
| 1239 /* for static data only */ | 1240 /* for static data only */ |
| 1240 /* call av_free_static to release all staticaly allocated tables */ | 1241 /* call av_free_static to release all staticaly allocated tables */ |
| 1241 void av_free_static(void); | 1242 void av_free_static(void); |
| 1242 void *__av_mallocz_static(void** location, unsigned int size); | 1243 void *__av_mallocz_static(void** location, unsigned int size); |
| 1243 #define av_mallocz_static(p, s) __av_mallocz_static((void **)(p), s) | 1244 #define av_mallocz_static(p, s) __av_mallocz_static((void **)(p), s) |
