summaryrefslogtreecommitdiff
path: root/libavutil/frame.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-17 15:05:17 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-17 15:05:24 +0100
commit045d80076a67aade020417f4adcb026b6a3da823 (patch)
treef7c3507a9e608d9eaf1ff699bff5900230eabfeb /libavutil/frame.h
parent68ebf70f665bee7a55e99013eec51963429b8f4e (diff)
parent045654f422e74be8ed09a0819d39051d67633a09 (diff)
Merge commit '045654f422e74be8ed09a0819d39051d67633a09'
* commit '045654f422e74be8ed09a0819d39051d67633a09': doxy: Document better the available AVFrame flags Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 2bcbd7ec80..4ddb54f3d5 100644
--- a/libavutil/frame.h
+++ b/libavutil/frame.h
@@ -419,12 +419,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;