OSDN Git Service

doxy: Document better the available AVFrame flags
authorLuca Barbato <lu_zero@gentoo.org>
Thu, 16 Jan 2014 00:04:57 +0000 (01:04 +0100)
committerLuca Barbato <lu_zero@gentoo.org>
Fri, 17 Jan 2014 09:00:18 +0000 (10:00 +0100)
libavutil/frame.h

index e3a6b0f..5b04291 100644 (file)
@@ -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;