diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-18 04:33:28 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-19 04:19:53 +0100 |
commit | e8c0bca6bd7900c5dac82fd79afce6cc771be578 (patch) | |
tree | 2b7a037e7c834f714cceb1c22a0fc75b9498e35c /doc/APIchanges | |
parent | a46d7819051e0e8c61017e75a0389389ae810ca4 (diff) | |
download | ffmpeg-e8c0bca6bd7900c5dac82fd79afce6cc771be578.tar.gz |
avutil/adler32: Switch av_adler32_update() to size_t on bump
av_adler32_update() is used by av_hash_update() which will be switched
to size_t at the next bump. So it also has to be made to use size_t.
This is also necessary for framecrcenc.c, because the size of side data
will become a size_t, too.
Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'doc/APIchanges')
-rw-r--r-- | doc/APIchanges | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index 937ea70fbc..6e116dbc83 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -15,6 +15,13 @@ libavutil: 2017-10-21 API changes, most recent first: +2021-03-19 - xxxxxxxxxx - lavu 56.69.100 - adler32.h + Added a typedef for the type of the Adler-32 checksums + used by av_adler32_update(). It will be changed to uint32_t + at the next major bump. + The type of the parameter for the length of the input buffer + will also be changed to size_t at the next major bump. + 2021-03-19 - xxxxxxxxxx - lavf 58.75.100 - avformat.h AVChapter.id will be changed from int to int64_t on the next major version bump. |