From: Luca Barbato Date: Thu, 16 Jan 2014 00:04:57 +0000 (+0100) Subject: doxy: Document better the available AVFrame flags X-Git-Tag: android-x86-6.0-r1~10^2~2338 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=045654f422e74be8ed09a0819d39051d67633a09;p=android-x86%2Fexternal-ffmpeg.git doxy: Document better the available AVFrame flags --- diff --git a/libavutil/frame.h b/libavutil/frame.h index e3a6b0ff27..5b04291001 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;