diff options
author | Janne Grunau <janne-libav@jannau.net> | 2012-01-31 15:40:11 +0000 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2012-02-01 19:19:35 +0100 |
commit | 316fc7443b05f8c8b494443f2dfe590434796902 (patch) | |
tree | 7df4f98d148aa26d044101109b632316252bc93c /doc/APIchanges | |
parent | 378c5ef9ae1a504b5e363c5fa7193c3b4ca2267f (diff) | |
download | ffmpeg-316fc7443b05f8c8b494443f2dfe590434796902.tar.gz |
avcodec: Add av_fast_padded_malloc().
Wrapper around av_fast_malloc() that keeps FF_INPUT_BUFFER_PADDING_SIZE
zero-padded bytes at the end of the used buffer.
Based on a patch by Reimar Döffinger <Reimar.Doeffinger@gmx.de>.
Diffstat (limited to 'doc/APIchanges')
-rw-r--r-- | doc/APIchanges | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index 0d4cb596a7..df55c0a732 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -13,6 +13,11 @@ libavutil: 2011-04-18 API changes, most recent first: +2012-02-01 - xxxxxxx - lavc 54.01.0 + Add av_fast_padded_malloc() as alternative for av_realloc() when aligned + memory is required. The buffer will always have FF_INPUT_BUFFER_PADDING_SIZE + zero-padded bytes at the end. + 2012-01-31 - xxxxxxx - lavf 54.01.0 Add avformat_get_riff_video_tags() and avformat_get_riff_audio_tags(). |