Commit 1baab74a authored by bellard's avatar bellard

memory functions are exported


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@686 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 68c99964
......@@ -520,4 +520,11 @@ typedef enum {
*/
int avcodec(void* handle, avc_cmd_t cmd, void* pin, void* pout);
/* memory */
void *av_malloc(int size);
void *av_mallocz(int size);
void av_free(void *ptr);
void __av_freep(void **ptr);
#define av_freep(p) __av_freep((void **)(p))
#endif /* AVCODEC_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment