1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-04-02 20:35:37 +02:00

Merge commit '045654f422e74be8ed09a0819d39051d67633a09'

* commit '045654f422e74be8ed09a0819d39051d67633a09':
  doxy: Document better the available AVFrame flags

Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-01-17 15:05:17 +01:00
commit 045d80076a

View File

@ -418,13 +418,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;