Module: libav Branch: master Commit: 045654f422e74be8ed09a0819d39051d67633a09
Author: Luca Barbato <[email protected]> Committer: Luca Barbato <[email protected]> Date: Thu Jan 16 01:04:57 2014 +0100 doxy: Document better the available AVFrame flags --- libavutil/frame.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/libavutil/frame.h b/libavutil/frame.h index e3a6b0f..5b04291 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -381,12 +381,22 @@ typedef struct AVFrame { 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; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
