Commit 1e506a2c authored by Ben Boeckel's avatar Ben Boeckel Committed by Michael Niedermayer

avcodec: add side_data type for updated metadata

This type is intended to be used to allow codecs to pass updated
metadata to applications.
Signed-off-by: 's avatarBen Boeckel <mathstuf@gmail.com>
Reviewed-by: wm4
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ddaf543a
......@@ -1044,6 +1044,13 @@ enum AVPacketSideDataType {
* follow the timestamp specifier of a WebVTT cue.
*/
AV_PKT_DATA_WEBVTT_SETTINGS,
/**
* A list of zero terminated key/value strings. There is no end marker for
* the list, so it is required to rely on the side data size to stop. This
* side data includes updated metadata which appeared in the stream.
*/
AV_PKT_DATA_METADATA_UPDATE,
};
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment