Browse Source

doxy: Document better the available AVFrame flags

tags/n2.2-rc1
Luca Barbato 11 years ago
parent
commit
045654f422
1 changed files with 11 additions and 1 deletions
  1. +11
    -1
      libavutil/frame.h

+ 11
- 1
libavutil/frame.h View File

@@ -380,13 +380,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;
} AVFrame;


Loading…
Cancel
Save