diff options
author | James Almer <jamrial@gmail.com> | 2023-07-16 13:18:35 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-10-06 09:56:41 -0300 |
commit | 21d7cc6fa9a26e94965fa71b25655d07568450fe (patch) | |
tree | 47ccff66a822b05de25af3a0875b53db39f11936 /doc/APIchanges | |
parent | 74279227dd28d01b447edb8e617a545982171c2c (diff) | |
download | ffmpeg-21d7cc6fa9a26e94965fa71b25655d07568450fe.tar.gz |
avcodec/codec_par: add side data to AVCodecParameters
This will simplify the propagation of side data to decoders and from encoders.
Global side data will now reside in the AVCodecContext, thus be available
during init(), removing the need to propagate it inside packets.
Global and frame specific side data will therefore be distinct.
Signed-off-by: James Almer <jamrial@gmail.com>
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 68a31726de..c99441e543 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -2,6 +2,11 @@ The last version increases of all libraries were on 2023-02-09 API changes, most recent first: +2023-10-06 - xxxxxxxxxx - lavc 60.30.100 - codec_par.h + Added {nb_,}coded_side_data to AVCodecParameters. + The AVCodecParameters helpers will copy it to and from its AVCodecContext + namesake. + 2023-10-06 - xxxxxxxxxx - lavc 60.29.100 - packet.h Added av_packet_side_data_new(), av_packet_side_data_add(), av_packet_side_data_get(), av_packet_side_data_remove, and |