[FFmpeg-cvslog] doxy: Document better the available AVFrame flags

Luca Barbato git at videolan.org
Fri Jan 17 15:17:18 CET 2014


ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Thu Jan 16 01:04:57 2014 +0100| [045654f422e74be8ed09a0819d39051d67633a09] | committer: Luca Barbato

doxy: Document better the available AVFrame flags

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=045654f422e74be8ed09a0819d39051d67633a09
---

 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;



More information about the ffmpeg-cvslog mailing list