diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-06-09 18:55:16 -0400 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-06-17 11:02:40 -0400 |
commit | 75872d77d215d64b8d9430df23c6c74ff921227b (patch) | |
tree | 796f05963d2213a7becb5f4b6bf60ef39b9799dd | |
parent | f1a9eee41c4b5ea35db9ff0088ce4e6f1e187f2c (diff) | |
download | ffmpeg-75872d77d215d64b8d9430df23c6c74ff921227b.tar.gz |
lavc: Document AV_PKT_DATA_NEW_EXTRADATA
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 87a7a9d307..b03d0b8fea 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1187,6 +1187,14 @@ typedef struct AVCPBProperties { */ enum AVPacketSideDataType { AV_PKT_DATA_PALETTE, + + /** + * The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format + * that the extradata buffer was changed and the receiving side should + * act upon it appropriately. The new extradata is embedded in the side + * data buffer and should be immediately used for processing the current + * frame or packet. + */ AV_PKT_DATA_NEW_EXTRADATA, /** |