OSDN Git Service

Fix doxygen comments.
authorBenoit Fouet <benoit.fouet@free.fr>
Mon, 2 Aug 2010 07:25:25 +0000 (07:25 +0000)
committerBenoit Fouet <benoit.fouet@free.fr>
Mon, 2 Aug 2010 07:25:25 +0000 (07:25 +0000)
/**\u2264 => /**<

Originally committed as revision 24661 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/libvpxenc.c

index 1115ec2..77a3bbf 100644 (file)
  * One encoded frame returned from the library.
  */
 struct FrameListData {
-    void *buf;                       /** compressed data buffer */
-    size_t sz;                       /** length of compressed data */
-    int64_t pts;                     /** time stamp to show frame
+    void *buf;                       /**< compressed data buffer */
+    size_t sz;                       /**< length of compressed data */
+    int64_t pts;                     /**< time stamp to show frame
                                           (in timebase units) */
-    unsigned long duration;          /** duration to show frame
+    unsigned long duration;          /**< duration to show frame
                                           (in timebase units) */
-    uint32_t flags;                  /** flags for this frame */
+    uint32_t flags;                  /**< flags for this frame */
     struct FrameListData *next;
 };