mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
memory functions are exported
Originally committed as revision 686 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
771b9a7045
commit
544eb99cbf
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user