1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

doxy: Document better the available AVFrame flags

This commit is contained in:
Luca Barbato 2014-01-16 01:04:57 +01:00
parent ff23c4e493
commit 045654f422

View File

@ -380,13 +380,23 @@ typedef struct AVFrame {
AVFrameSideData **side_data; AVFrameSideData **side_data;
int nb_side_data; int nb_side_data;
/**
* @defgroup lavu_frame_flags AV_FRAME_FLAGS
* Flags describing additional frame properties.
*
* @{
*/
/** /**
* The frame data may be corrupted, e.g. due to decoding errors. * The frame data may be corrupted, e.g. due to decoding errors.
*/ */
#define AV_FRAME_FLAG_CORRUPT (1 << 0) #define AV_FRAME_FLAG_CORRUPT (1 << 0)
/**
* @}
*/
/** /**
* Frame flags, a combination of AV_FRAME_FLAG_* * Frame flags, a combination of @ref lavu_frame_flags
*/ */
int flags; int flags;
} AVFrame; } AVFrame;