Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2016-07-09 15:55:39 +0300
committerClément Bœsch <u@pkh.me>2016-07-09 15:55:39 +0300
commit46bd0e8e0dfb4b295e8fbe6854904eccb0cb5c82 (patch)
tree5da15ba36a7c16cd8b07bed32faa08bbed773d6f /libavcodec/avcodec.h
parent84ecbbfb27272dc8e45aa19f1149cc4996bb505c (diff)
parent75872d77d215d64b8d9430df23c6c74ff921227b (diff)
Merge commit '75872d77d215d64b8d9430df23c6c74ff921227b'
* commit '75872d77d215d64b8d9430df23c6c74ff921227b': lavc: Document AV_PKT_DATA_NEW_EXTRADATA Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 6a7dc3d56f..e52b2f8ae8 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -1348,6 +1348,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,
/**