Commit 045d8007 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '045654f4'

* commit '045654f4':
  doxy: Document better the available AVFrame flags
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 68ebf70f 045654f4
......@@ -418,13 +418,23 @@ typedef struct AVFrame {
AVFrameSideData **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.
*/
#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;
......
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