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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-23 20:34:30 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-03-23 20:46:26 +0300
commit744c9b49a5a6b769662f7a17e6029a6847b3b366 (patch)
tree374ad4efa46ce90a66f21dce9dd6363a320ee6eb /libavutil/frame.h
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/frame.h')
-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;