summaryrefslogtreecommitdiff
path: root/libavutil/frame.h
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2014-01-16 01:04:57 +0100
committerLuca Barbato <lu_zero@gentoo.org>2014-01-17 10:00:18 +0100
commit045654f422e74be8ed09a0819d39051d67633a09 (patch)
tree6e71a39af7518023f8c4347c33822b4a1ba5cef8 /libavutil/frame.h
parentff23c4e4935e96e62d8ff2212a1955a43add88e1 (diff)
doxy: Document better the available AVFrame flags
Diffstat (limited to 'libavutil/frame.h')
-rw-r--r--libavutil/frame.h12
1 files changed, 11 insertions, 1 deletions
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;