Go to the source code of this file.
|
void * | av_malloc (size_t size) |
| Allocate a memory block with alignment suitable for all memory accesses (including vectors if available on the CPU). More...
|
|
void * | av_mallocz (size_t size) |
| Allocate a memory block with alignment suitable for all memory accesses (including vectors if available on the CPU) and zero all the bytes of the block. More...
|
|
void * | av_realloc (void *ptr, size_t size) |
| Allocate, reallocate, or free a block of memory. More...
|
|
void * | av_free (void *ptr) |
| Free a memory block which has been allocated with a function of av_malloc() or av_realloc() family. More...
|
|
◆ NULL
- Examples
- avio_reading.c, decode_audio.c, decode_video.c, demuxing_decoding.c, encode_audio.c, encode_video.c, ffhash.c, filter_audio.c, filtering_audio.c, filtering_video.c, http_multiclient.c, hw_decode.c, metadata.c, muxing.c, qsvdec.c, remuxing.c, resampling_audio.c, scaling_video.c, transcode_aac.c, transcoding.c, vaapi_encode.c, and vaapi_transcode.c.
Definition at line 32 of file coverity.c.