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_http_serve_files.c, avio_list_dir.c, avio_read_callback.c, decode_audio.c, decode_filter_audio.c, decode_filter_video.c, decode_video.c, demux_decode.c, encode_audio.c, encode_video.c, extract_mvs.c, ffhash.c, filter_audio.c, hw_decode.c, mux.c, qsv_decode.c, qsv_transcode.c, remux.c, resample_audio.c, scale_video.c, show_metadata.c, transcode.c, transcode_aac.c, vaapi_encode.c, and vaapi_transcode.c.
Definition at line 32 of file coverity.c.