changeset 6330:c4ff37db69e1 libavformat

Fix doxy that refers to the wrong variable.
author michael
date Tue, 27 Jul 2010 15:54:26 +0000
parents 614f8591566f
children f782d4b790fc
files anm.c tty.c
diffstat 2 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/anm.c	Tue Jul 27 15:21:29 2010 +0000
+++ b/anm.c	Tue Jul 27 15:54:26 2010 +0000
@@ -34,13 +34,13 @@
 } Page;
 
 typedef struct {
-    unsigned int nb_pages;    /** total pages in file */
-    unsigned int nb_records;  /** total records in file */
+    unsigned int nb_pages;    /**< total pages in file */
+    unsigned int nb_records;  /**< total records in file */
     int page_table_offset;
-#define MAX_PAGES  256        /** Deluxe Paint hardcoded value */
-    Page pt[MAX_PAGES];       /** page table */
-    int page;                 /** current page (or AVERROR_xxx code) */
-    int record;               /** current record (with in page) */
+#define MAX_PAGES  256        /**< Deluxe Paint hardcoded value */
+    Page pt[MAX_PAGES];       /**< page table */
+    int page;                 /**< current page (or AVERROR_xxx code) */
+    int record;               /**< current record (with in page) */
 } AnmDemuxContext;
 
 #define LPF_TAG  MKTAG('L','P','F',' ')
--- a/tty.c	Tue Jul 27 15:21:29 2010 +0000
+++ b/tty.c	Tue Jul 27 15:54:26 2010 +0000
@@ -34,7 +34,7 @@
 
 typedef struct {
     int chars_per_frame;
-    uint64_t fsize;  /** file size less metadata buffer */
+    uint64_t fsize;  /**< file size less metadata buffer */
 } TtyDemuxContext;
 
 /**