summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-23 18:34:30 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-23 18:46:26 +0100
commit744c9b49a5a6b769662f7a17e6029a6847b3b366 (patch)
tree374ad4efa46ce90a66f21dce9dd6363a320ee6eb /libavutil
parentc3d0edd406d14e6210b1a72cddb5c70f42e2b483 (diff)
avutil/frame: Add some very basic documentation for AVFrameSideData
Reviewed-by: "Ronald S. Bultje" <rsbultje@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/frame.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavutil/frame.h b/libavutil/frame.h
index 6b9ac6ae2c..2fab79e58b 100644
--- a/libavutil/frame.h
+++ b/libavutil/frame.h
@@ -124,6 +124,13 @@ 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;