diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-06 20:30:08 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-10 22:55:42 +0200 |
commit | 2a68d945cd74265bb71c3d38b7a2e7f7d7e87be5 (patch) | |
tree | 0603f863c7490e48e0c1dcd0f86b5b8480cce31d /doc/APIchanges | |
parent | e8704a8f60041abb84585efaf3223abf0b6dcb90 (diff) | |
download | ffmpeg-2a68d945cd74265bb71c3d38b7a2e7f7d7e87be5.tar.gz |
avformat/avio: Constify data pointees of write callbacks
They are currently non-const for reasons unknown, although
avio_write() accepts a const buffer.
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'doc/APIchanges')
-rw-r--r-- | doc/APIchanges | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index 762c2d6628..51586d628f 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -2,6 +2,10 @@ The last version increases of all libraries were on 2023-02-09 API changes, most recent first: +2023-09-07 - xxxxxxxxxx - lavf 60.12.100 - avio.h + Constify the buffer pointees in the write_packet and write_data_type + callbacks of AVIOContext on the next major bump. + 2023-09-07 - xxxxxxxxxx - lavc 60.26.100 - defs.h Add AV_PROFILE_* and AV_LEVEL_* replacements in defs.h for the defines from avcodec.h. The latter are deprecated. |