diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-07-27 15:54:26 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-07-27 15:54:26 +0000 |
commit | a20df85886abf3ba2aafb3598719701dfbae2ea3 (patch) | |
tree | 33183e15ebb3b1a12fe9f50efad489ffa715ae71 /libavformat | |
parent | facdd25df2efe089fd2e2dcd93b86d88bea6b33b (diff) | |
download | ffmpeg-a20df85886abf3ba2aafb3598719701dfbae2ea3.tar.gz |
Fix doxy that refers to the wrong variable.
Originally committed as revision 24549 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/anm.c | 12 | ||||
-rw-r--r-- | libavformat/tty.c | 2 |
2 files changed, 7 insertions, 7 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',' ') diff --git a/libavformat/tty.c b/libavformat/tty.c index 9a40fec471..e4ed22d4c1 100644 --- a/libavformat/tty.c +++ b/libavformat/tty.c @@ -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; /** |