diff options
author | Michael Niedermayer | 2010-07-27 15:54:26 +0000 |
---|---|---|
committer | Michael Niedermayer | 2010-07-27 15:54:26 +0000 |
commit | a20df85886abf3ba2aafb3598719701dfbae2ea3 (patch) | |
tree | 33183e15ebb3b1a12fe9f50efad489ffa715ae71 /libavformat/anm.c | |
parent | facdd25df2efe089fd2e2dcd93b86d88bea6b33b (diff) |
Fix doxy that refers to the wrong variable.
Originally committed as revision 24549 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/anm.c')
-rw-r--r-- | libavformat/anm.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/anm.c b/libavformat/anm.c index ba77e186c5..82430e5eb6 100644 --- a/libavformat/anm.c +++ b/libavformat/anm.c @@ -34,13 +34,13 @@ typedef struct { } 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',' ') |