]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/frame.h
Merge commit '43fd3dd80ca2d1c2ccf6a7b7632db544c809c690'
[ffmpeg] / libavutil / frame.h
index 6b9ac6ae2c644bb9e6f4965a49b0902813e3c571..1e6d9cda00b9f3150ec06f7d2ac782ea258346e1 100644 (file)
@@ -124,11 +124,19 @@ enum AVActiveFormatDescription {
     AV_AFD_SP_4_3       = 15,
 };
 
+
+/**
+ * Structure to hold side data for an AVFrame.
+ *
+ * sizeof(AVFrameSideData) is not a part of the public ABI, so new fields may be added
+ * to the end with a minor bump.
+ */
 typedef struct AVFrameSideData {
     enum AVFrameSideDataType type;
     uint8_t *data;
     int      size;
     AVDictionary *metadata;
+    AVBufferRef *buf;
 } AVFrameSideData;
 
 /**