diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-07-10 03:49:44 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-07-10 21:42:23 +0000 |
commit | 0e003d8c91b85a2ec49f7a653f9c6f93d025bf5a (patch) | |
tree | 9ec2ba88f58170dbe598b1cb4f3701094d8a6516 /libavcodec/avcodec.h | |
parent | ca16f88c75f84a054d6bd71fe3f6fbaf508a1623 (diff) | |
download | ffmpeg-0e003d8c91b85a2ec49f7a653f9c6f93d025bf5a.tar.gz |
lavc: add av_fast_padded_mallocz
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c850963a97..80bd75e778 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -4602,6 +4602,12 @@ void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size); void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size); /** + * Same behaviour av_fast_padded_malloc except that buffer will always + * be 0-initialized after call. + */ +void av_fast_padded_mallocz(void *ptr, unsigned int *size, size_t min_size); + +/** * Encode extradata length to a buffer. Used by xiph codecs. * * @param s buffer to write to; must be at least (v/255+1) bytes long |