Commit 744c9b49 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/frame: Add some very basic documentation for AVFrameSideData

Reviewed-by: 's avatar"Ronald S. Bultje" <rsbultje@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c3d0edd4
...@@ -124,6 +124,13 @@ enum AVActiveFormatDescription { ...@@ -124,6 +124,13 @@ enum AVActiveFormatDescription {
AV_AFD_SP_4_3 = 15, 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 { typedef struct AVFrameSideData {
enum AVFrameSideDataType type; enum AVFrameSideDataType type;
uint8_t *data; uint8_t *data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment